Answers for "play sound unity"

C#
5

play sound unity

AudioSource audioData;

    void Start()
    {
        audioData = GetComponent<AudioSource>();
        audioData.Play(0);
        Debug.Log("started");
    }
Posted by: Guest on September-04-2020
5

how to play sound in unity

public AudioSource Jump;

Jump.Play();
Posted by: Guest on February-14-2020

C# Answers by Framework

Browse Popular Code Answers by Language