implement splash screens

This commit is contained in:
Haze Weathers 2023-12-25 15:11:59 -05:00
parent 515434c70c
commit ac36644d70
8 changed files with 139 additions and 1 deletions

29
menus/splash_screen.tscn Normal file
View file

@ -0,0 +1,29 @@
[gd_scene load_steps=5 format=2]
[ext_resource path="res://graphics/hud/team_sg_splash.png" type="Texture" id=1]
[ext_resource path="res://menus/splash_screen.gd" type="Script" id=2]
[ext_resource path="res://graphics/hud/godot_splash.png" type="Texture" id=3]
[ext_resource path="res://menus/title_screen.tscn" type="PackedScene" id=4]
[node name="SplashScreen" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 2 )
next_screen = ExtResource( 4 )
[node name="ColorRect" type="ColorRect" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
color = Color( 0, 0, 0, 1 )
[node name="TeamSG" type="TextureRect" parent="."]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
texture = ExtResource( 1 )
[node name="Godot" type="TextureRect" parent="."]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
texture = ExtResource( 3 )