Horje
play sound unity Code Example
play sound unity
AudioSource audioData;

    void Start()
    {
        audioData = GetComponent<AudioSource>();
        audioData.Play(0);
        Debug.Log("started");
    }
unity play sound effect
public AudioSource audioData;

void Start()
{
	audioData.Play();
}




Csharp

Related
c# array of strings Code Example c# array of strings Code Example
unity setparent Code Example unity setparent Code Example
C# get size of file Code Example C# get size of file Code Example
c# get month number from name Code Example c# get month number from name Code Example
unity 3d sound Code Example unity 3d sound Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8