#Audio Bus for @exported variable
6 messages · Page 1 of 1 (latest)
You should use AudioStreamPlayer, AudioStreamPlayer2D or AudioStreamPlayer3D nodes (depending on use-case).
If it's music and you don't want the direction of the sound to change, use AudioStreamPlayer.
Hi Fluffeu, thanks for the reply. I jerry-rigged it by doing this instead...
I added a new AudioStreamPlayer and called it MusicSample and then created a new @onready variable...
@onready var music_sample = $MusicSample
This works, as I was able to add this to the desired bus. Is there no way to do this in codee using my initial setup?