Playback component of [AudioStreamInteractive]. Playback component of [AudioStreamInteractive]. Contains functions to change the currently played clip. Return the index of the currently playing clip. You can use this to get the name of the currently playing clip with [method AudioStreamInteractive.get_clip_name]. [b]Example:[/b] Get the currently playing clip name from inside an [AudioStreamPlayer] node. [codeblocks] [gdscript] var playing_clip_name = stream.get_clip_name(get_stream_playback().get_current_clip_index()) [/gdscript] [/codeblocks] Switch to a clip (by index). Switch to a clip (by name).