Godot Version
4.3 (or .2).
Question
I’m new to this stuff so does anyone know how to create an intro. I want a two part thing, part one has the logo and name of the game studio, and part 2 has the words “Made with Godot”.
4.3 (or .2).
I’m new to this stuff so does anyone know how to create an intro. I want a two part thing, part one has the logo and name of the game studio, and part 2 has the words “Made with Godot”.
I generally create a scene for intro, where the splash screen (like made with Godot), fade in/out with a smooth transition by animation player and then it change the scene to main menu after it ends.
You can also use tween, but its better using animation player as its much easier.
you can either use a video, which has to be in theora ogg format, or animate everything in engine using AnimationPlayer.
you need a scene that serves as the intro, and after a timer or if the player presses any button it would be deleted and spawn the next scene, which could be the next scene or the menu.
It is also possible to change the splashscreen from project settings->boot splash. but this one is an image.
Thank you, but how would the code work?