Unity Check If Audio Playing

[Solved] Unity Check If Audio Playing | Shell - Code Explorer | yomemimo.com
Question : unity check if audio playing

Answered by : michael

if (audioSource.isPlaying)
{	//runs if audio is currently playing
}
if (!audioSource.isPlaying)
{	//runs if audio is not currently playing
}

Source : | Last Update : Mon, 25 Apr 22

Answers related to unity check if audio playing

Code Explorer Popular Question For Shell