Home » Splash screen in Godot

Splash screen in Godot

by Online Tutorials Library

Splash screen in Godot

This is a simple tutorial to establish the basic idea of how the GUI subsystem works. The goal is to create a simple, static splash screen.

Splash screen in Godot

The following is a file with the property that will be used. The extracted data can be placed directly into our project folder, and Godot will import them automatically.

Setting up

Set the display resolution to 800×450 in the project settings, and set a new view like this:

Splash screen in Godot

The nodes “background” and “logo” are of a textured type. To display the image, drag the corresponding property to the texture property.

Splash screen in Godot

The node “start” is a TextureButton. It takes several images for different states, but only the normal and pressed will be supplied in this example:

Splash screen in Godot

Finally, the node “copyright” is a Label.

Our final scene should look something like this:

Splash screen in Godot

Go ahead and run the project. If we are satisfied with the results, continue to the next tutorial.


You may also like