diff --git a/project.godot b/project.godot index fa06aa6..490ad59 100644 --- a/project.godot +++ b/project.godot @@ -12,9 +12,9 @@ config_version=5 config/name="Traveler" config/version="0.0.1" -run/main_scene="res://scenes/mainMenu.tscn" +run/main_scene="res://scenes/splashScreen.tscn" config/features=PackedStringArray("4.2", "C#", "Mobile") -boot_splash/bg_color=Color(0.141176, 0.141176, 0.141176, 1) +boot_splash/show_image=false config/icon="res://icon.svg" [dotnet] diff --git a/scenes/splashScreen.tscn b/scenes/splashScreen.tscn new file mode 100644 index 0000000..d843022 --- /dev/null +++ b/scenes/splashScreen.tscn @@ -0,0 +1,113 @@ +[gd_scene load_steps=3 format=3 uid="uid://rx7t26ldvonc"] + +[ext_resource type="Texture2D" uid="uid://cb3gn8xb5r4gm" path="res://sprites/icons/coldmint.png" id="1_0333i"] +[ext_resource type="Texture2D" uid="uid://b877262di2jp5" path="res://sprites/icons/godot.png" id="2_y25sr"] + +[node name="SplashScreen" type="Control"] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="ColorRect" type="ColorRect" parent="."] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +color = Color(0.129412, 0.129412, 0.129412, 1) + +[node name="ColdMintTextureRect" type="TextureRect" parent="."] +layout_mode = 1 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +offset_left = 104.0 +offset_top = -196.0 +offset_right = 296.0 +offset_bottom = -4.0 +grow_horizontal = 2 +grow_vertical = 2 +texture = ExtResource("1_0333i") + +[node name="GodotTextureRect" type="TextureRect" parent="."] +layout_mode = 1 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +offset_left = -296.0 +offset_top = -196.0 +offset_right = -104.0 +offset_bottom = -4.0 +grow_horizontal = 2 +grow_vertical = 2 +texture = ExtResource("2_y25sr") + +[node name="ColdMintLabel" type="Label" parent="."] +layout_mode = 1 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +offset_left = 131.0 +offset_top = 28.0 +offset_right = 260.0 +offset_bottom = 77.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_font_sizes/font_size = 32 +text = "ColdMint" + +[node name="GodotLabel" type="Label" parent="."] +layout_mode = 1 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +offset_left = -286.0 +offset_top = 22.0 +offset_right = -96.0 +offset_bottom = 71.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_font_sizes/font_size = 32 +text = "Godot Engine" + +[node name="ColorRect2" type="ColorRect" parent="."] +layout_mode = 1 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +offset_left = -0.5 +offset_top = -196.0 +offset_right = 0.5 +offset_bottom = 74.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Label" type="Label" parent="."] +layout_mode = 1 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +offset_left = -66.0 +offset_top = 184.5 +offset_right = 66.0 +offset_bottom = 215.5 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_font_sizes/font_size = 20 +text = "Now Loading..." diff --git a/sprites/icons/coldmint.png b/sprites/icons/coldmint.png new file mode 100644 index 0000000..56c66f1 Binary files /dev/null and b/sprites/icons/coldmint.png differ diff --git a/sprites/icons/coldmint.png.import b/sprites/icons/coldmint.png.import new file mode 100644 index 0000000..d3dd8a1 --- /dev/null +++ b/sprites/icons/coldmint.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb3gn8xb5r4gm" +path="res://.godot/imported/coldmint.png-60f4ea4d35667d41233ba113782da34d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/icons/coldmint.png" +dest_files=["res://.godot/imported/coldmint.png-60f4ea4d35667d41233ba113782da34d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/icons/godot.png b/sprites/icons/godot.png new file mode 100644 index 0000000..c9c64a1 Binary files /dev/null and b/sprites/icons/godot.png differ diff --git a/sprites/icons/godot.png.import b/sprites/icons/godot.png.import new file mode 100644 index 0000000..6fe667e --- /dev/null +++ b/sprites/icons/godot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b877262di2jp5" +path="res://.godot/imported/godot.png-a4b706c7cd800e68db88737cd54e5395.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/icons/godot.png" +dest_files=["res://.godot/imported/godot.png-a4b706c7cd800e68db88737cd54e5395.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1