mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-16 18:13:46 +00:00
Difficulty Selection
This commit is contained in:
parent
8779b4426e
commit
a2319b3b88
21 changed files with 188 additions and 55 deletions
|
|
@ -1,33 +1,71 @@
|
|||
[gd_scene load_steps=5 format=3 uid="uid://7jevaemboajn"]
|
||||
[gd_scene load_steps=11 format=3 uid="uid://7jevaemboajn"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://dbrliyhwbbscy" path="res://Sprites/UI/DifficultyButton0.png" id="1_00pwu"]
|
||||
[ext_resource type="Texture2D" uid="uid://chjt6y61ywk6" path="res://Sprites/UI/DifficultyButton1.png" id="2_m1stl"]
|
||||
[ext_resource type="Texture2D" uid="uid://bu50y0l51u05" path="res://Sprites/UI/DifficultyButton2.png" id="3_dmnj4"]
|
||||
[ext_resource type="Texture2D" uid="uid://b5dwiatnadrpx" path="res://Sprites/UI/DifficultyButton3.png" id="4_pkp66"]
|
||||
[ext_resource type="Script" uid="uid://bst70cv5631js" path="res://Scripts/UI/DifficultyMenu.cs" id="1_m1stl"]
|
||||
[ext_resource type="Resource" uid="uid://b4u3cs6ietmow" path="res://Resources/Maps/Tutorial.tres" id="2_dmnj4"]
|
||||
[ext_resource type="Theme" uid="uid://dnsadvmunm76k" path="res://Resources/Styles/MainMenuButtons.tres" id="3_0vv33"]
|
||||
[ext_resource type="Texture2D" uid="uid://b4fhb0wyc5vw" path="res://Sprites/UI/BackIcon.png" id="4_bl7tq"]
|
||||
[ext_resource type="LabelSettings" uid="uid://buk3e7bbwmnv1" path="res://Resources/Styles/Hud_Text_Style.tres" id="5_bl7tq"]
|
||||
[ext_resource type="Texture2D" uid="uid://xum7nxbnoph8" path="res://ExternalMaterial/DifficultySelection/DifficultyButton0.png" id="6_bl7tq"]
|
||||
[ext_resource type="Texture2D" uid="uid://44hye5leueuy" path="res://ExternalMaterial/DifficultySelection/DifficultyButton1.png" id="7_mt161"]
|
||||
[ext_resource type="Texture2D" uid="uid://cib48h3gmqoh0" path="res://ExternalMaterial/DifficultySelection/DifficultyButton2.png" id="8_vk2qx"]
|
||||
[ext_resource type="Texture2D" uid="uid://8cxg6g1tulis" path="res://ExternalMaterial/DifficultySelection/DifficultyButton3.png" id="9_8157i"]
|
||||
|
||||
[node name="DifficultySelection" type="CenterContainer"]
|
||||
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_0vv33"]
|
||||
bg_color = Color(0, 0, 0, 1)
|
||||
|
||||
[node name="DifficultySelection" type="PanelContainer"]
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
theme_override_styles/panel = SubResource("StyleBoxFlat_0vv33")
|
||||
script = ExtResource("1_m1stl")
|
||||
StartMap = ExtResource("2_dmnj4")
|
||||
|
||||
[node name="VBoxContainer" type="VBoxContainer" parent="."]
|
||||
[node name="HBoxContainer" type="HBoxContainer" parent="."]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="VBoxContainer2" type="VBoxContainer" parent="HBoxContainer"]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="BackButton" type="Button" parent="HBoxContainer/VBoxContainer2"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 0
|
||||
theme = ExtResource("3_0vv33")
|
||||
text = "Back"
|
||||
icon = ExtResource("4_bl7tq")
|
||||
|
||||
[node name="Label" type="Label" parent="HBoxContainer/VBoxContainer2"]
|
||||
layout_mode = 2
|
||||
text = "Select
|
||||
Difficulty"
|
||||
label_settings = ExtResource("5_bl7tq")
|
||||
|
||||
[node name="VBoxContainer" type="VBoxContainer" parent="HBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 4
|
||||
theme_override_constants/separation = 8
|
||||
alignment = 1
|
||||
|
||||
[node name="TextureButton" type="TextureButton" parent="VBoxContainer"]
|
||||
[node name="TextureButton" type="TextureButton" parent="HBoxContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
texture_normal = ExtResource("1_00pwu")
|
||||
texture_normal = ExtResource("6_bl7tq")
|
||||
|
||||
[node name="TextureButton2" type="TextureButton" parent="VBoxContainer"]
|
||||
[node name="TextureButton2" type="TextureButton" parent="HBoxContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
texture_normal = ExtResource("2_m1stl")
|
||||
texture_normal = ExtResource("7_mt161")
|
||||
|
||||
[node name="TextureButton3" type="TextureButton" parent="VBoxContainer"]
|
||||
[node name="TextureButton3" type="TextureButton" parent="HBoxContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
texture_normal = ExtResource("3_dmnj4")
|
||||
texture_normal = ExtResource("8_vk2qx")
|
||||
|
||||
[node name="TextureButton4" type="TextureButton" parent="VBoxContainer"]
|
||||
[node name="TextureButton4" type="TextureButton" parent="HBoxContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
texture_normal = ExtResource("4_pkp66")
|
||||
texture_normal = ExtResource("9_8157i")
|
||||
|
||||
[connection signal="pressed" from="HBoxContainer/VBoxContainer2/BackButton" to="." method="_on_back_button_pressed"]
|
||||
[connection signal="pressed" from="HBoxContainer/VBoxContainer/TextureButton" to="." method="StartEasy"]
|
||||
[connection signal="pressed" from="HBoxContainer/VBoxContainer/TextureButton2" to="." method="StartNormal"]
|
||||
[connection signal="pressed" from="HBoxContainer/VBoxContainer/TextureButton3" to="." method="StartHard"]
|
||||
[connection signal="pressed" from="HBoxContainer/VBoxContainer/TextureButton4" to="." method="StartLunatic"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue