Godot Version
4.2.1
Question
I want to play a video everytime the game starts. I want the video to finish playing first, then when the video is done playing a start button appears on the bottom right corner of the video, and all the while in the background a song keeps playing on repeat even when the video is finished playing till the start button is pressed. Little bit like old pokemon games.
First I add a Control
node, then I add a VideoStreamPlayer
and an AudioStreamPlayer
node, and a Button
. The button is hidden at first and on the video player’s _on_finished
signal the button is set to visible.
It works fine but the issue is the video disappears when the button appears or when the video is done playing and VideoStreamPlayer
’s _on_finished
signal is triggered.
I want the video player to stay there after the video has done playing till the start button is pressed, that video player acts like a background for the start button.