There is a player and an enemy. Using OnCollision, I have an if statement inside of that making sure the player is colliding with the enemy by checking the tag and verifying it. Once the collision happens with an enemy, I have gotten one sound to play, but cannot figure out how to make two sounds play at once. My code does not contain anything trying to play a second sound, as I have tried multiple different solutions, but have surmounted to nothing. I have tried looking through multiple questions on here and through Google to make sure it isn’t a repeated question, and it has been to my misfortune that I am having trouble finding the answer. I will provide sample code below:
var player : Transform;
function OnCollisionEnter (collision : Collision)
{
if (collision.gameObject.tag == "Enemy"){
player.audio.Play();
}
Do you mean you want your enemy to also make a sound, as well as the player's?
– whebertIt will play a sound for a collision, as well as a "reward" sound effect for defeating the enemy. There could be another way around this, but I have not figured out another possible way.
– chiefs29bSo you are getting the collision sound now, but would also like the "reward" sound when your enemy dies? Does your enemy die immediately upon collision, or after many collisions, other means of doing damage?
– whebert