play sound in unity code example
Example 1: play sound unity
AudioSource audioData;
void Start()
{
audioData = GetComponent<AudioSource>();
audioData.Play(0);
Debug.Log("started");
}
Example 2: how to play sound in unity
public AudioSource Jump;
Jump.Play();