Page 1 of 1
Using Audio() instead AudioWait()
Posted: Wed Mar 05, 2025 11:10 pm
by dzeessh
Hi, I want to play audio mp3 in the dialogue scene, but I need to use Audio() because it will still continue playing the dialogue while mp3 still playing. But Idk why when i use it, its just skipped it and not play the audio.
Audio(Audio/HeavyBreathingslowlyup);
Audio(Audio/SimpleHeartbeat)
Re: Using Audio() instead AudioWait()
Posted: Thu Mar 06, 2025 7:36 am
by Tony Li
Hi,
If you don't specify a subject, it will use the speaker GameObject's audio source. This means the first command will use the speaker's audio source to play HeavyBreathingslowlyup, and then the second command will stop the audio source to play SimpleHeartbeat instead.
Two options:
1. Specify different subjects, such as:
Code: Select all
Audio(Audio/HeavyBreathingslowlyup, PlayerMouth);
Audio(Audio/SimpleHeartbeat, PlayerHeart)
This assumes the scene has GameObjects named PlayerMouth and PlayerHeart. It will play audio on those GameObjects.
2. Or use 'oneshot' to play the audio clips in a detached "one shot" manner that won't interrupt each other:
Code: Select all
Audio(Audio/HeavyBreathingslowlyup,,oneshot);
Audio(Audio/SimpleHeartbeat,,oneshot)
In the example above, I didn't specify a subject (hence the ",,"), but you could specify one if you want.
Re: Using Audio() instead AudioWait()
Posted: Fri Mar 07, 2025 3:05 am
by dzeessh
Thank you