- Edited
I created a AudioStreamPlaybackInteractive and added two clips, but I can't figure out how to make it switch to the next one. The dynamic music features are pretty new so I couldn't find much online, but based on the docs I tried:
AudioStreamPlayer audioPlayer = (AudioStreamPlayer)GetNode("AudioPlayer");
AudioStreamPlaybackInteractive audioPlayback = (AudioStreamPlaybackInteractive)audioPlayer.GetStreamPlayback();
audioPlayback.SwitchToClip(1);
audioPlayer.Play();
When I log ((AudioStreamInteractive)audioPlayer.Stream).GetClipName(1)
I see the name of the clip, so I know I'm using the right index, but SwitchToClip just doesn't seem to do anything, the first clip keeps playing. Anyone have ideas?
Edit: Found an example here https://forum.godotengine.org/t/how-do-i-switch-audiostreaminteractive-clips-in-code/78954 , I'll try if the same issue happens with GDScript
Edit 2: Without the audioPlayer.Play();
, the SwitchToClip()
function works.