Button sprites updated
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
[gd_scene load_steps=5 format=3 uid="uid://c3q3g2647qc27"]
|
[gd_scene load_steps=5 format=3 uid="uid://c3q3g2647qc27"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://dclkpithyykju" path="res://game/menu/common/credits.gd" id="1_wp78b"]
|
[ext_resource type="Script" uid="uid://dclkpithyykju" path="res://game/menu/common/credits.gd" id="1_wp78b"]
|
||||||
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://styles/menu_button.tres" id="2_nidem"]
|
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://styles/menu_theme.tres" id="2_nidem"]
|
||||||
|
|
||||||
[sub_resource type="InputEventAction" id="InputEventAction_wp78b"]
|
[sub_resource type="InputEventAction" id="InputEventAction_wp78b"]
|
||||||
action = &"ui_cancel"
|
action = &"ui_cancel"
|
||||||
@@ -11,16 +11,30 @@ events = [SubResource("InputEventAction_wp78b")]
|
|||||||
|
|
||||||
[node name="Credits" type="Control"]
|
[node name="Credits" type="Control"]
|
||||||
layout_mode = 3
|
layout_mode = 3
|
||||||
anchors_preset = 0
|
anchors_preset = 8
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
offset_right = 304.0
|
||||||
|
offset_bottom = 444.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
script = ExtResource("1_wp78b")
|
script = ExtResource("1_wp78b")
|
||||||
|
|
||||||
[node name="BackButton" type="Button" parent="."]
|
[node name="BackButton" type="Button" parent="."]
|
||||||
z_index = 100
|
z_index = 100
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
offset_left = 531.0
|
anchors_preset = 7
|
||||||
offset_top = 299.0
|
anchor_left = 0.5
|
||||||
offset_right = 615.0
|
anchor_top = 1.0
|
||||||
offset_bottom = 335.0
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
offset_left = -42.0
|
||||||
|
offset_top = -44.0
|
||||||
|
offset_right = 42.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 0
|
||||||
mouse_filter = 2
|
mouse_filter = 2
|
||||||
theme = ExtResource("2_nidem")
|
theme = ExtResource("2_nidem")
|
||||||
shortcut = SubResource("Shortcut_nidem")
|
shortcut = SubResource("Shortcut_nidem")
|
||||||
@@ -28,13 +42,17 @@ text = "Back"
|
|||||||
|
|
||||||
[node name="Text" type="Label" parent="."]
|
[node name="Text" type="Label" parent="."]
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 5
|
anchors_preset = 8
|
||||||
anchor_left = 0.5
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
anchor_right = 0.5
|
anchor_right = 0.5
|
||||||
offset_top = 360.0
|
anchor_bottom = 0.5
|
||||||
offset_right = 640.0
|
offset_left = -152.0
|
||||||
offset_bottom = 760.0
|
offset_top = -222.0
|
||||||
|
offset_right = 152.0
|
||||||
|
offset_bottom = 174.0
|
||||||
grow_horizontal = 2
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
theme = ExtResource("2_nidem")
|
theme = ExtResource("2_nidem")
|
||||||
text = "PROGRAMMING
|
text = "PROGRAMMING
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,11 @@ extends Control
|
|||||||
const WINDOW_FACTOR = "window_factor"
|
const WINDOW_FACTOR = "window_factor"
|
||||||
|
|
||||||
|
|
||||||
signal show_credits
|
|
||||||
signal back
|
signal back
|
||||||
|
|
||||||
|
|
||||||
@onready var fullscreen_button : CheckButton = $%FullscreenCheckButton
|
@onready var fullscreen_button : CheckButton = $%FullscreenCheckButton
|
||||||
@onready var window_factor_buttons : HBoxContainer = $%WindowFactorContainer
|
@onready var window_factor_buttons : HBoxContainer = $%WindowFactorContainer
|
||||||
@onready var credits_button : Button = $%CreditsButton
|
|
||||||
@onready var back_button : Button = $%BackButton
|
@onready var back_button : Button = $%BackButton
|
||||||
@onready var master_slider : Slider = $%MasterSlider
|
@onready var master_slider : Slider = $%MasterSlider
|
||||||
@onready var ui_slider : Slider = $%UISlider
|
@onready var ui_slider : Slider = $%UISlider
|
||||||
@@ -47,8 +45,6 @@ func _init_focus() -> void:
|
|||||||
|
|
||||||
func _setup_neighbors() -> void:
|
func _setup_neighbors() -> void:
|
||||||
music_slider.focus_neighbor_bottom = back_button.get_path()
|
music_slider.focus_neighbor_bottom = back_button.get_path()
|
||||||
back_button.focus_neighbor_right = credits_button.get_path()
|
|
||||||
credits_button.focus_neighbor_left = back_button.get_path()
|
|
||||||
|
|
||||||
|
|
||||||
func _load_current_settings() -> void:
|
func _load_current_settings() -> void:
|
||||||
@@ -79,10 +75,6 @@ func _on_fullscreen_check_button_toggled(toggled: bool) -> void:
|
|||||||
_update_window_factor_disabled()
|
_update_window_factor_disabled()
|
||||||
|
|
||||||
|
|
||||||
func _on_credits_button_pressed() -> void:
|
|
||||||
show_credits.emit()
|
|
||||||
|
|
||||||
|
|
||||||
func _on_back_button_pressed() -> void:
|
func _on_back_button_pressed() -> void:
|
||||||
back.emit()
|
back.emit()
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[gd_scene load_steps=6 format=3 uid="uid://btr60idiit4y7"]
|
[gd_scene load_steps=6 format=3 uid="uid://btr60idiit4y7"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://ceng1u112aqg0" path="res://game/menu/common/options.gd" id="1_61pji"]
|
[ext_resource type="Script" uid="uid://ceng1u112aqg0" path="res://game/menu/common/options.gd" id="1_61pji"]
|
||||||
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://styles/menu_button.tres" id="2_1tdpy"]
|
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://styles/menu_theme.tres" id="2_1tdpy"]
|
||||||
|
|
||||||
[sub_resource type="ButtonGroup" id="ButtonGroup_6ueaa"]
|
[sub_resource type="ButtonGroup" id="ButtonGroup_6ueaa"]
|
||||||
|
|
||||||
@@ -11,45 +11,36 @@ action = &"ui_cancel"
|
|||||||
[sub_resource type="Shortcut" id="Shortcut_1tdpy"]
|
[sub_resource type="Shortcut" id="Shortcut_1tdpy"]
|
||||||
events = [SubResource("InputEventAction_61pji")]
|
events = [SubResource("InputEventAction_61pji")]
|
||||||
|
|
||||||
[node name="Options" type="Control"]
|
[node name="Options" type="VBoxContainer"]
|
||||||
layout_mode = 3
|
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
anchor_right = 1.0
|
anchor_right = 1.0
|
||||||
anchor_bottom = 1.0
|
anchor_bottom = 1.0
|
||||||
|
offset_right = -556.0
|
||||||
|
offset_bottom = -312.0
|
||||||
grow_horizontal = 2
|
grow_horizontal = 2
|
||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
|
size_flags_horizontal = 3
|
||||||
|
size_flags_vertical = 3
|
||||||
script = ExtResource("1_61pji")
|
script = ExtResource("1_61pji")
|
||||||
|
|
||||||
[node name="MarginContainer" type="MarginContainer" parent="."]
|
[node name="ScrollContainer" type="ScrollContainer" parent="."]
|
||||||
layout_mode = 1
|
|
||||||
anchors_preset = 15
|
|
||||||
anchor_right = 1.0
|
|
||||||
anchor_bottom = 1.0
|
|
||||||
grow_horizontal = 2
|
|
||||||
grow_vertical = 2
|
|
||||||
theme_override_constants/margin_bottom = 10
|
|
||||||
|
|
||||||
[node name="ScrollContainer" type="ScrollContainer" parent="MarginContainer"]
|
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
size_flags_vertical = 3
|
||||||
follow_focus = true
|
follow_focus = true
|
||||||
|
|
||||||
[node name="MarginContainer" type="MarginContainer" parent="MarginContainer/ScrollContainer"]
|
[node name="OptionsGridContainer" type="GridContainer" parent="ScrollContainer"]
|
||||||
layout_mode = 2
|
|
||||||
size_flags_horizontal = 3
|
|
||||||
theme_override_constants/margin_top = 10
|
|
||||||
|
|
||||||
[node name="OptionsGridContainer" type="GridContainer" parent="MarginContainer/ScrollContainer/MarginContainer"]
|
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
size_flags_horizontal = 6
|
size_flags_horizontal = 6
|
||||||
|
size_flags_vertical = 6
|
||||||
columns = 2
|
columns = 2
|
||||||
|
|
||||||
[node name="FullscreenLabel" type="Label" parent="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer"]
|
[node name="FullscreenLabel" type="Label" parent="ScrollContainer/OptionsGridContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
z_index = 100
|
z_index = 100
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
theme = ExtResource("2_1tdpy")
|
theme = ExtResource("2_1tdpy")
|
||||||
|
|
||||||
[node name="FullscreenCheckButton" type="CheckButton" parent="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer"]
|
[node name="FullscreenCheckButton" type="CheckButton" parent="ScrollContainer/OptionsGridContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
z_index = 100
|
z_index = 100
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
@@ -57,18 +48,18 @@ mouse_filter = 2
|
|||||||
theme = ExtResource("2_1tdpy")
|
theme = ExtResource("2_1tdpy")
|
||||||
text = "Fullscreen"
|
text = "Fullscreen"
|
||||||
|
|
||||||
[node name="WindowFactorLabel" type="Label" parent="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer"]
|
[node name="WindowFactorLabel" type="Label" parent="ScrollContainer/OptionsGridContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
z_index = 100
|
z_index = 100
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
theme = ExtResource("2_1tdpy")
|
theme = ExtResource("2_1tdpy")
|
||||||
text = "Window Factor"
|
text = "Window Factor"
|
||||||
|
|
||||||
[node name="WindowFactorContainer" type="HBoxContainer" parent="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer"]
|
[node name="WindowFactorContainer" type="HBoxContainer" parent="ScrollContainer/OptionsGridContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="ButtonX1" type="Button" parent="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer/WindowFactorContainer"]
|
[node name="ButtonX1" type="Button" parent="ScrollContainer/OptionsGridContainer/WindowFactorContainer"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
mouse_filter = 2
|
mouse_filter = 2
|
||||||
theme = ExtResource("2_1tdpy")
|
theme = ExtResource("2_1tdpy")
|
||||||
@@ -77,7 +68,7 @@ button_group = SubResource("ButtonGroup_6ueaa")
|
|||||||
text = "*1"
|
text = "*1"
|
||||||
metadata/window_factor = 1
|
metadata/window_factor = 1
|
||||||
|
|
||||||
[node name="ButtonX2" type="Button" parent="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer/WindowFactorContainer"]
|
[node name="ButtonX2" type="Button" parent="ScrollContainer/OptionsGridContainer/WindowFactorContainer"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
mouse_filter = 2
|
mouse_filter = 2
|
||||||
theme = ExtResource("2_1tdpy")
|
theme = ExtResource("2_1tdpy")
|
||||||
@@ -86,7 +77,7 @@ button_group = SubResource("ButtonGroup_6ueaa")
|
|||||||
text = "*2"
|
text = "*2"
|
||||||
metadata/window_factor = 2
|
metadata/window_factor = 2
|
||||||
|
|
||||||
[node name="ButtonX3" type="Button" parent="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer/WindowFactorContainer"]
|
[node name="ButtonX3" type="Button" parent="ScrollContainer/OptionsGridContainer/WindowFactorContainer"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
mouse_filter = 2
|
mouse_filter = 2
|
||||||
theme = ExtResource("2_1tdpy")
|
theme = ExtResource("2_1tdpy")
|
||||||
@@ -95,7 +86,7 @@ button_group = SubResource("ButtonGroup_6ueaa")
|
|||||||
text = "*3"
|
text = "*3"
|
||||||
metadata/window_factor = 3
|
metadata/window_factor = 3
|
||||||
|
|
||||||
[node name="ButtonX4" type="Button" parent="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer/WindowFactorContainer"]
|
[node name="ButtonX4" type="Button" parent="ScrollContainer/OptionsGridContainer/WindowFactorContainer"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
mouse_filter = 2
|
mouse_filter = 2
|
||||||
theme = ExtResource("2_1tdpy")
|
theme = ExtResource("2_1tdpy")
|
||||||
@@ -104,7 +95,7 @@ button_group = SubResource("ButtonGroup_6ueaa")
|
|||||||
text = "*4"
|
text = "*4"
|
||||||
metadata/window_factor = 4
|
metadata/window_factor = 4
|
||||||
|
|
||||||
[node name="ButtonX5" type="Button" parent="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer/WindowFactorContainer"]
|
[node name="ButtonX5" type="Button" parent="ScrollContainer/OptionsGridContainer/WindowFactorContainer"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
mouse_filter = 2
|
mouse_filter = 2
|
||||||
theme = ExtResource("2_1tdpy")
|
theme = ExtResource("2_1tdpy")
|
||||||
@@ -113,12 +104,12 @@ button_group = SubResource("ButtonGroup_6ueaa")
|
|||||||
text = "*5"
|
text = "*5"
|
||||||
metadata/window_factor = 5
|
metadata/window_factor = 5
|
||||||
|
|
||||||
[node name="MasterLabel" type="Label" parent="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer"]
|
[node name="MasterLabel" type="Label" parent="ScrollContainer/OptionsGridContainer"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
theme = ExtResource("2_1tdpy")
|
theme = ExtResource("2_1tdpy")
|
||||||
text = "Menu Volume"
|
text = "Menu Volume"
|
||||||
|
|
||||||
[node name="MasterSlider" type="HSlider" parent="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer"]
|
[node name="MasterSlider" type="HSlider" parent="ScrollContainer/OptionsGridContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
custom_minimum_size = Vector2(100, 0)
|
custom_minimum_size = Vector2(100, 0)
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
@@ -129,12 +120,12 @@ value = 100.0
|
|||||||
rounded = true
|
rounded = true
|
||||||
scrollable = false
|
scrollable = false
|
||||||
|
|
||||||
[node name="UILabel" type="Label" parent="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer"]
|
[node name="UILabel" type="Label" parent="ScrollContainer/OptionsGridContainer"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
theme = ExtResource("2_1tdpy")
|
theme = ExtResource("2_1tdpy")
|
||||||
text = "UI Volume"
|
text = "UI Volume"
|
||||||
|
|
||||||
[node name="UISlider" type="HSlider" parent="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer"]
|
[node name="UISlider" type="HSlider" parent="ScrollContainer/OptionsGridContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
custom_minimum_size = Vector2(100, 0)
|
custom_minimum_size = Vector2(100, 0)
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
@@ -145,12 +136,12 @@ value = 100.0
|
|||||||
rounded = true
|
rounded = true
|
||||||
scrollable = false
|
scrollable = false
|
||||||
|
|
||||||
[node name="SFXLabel" type="Label" parent="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer"]
|
[node name="SFXLabel" type="Label" parent="ScrollContainer/OptionsGridContainer"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
theme = ExtResource("2_1tdpy")
|
theme = ExtResource("2_1tdpy")
|
||||||
text = "SFX Volume"
|
text = "SFX Volume"
|
||||||
|
|
||||||
[node name="SFXSlider" type="HSlider" parent="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer"]
|
[node name="SFXSlider" type="HSlider" parent="ScrollContainer/OptionsGridContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
custom_minimum_size = Vector2(100, 0)
|
custom_minimum_size = Vector2(100, 0)
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
@@ -161,12 +152,12 @@ value = 100.0
|
|||||||
rounded = true
|
rounded = true
|
||||||
scrollable = false
|
scrollable = false
|
||||||
|
|
||||||
[node name="MusicLabel" type="Label" parent="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer"]
|
[node name="MusicLabel" type="Label" parent="ScrollContainer/OptionsGridContainer"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
theme = ExtResource("2_1tdpy")
|
theme = ExtResource("2_1tdpy")
|
||||||
text = "Music Volume"
|
text = "Music Volume"
|
||||||
|
|
||||||
[node name="MusicSlider" type="HSlider" parent="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer"]
|
[node name="MusicSlider" type="HSlider" parent="ScrollContainer/OptionsGridContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
custom_minimum_size = Vector2(100, 0)
|
custom_minimum_size = Vector2(100, 0)
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
@@ -177,21 +168,13 @@ value = 100.0
|
|||||||
rounded = true
|
rounded = true
|
||||||
scrollable = false
|
scrollable = false
|
||||||
|
|
||||||
[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer"]
|
[node name="HBoxContainer" type="HBoxContainer" parent="."]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
size_flags_horizontal = 4
|
size_flags_horizontal = 4
|
||||||
size_flags_vertical = 8
|
size_flags_vertical = 8
|
||||||
alignment = 2
|
alignment = 2
|
||||||
|
|
||||||
[node name="CreditsButton" type="Button" parent="MarginContainer/HBoxContainer"]
|
[node name="BackButton" type="Button" parent="HBoxContainer"]
|
||||||
unique_name_in_owner = true
|
|
||||||
z_index = 100
|
|
||||||
layout_mode = 2
|
|
||||||
mouse_filter = 2
|
|
||||||
theme = ExtResource("2_1tdpy")
|
|
||||||
text = "Credits"
|
|
||||||
|
|
||||||
[node name="BackButton" type="Button" parent="MarginContainer/HBoxContainer"]
|
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
z_index = 100
|
z_index = 100
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
@@ -200,15 +183,10 @@ theme = ExtResource("2_1tdpy")
|
|||||||
shortcut = SubResource("Shortcut_1tdpy")
|
shortcut = SubResource("Shortcut_1tdpy")
|
||||||
text = "Back"
|
text = "Back"
|
||||||
|
|
||||||
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer"]
|
|
||||||
layout_mode = 2
|
|
||||||
alignment = 1
|
|
||||||
|
|
||||||
[connection signal="visibility_changed" from="." to="." method="_on_visibility_changed"]
|
[connection signal="visibility_changed" from="." to="." method="_on_visibility_changed"]
|
||||||
[connection signal="toggled" from="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer/FullscreenCheckButton" to="." method="_on_fullscreen_check_button_toggled"]
|
[connection signal="toggled" from="ScrollContainer/OptionsGridContainer/FullscreenCheckButton" to="." method="_on_fullscreen_check_button_toggled"]
|
||||||
[connection signal="value_changed" from="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer/MasterSlider" to="." method="_on_master_volume_changed"]
|
[connection signal="value_changed" from="ScrollContainer/OptionsGridContainer/MasterSlider" to="." method="_on_master_volume_changed"]
|
||||||
[connection signal="value_changed" from="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer/UISlider" to="." method="_on_ui_volume_changed"]
|
[connection signal="value_changed" from="ScrollContainer/OptionsGridContainer/UISlider" to="." method="_on_ui_volume_changed"]
|
||||||
[connection signal="value_changed" from="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer/SFXSlider" to="." method="_on_sfx_volume_changed"]
|
[connection signal="value_changed" from="ScrollContainer/OptionsGridContainer/SFXSlider" to="." method="_on_sfx_volume_changed"]
|
||||||
[connection signal="value_changed" from="MarginContainer/ScrollContainer/MarginContainer/OptionsGridContainer/MusicSlider" to="." method="_on_music_volume_changed"]
|
[connection signal="value_changed" from="ScrollContainer/OptionsGridContainer/MusicSlider" to="." method="_on_music_volume_changed"]
|
||||||
[connection signal="pressed" from="MarginContainer/HBoxContainer/CreditsButton" to="." method="_on_credits_button_pressed"]
|
[connection signal="pressed" from="HBoxContainer/BackButton" to="." method="_on_back_button_pressed"]
|
||||||
[connection signal="pressed" from="MarginContainer/HBoxContainer/BackButton" to="." method="_on_back_button_pressed"]
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[gd_scene load_steps=3 format=3 uid="uid://duxm8n62j2qt6"]
|
[gd_scene load_steps=3 format=3 uid="uid://duxm8n62j2qt6"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://bkj8s7588e1ho" path="res://game/menu/ingame/game_over_screen.gd" id="1_rkkr6"]
|
[ext_resource type="Script" uid="uid://bkj8s7588e1ho" path="res://game/menu/ingame/game_over_screen.gd" id="1_rkkr6"]
|
||||||
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://styles/menu_button.tres" id="2_uh3ar"]
|
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://styles/menu_theme.tres" id="2_uh3ar"]
|
||||||
|
|
||||||
[node name="GameOverScreen" type="Control"]
|
[node name="GameOverScreen" type="Control"]
|
||||||
layout_mode = 3
|
layout_mode = 3
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[gd_scene load_steps=4 format=3 uid="uid://bclo2wl8ibrcg"]
|
[gd_scene load_steps=4 format=3 uid="uid://bclo2wl8ibrcg"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://npqs2m5g5bd6" path="res://game/menu/ingame/pause_menu.gd" id="1_inj1j"]
|
[ext_resource type="Script" uid="uid://npqs2m5g5bd6" path="res://game/menu/ingame/pause_menu.gd" id="1_inj1j"]
|
||||||
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://styles/menu_button.tres" id="2_vy7sn"]
|
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://styles/menu_theme.tres" id="2_vy7sn"]
|
||||||
|
|
||||||
[sub_resource type="Shortcut" id="Shortcut_lgp46"]
|
[sub_resource type="Shortcut" id="Shortcut_lgp46"]
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ signal show_main_menu
|
|||||||
|
|
||||||
@onready var pause_menu : Control = $PauseMenu
|
@onready var pause_menu : Control = $PauseMenu
|
||||||
@onready var options : Control = $Options
|
@onready var options : Control = $Options
|
||||||
@onready var credits : Control = $Credits
|
|
||||||
|
|
||||||
|
|
||||||
func _ready() -> void:
|
func _ready() -> void:
|
||||||
@@ -20,7 +19,7 @@ func _input(event: InputEvent) -> void:
|
|||||||
|
|
||||||
|
|
||||||
func _show_menu(menu: Control) -> void:
|
func _show_menu(menu: Control) -> void:
|
||||||
var menus : Array[Control] = [ pause_menu, options, credits ]
|
var menus : Array[Control] = [ pause_menu, options ]
|
||||||
|
|
||||||
for m in menus:
|
for m in menus:
|
||||||
m.hide()
|
m.hide()
|
||||||
@@ -44,13 +43,5 @@ func _on_options_back() -> void:
|
|||||||
_show_menu(pause_menu)
|
_show_menu(pause_menu)
|
||||||
|
|
||||||
|
|
||||||
func _on_options_show_credits() -> void:
|
|
||||||
_show_menu(credits)
|
|
||||||
|
|
||||||
|
|
||||||
func _on_credits_back() -> void:
|
|
||||||
_show_menu(options)
|
|
||||||
|
|
||||||
|
|
||||||
func _on_visibility_changed() -> void:
|
func _on_visibility_changed() -> void:
|
||||||
get_tree().paused = visible
|
get_tree().paused = visible
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
[gd_scene load_steps=5 format=3 uid="uid://d34nh3lc1gpb"]
|
[gd_scene load_steps=4 format=3 uid="uid://d34nh3lc1gpb"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://c5d2t2o53wkmt" path="res://game/menu/ingame/pause_screen.gd" id="1_fe1q8"]
|
[ext_resource type="Script" uid="uid://c5d2t2o53wkmt" path="res://game/menu/ingame/pause_screen.gd" id="1_fe1q8"]
|
||||||
[ext_resource type="PackedScene" uid="uid://bclo2wl8ibrcg" path="res://game/menu/ingame/pause_menu.tscn" id="2_4r6ly"]
|
[ext_resource type="PackedScene" uid="uid://bclo2wl8ibrcg" path="res://game/menu/ingame/pause_menu.tscn" id="2_4r6ly"]
|
||||||
[ext_resource type="PackedScene" uid="uid://btr60idiit4y7" path="res://game/menu/common/options.tscn" id="3_3gwb3"]
|
[ext_resource type="PackedScene" uid="uid://btr60idiit4y7" path="res://game/menu/common/options.tscn" id="3_3gwb3"]
|
||||||
[ext_resource type="PackedScene" uid="uid://c3q3g2647qc27" path="res://game/menu/common/credits.tscn" id="4_jph5s"]
|
|
||||||
|
|
||||||
[node name="PauseScreen" type="Control"]
|
[node name="PauseScreen" type="Control"]
|
||||||
layout_mode = 3
|
layout_mode = 3
|
||||||
@@ -19,16 +18,13 @@ layout_mode = 0
|
|||||||
anchors_preset = 0
|
anchors_preset = 0
|
||||||
anchor_right = 0.0
|
anchor_right = 0.0
|
||||||
anchor_bottom = 0.0
|
anchor_bottom = 0.0
|
||||||
|
offset_right = 0.0
|
||||||
|
offset_bottom = 0.0
|
||||||
grow_horizontal = 1
|
grow_horizontal = 1
|
||||||
grow_vertical = 1
|
grow_vertical = 1
|
||||||
|
|
||||||
[node name="Credits" parent="." instance=ExtResource("4_jph5s")]
|
|
||||||
layout_mode = 0
|
|
||||||
|
|
||||||
[connection signal="visibility_changed" from="." to="." method="_on_visibility_changed"]
|
[connection signal="visibility_changed" from="." to="." method="_on_visibility_changed"]
|
||||||
[connection signal="continue_game" from="PauseMenu" to="." method="_on_pause_menu_continue_game"]
|
[connection signal="continue_game" from="PauseMenu" to="." method="_on_pause_menu_continue_game"]
|
||||||
[connection signal="show_main_menu" from="PauseMenu" to="." method="_on_pause_menu_show_main_menu"]
|
[connection signal="show_main_menu" from="PauseMenu" to="." method="_on_pause_menu_show_main_menu"]
|
||||||
[connection signal="show_options" from="PauseMenu" to="." method="_on_pause_menu_show_options"]
|
[connection signal="show_options" from="PauseMenu" to="." method="_on_pause_menu_show_options"]
|
||||||
[connection signal="back" from="Options" to="." method="_on_options_back"]
|
[connection signal="back" from="Options" to="." method="_on_options_back"]
|
||||||
[connection signal="show_credits" from="Options" to="." method="_on_options_show_credits"]
|
|
||||||
[connection signal="back" from="Credits" to="." method="_on_credits_back"]
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[gd_scene load_steps=3 format=3 uid="uid://bdcs2ff85qjs4"]
|
[gd_scene load_steps=3 format=3 uid="uid://bdcs2ff85qjs4"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://b0p1ewlw18ijg" path="res://game/menu/ingame/victory_screen.gd" id="1_asigk"]
|
[ext_resource type="Script" uid="uid://b0p1ewlw18ijg" path="res://game/menu/ingame/victory_screen.gd" id="1_asigk"]
|
||||||
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://styles/menu_button.tres" id="2_wb4d8"]
|
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://styles/menu_theme.tres" id="2_wb4d8"]
|
||||||
|
|
||||||
[node name="VictoryScreen" type="Control"]
|
[node name="VictoryScreen" type="Control"]
|
||||||
layout_mode = 3
|
layout_mode = 3
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[gd_scene load_steps=3 format=3 uid="uid://cv122gw47cnun"]
|
[gd_scene load_steps=3 format=3 uid="uid://cv122gw47cnun"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://6isk1tmc2ik1" path="res://game/menu/ingame/weapon_selection_screen.gd" id="1_hl2ql"]
|
[ext_resource type="Script" uid="uid://6isk1tmc2ik1" path="res://game/menu/ingame/weapon_selection_screen.gd" id="1_hl2ql"]
|
||||||
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://styles/menu_button.tres" id="2_mi7cn"]
|
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://styles/menu_theme.tres" id="2_mi7cn"]
|
||||||
|
|
||||||
[node name="WeaponSelectionScreen" type="Control"]
|
[node name="WeaponSelectionScreen" type="Control"]
|
||||||
layout_mode = 3
|
layout_mode = 3
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[gd_scene load_steps=3 format=3 uid="uid://1o3idp54lil2"]
|
[gd_scene load_steps=3 format=3 uid="uid://1o3idp54lil2"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://beiydi6w6gqqc" path="res://game/menu/ingame/weapon_selector.gd" id="1_4acia"]
|
[ext_resource type="Script" uid="uid://beiydi6w6gqqc" path="res://game/menu/ingame/weapon_selector.gd" id="1_4acia"]
|
||||||
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://styles/menu_button.tres" id="2_g83h6"]
|
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://styles/menu_theme.tres" id="2_g83h6"]
|
||||||
|
|
||||||
[node name="WeaponSelector" type="MarginContainer"]
|
[node name="WeaponSelector" type="MarginContainer"]
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
|
|||||||
@@ -3,8 +3,9 @@ extends Control
|
|||||||
|
|
||||||
signal continue_game
|
signal continue_game
|
||||||
signal new_game
|
signal new_game
|
||||||
signal quit_game
|
|
||||||
signal show_options
|
signal show_options
|
||||||
|
signal show_credits
|
||||||
|
signal quit_game
|
||||||
|
|
||||||
|
|
||||||
@onready var continue_button := $%ContinueButton
|
@onready var continue_button := $%ContinueButton
|
||||||
@@ -61,5 +62,9 @@ func _on_options_button_pressed() -> void:
|
|||||||
show_options.emit()
|
show_options.emit()
|
||||||
|
|
||||||
|
|
||||||
|
func _on_credits_button_pressed() -> void:
|
||||||
|
show_credits.emit()
|
||||||
|
|
||||||
|
|
||||||
func _on_quit_button_pressed() -> void:
|
func _on_quit_button_pressed() -> void:
|
||||||
quit_game.emit()
|
quit_game.emit()
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[gd_scene load_steps=3 format=3 uid="uid://bxlccevt52y70"]
|
[gd_scene load_steps=3 format=3 uid="uid://bxlccevt52y70"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://dixdfabe2vfsj" path="res://game/menu/main/main_menu.gd" id="1_chmv6"]
|
[ext_resource type="Script" uid="uid://dixdfabe2vfsj" path="res://game/menu/main/main_menu.gd" id="1_chmv6"]
|
||||||
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://styles/menu_button.tres" id="2_f5okj"]
|
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://styles/menu_theme.tres" id="2_f5okj"]
|
||||||
|
|
||||||
[node name="MainMenu" type="Control"]
|
[node name="MainMenu" type="Control"]
|
||||||
layout_mode = 3
|
layout_mode = 3
|
||||||
@@ -9,12 +9,18 @@ anchors_preset = 0
|
|||||||
script = ExtResource("1_chmv6")
|
script = ExtResource("1_chmv6")
|
||||||
|
|
||||||
[node name="VBoxContainer" type="VBoxContainer" parent="."]
|
[node name="VBoxContainer" type="VBoxContainer" parent="."]
|
||||||
top_level = true
|
layout_mode = 1
|
||||||
layout_mode = 0
|
anchors_preset = 8
|
||||||
offset_left = 100.0
|
anchor_left = 0.5
|
||||||
offset_top = 100.0
|
anchor_top = 0.5
|
||||||
offset_right = 179.0
|
anchor_right = 0.5
|
||||||
offset_bottom = 236.0
|
anchor_bottom = 0.5
|
||||||
|
offset_left = -74.0
|
||||||
|
offset_top = -94.0
|
||||||
|
offset_right = 74.0
|
||||||
|
offset_bottom = 94.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
|
||||||
[node name="ContinueButton" type="Button" parent="VBoxContainer"]
|
[node name="ContinueButton" type="Button" parent="VBoxContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
@@ -23,7 +29,7 @@ mouse_filter = 2
|
|||||||
theme = ExtResource("2_f5okj")
|
theme = ExtResource("2_f5okj")
|
||||||
disabled = true
|
disabled = true
|
||||||
button_mask = 0
|
button_mask = 0
|
||||||
text = "CONTINUE"
|
text = "Continue"
|
||||||
|
|
||||||
[node name="StartButton" type="Button" parent="VBoxContainer"]
|
[node name="StartButton" type="Button" parent="VBoxContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
@@ -31,24 +37,33 @@ layout_mode = 2
|
|||||||
mouse_filter = 2
|
mouse_filter = 2
|
||||||
theme = ExtResource("2_f5okj")
|
theme = ExtResource("2_f5okj")
|
||||||
button_mask = 0
|
button_mask = 0
|
||||||
text = "START"
|
text = "New Game"
|
||||||
|
|
||||||
[node name="OptionsButton" type="Button" parent="VBoxContainer"]
|
[node name="OptionsButton" type="Button" parent="VBoxContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
mouse_filter = 2
|
mouse_filter = 2
|
||||||
theme = ExtResource("2_f5okj")
|
theme = ExtResource("2_f5okj")
|
||||||
text = "OPTIONS"
|
text = "Options"
|
||||||
|
|
||||||
|
[node name="CreditsButton" type="Button" parent="VBoxContainer"]
|
||||||
|
unique_name_in_owner = true
|
||||||
|
z_index = 100
|
||||||
|
layout_mode = 2
|
||||||
|
mouse_filter = 2
|
||||||
|
theme = ExtResource("2_f5okj")
|
||||||
|
text = "Credits"
|
||||||
|
|
||||||
[node name="QuitButton" type="Button" parent="VBoxContainer"]
|
[node name="QuitButton" type="Button" parent="VBoxContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
mouse_filter = 2
|
mouse_filter = 2
|
||||||
theme = ExtResource("2_f5okj")
|
theme = ExtResource("2_f5okj")
|
||||||
text = "QUIT"
|
text = "Quit"
|
||||||
|
|
||||||
[connection signal="visibility_changed" from="." to="." method="_on_visibility_changed"]
|
[connection signal="visibility_changed" from="." to="." method="_on_visibility_changed"]
|
||||||
[connection signal="pressed" from="VBoxContainer/ContinueButton" to="." method="_on_continue_button_pressed"]
|
[connection signal="pressed" from="VBoxContainer/ContinueButton" to="." method="_on_continue_button_pressed"]
|
||||||
[connection signal="pressed" from="VBoxContainer/StartButton" to="." method="_on_start_button_pressed"]
|
[connection signal="pressed" from="VBoxContainer/StartButton" to="." method="_on_start_button_pressed"]
|
||||||
[connection signal="pressed" from="VBoxContainer/OptionsButton" to="." method="_on_options_button_pressed"]
|
[connection signal="pressed" from="VBoxContainer/OptionsButton" to="." method="_on_options_button_pressed"]
|
||||||
|
[connection signal="pressed" from="VBoxContainer/CreditsButton" to="." method="_on_credits_button_pressed"]
|
||||||
[connection signal="pressed" from="VBoxContainer/QuitButton" to="." method="_on_quit_button_pressed"]
|
[connection signal="pressed" from="VBoxContainer/QuitButton" to="." method="_on_quit_button_pressed"]
|
||||||
|
|||||||
@@ -10,11 +10,10 @@ const DEFAULT_SEED_LENGTH := 16
|
|||||||
|
|
||||||
|
|
||||||
var _seed_regex := RegEx.new()
|
var _seed_regex := RegEx.new()
|
||||||
var _random_seed := ""
|
|
||||||
|
|
||||||
|
|
||||||
@onready var seed_label : Label = $%SeedLabel
|
@onready var random_edit : LineEdit = $%RandomEdit
|
||||||
@onready var seed_edit : LineEdit = $%SeedEdit
|
@onready var custom_edit : LineEdit = $%CustomEdit
|
||||||
|
|
||||||
@onready var use_random_button : Button = $%UseRandomButton
|
@onready var use_random_button : Button = $%UseRandomButton
|
||||||
@onready var use_custom_button : Button = $%UseCustomButton
|
@onready var use_custom_button : Button = $%UseCustomButton
|
||||||
@@ -26,7 +25,7 @@ func _init() -> void:
|
|||||||
|
|
||||||
|
|
||||||
func _update_use_custom_button() -> void:
|
func _update_use_custom_button() -> void:
|
||||||
var disabled := seed_edit.text.is_empty()
|
var disabled := custom_edit.text.is_empty()
|
||||||
use_custom_button.disabled = disabled
|
use_custom_button.disabled = disabled
|
||||||
use_custom_button.focus_mode = FOCUS_NONE if disabled else FOCUS_ALL
|
use_custom_button.focus_mode = FOCUS_NONE if disabled else FOCUS_ALL
|
||||||
|
|
||||||
@@ -59,10 +58,10 @@ func _on_seed_edit_text_changed(new_text: String) -> void:
|
|||||||
for text in result:
|
for text in result:
|
||||||
filtered_text += text.get_string()
|
filtered_text += text.get_string()
|
||||||
|
|
||||||
if seed_edit.text != filtered_text:
|
if custom_edit.text != filtered_text:
|
||||||
var caret_position := seed_edit.caret_column
|
var caret_position := custom_edit.caret_column
|
||||||
seed_edit.text = filtered_text
|
custom_edit.text = filtered_text
|
||||||
seed_edit.caret_column = min(caret_position, filtered_text.length())
|
custom_edit.caret_column = min(caret_position, filtered_text.length())
|
||||||
|
|
||||||
_update_use_custom_button()
|
_update_use_custom_button()
|
||||||
|
|
||||||
@@ -80,17 +79,15 @@ func _on_visibility_changed() -> void:
|
|||||||
if not is_node_ready(): return
|
if not is_node_ready(): return
|
||||||
if not visible: return
|
if not visible: return
|
||||||
|
|
||||||
_random_seed = _get_random_seed()
|
custom_edit.text = ""
|
||||||
|
random_edit.text = _get_random_seed()
|
||||||
seed_edit.text = ""
|
|
||||||
seed_label.text = _random_seed
|
|
||||||
|
|
||||||
_init_focus()
|
_init_focus()
|
||||||
|
|
||||||
|
|
||||||
func _on_use_random_button_pressed() -> void:
|
func _on_use_random_button_pressed() -> void:
|
||||||
_start_game(_random_seed)
|
_start_game(random_edit.text)
|
||||||
|
|
||||||
|
|
||||||
func _on_use_custom_button_pressed() -> void:
|
func _on_use_custom_button_pressed() -> void:
|
||||||
_start_game(seed_edit.text)
|
_start_game(custom_edit.text)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[gd_scene load_steps=5 format=3 uid="uid://c36n317rhv8k7"]
|
[gd_scene load_steps=5 format=3 uid="uid://c36n317rhv8k7"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://dyynshvsgnepp" path="res://game/menu/main/seed_selection_menu.gd" id="1_g2smo"]
|
[ext_resource type="Script" uid="uid://dyynshvsgnepp" path="res://game/menu/main/seed_selection_menu.gd" id="1_g2smo"]
|
||||||
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://styles/menu_button.tres" id="2_s4s14"]
|
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://styles/menu_theme.tres" id="2_s4s14"]
|
||||||
|
|
||||||
[sub_resource type="InputEventAction" id="InputEventAction_g2smo"]
|
[sub_resource type="InputEventAction" id="InputEventAction_g2smo"]
|
||||||
action = &"ui_cancel"
|
action = &"ui_cancel"
|
||||||
@@ -33,12 +33,17 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
columns = 2
|
columns = 2
|
||||||
|
|
||||||
[node name="SeedLabel" type="Label" parent="GridContainer"]
|
[node name="RandomEdit" type="LineEdit" parent="GridContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
custom_minimum_size = Vector2(280, 0)
|
custom_minimum_size = Vector2(280, 0)
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
focus_mode = 0
|
||||||
|
mouse_filter = 2
|
||||||
theme = ExtResource("2_s4s14")
|
theme = ExtResource("2_s4s14")
|
||||||
horizontal_alignment = 1
|
placeholder_text = "Enter seed"
|
||||||
|
alignment = 1
|
||||||
|
max_length = 16
|
||||||
|
editable = false
|
||||||
|
|
||||||
[node name="UseRandomButton" type="Button" parent="GridContainer"]
|
[node name="UseRandomButton" type="Button" parent="GridContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
@@ -47,7 +52,7 @@ mouse_filter = 2
|
|||||||
theme = ExtResource("2_s4s14")
|
theme = ExtResource("2_s4s14")
|
||||||
text = "Use random seed"
|
text = "Use random seed"
|
||||||
|
|
||||||
[node name="SeedEdit" type="LineEdit" parent="GridContainer"]
|
[node name="CustomEdit" type="LineEdit" parent="GridContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
custom_minimum_size = Vector2(280, 0)
|
custom_minimum_size = Vector2(280, 0)
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
@@ -76,7 +81,7 @@ text = "Main menu"
|
|||||||
|
|
||||||
[connection signal="visibility_changed" from="." to="." method="_on_visibility_changed"]
|
[connection signal="visibility_changed" from="." to="." method="_on_visibility_changed"]
|
||||||
[connection signal="pressed" from="GridContainer/UseRandomButton" to="." method="_on_use_random_button_pressed"]
|
[connection signal="pressed" from="GridContainer/UseRandomButton" to="." method="_on_use_random_button_pressed"]
|
||||||
[connection signal="text_changed" from="GridContainer/SeedEdit" to="." method="_on_seed_edit_text_changed"]
|
[connection signal="text_changed" from="GridContainer/CustomEdit" to="." method="_on_seed_edit_text_changed"]
|
||||||
[connection signal="text_submitted" from="GridContainer/SeedEdit" to="." method="_on_seed_edit_text_submitted"]
|
[connection signal="text_submitted" from="GridContainer/CustomEdit" to="." method="_on_seed_edit_text_submitted"]
|
||||||
[connection signal="pressed" from="GridContainer/UseCustomButton" to="." method="_on_use_custom_button_pressed"]
|
[connection signal="pressed" from="GridContainer/UseCustomButton" to="." method="_on_use_custom_button_pressed"]
|
||||||
[connection signal="pressed" from="GridContainer/BackButton" to="." method="_on_back_button_pressed"]
|
[connection signal="pressed" from="GridContainer/BackButton" to="." method="_on_back_button_pressed"]
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
extends Control
|
extends Control
|
||||||
|
|
||||||
|
|
||||||
@onready var main_menu : Control = $MainMenu
|
@onready var main_menu : Control = $%MainMenu
|
||||||
@onready var options : Control = $Options
|
@onready var options : Control = $%Options
|
||||||
@onready var credits : Control = $Credits
|
@onready var credits : Control = $%Credits
|
||||||
@onready var seed_selection : Control = $SeedSelection
|
@onready var seed_selection : Control = $%SeedSelection
|
||||||
|
|
||||||
|
|
||||||
func _ready() -> void:
|
func _ready() -> void:
|
||||||
@@ -37,12 +37,12 @@ func _on_main_menu_show_options() -> void:
|
|||||||
_show_menu(options)
|
_show_menu(options)
|
||||||
|
|
||||||
|
|
||||||
func _on_options_show_credits() -> void:
|
func _on_main_menu_show_credits() -> void:
|
||||||
_show_menu(credits)
|
_show_menu(credits)
|
||||||
|
|
||||||
|
|
||||||
func _on_credits_back() -> void:
|
func _on_credits_back() -> void:
|
||||||
_show_menu(options)
|
_show_menu(main_menu)
|
||||||
|
|
||||||
|
|
||||||
func _show_main_menu() -> void:
|
func _show_main_menu() -> void:
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
[gd_scene load_steps=7 format=3 uid="uid://2oavbr7oaihg"]
|
[gd_scene load_steps=8 format=3 uid="uid://2oavbr7oaihg"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://bqnepsuk13qo8" path="res://game/menu/main/title_screen.gd" id="1_lxdol"]
|
[ext_resource type="Script" uid="uid://bqnepsuk13qo8" path="res://game/menu/main/title_screen.gd" id="1_lxdol"]
|
||||||
|
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://styles/menu_theme.tres" id="2_4xt7k"]
|
||||||
[ext_resource type="PackedScene" uid="uid://bxlccevt52y70" path="res://game/menu/main/main_menu.tscn" id="2_o0rbc"]
|
[ext_resource type="PackedScene" uid="uid://bxlccevt52y70" path="res://game/menu/main/main_menu.tscn" id="2_o0rbc"]
|
||||||
[ext_resource type="PackedScene" uid="uid://btr60idiit4y7" path="res://game/menu/common/options.tscn" id="3_88gnj"]
|
[ext_resource type="PackedScene" uid="uid://btr60idiit4y7" path="res://game/menu/common/options.tscn" id="3_88gnj"]
|
||||||
[ext_resource type="PackedScene" uid="uid://c3q3g2647qc27" path="res://game/menu/common/credits.tscn" id="4_w1y3c"]
|
[ext_resource type="PackedScene" uid="uid://c3q3g2647qc27" path="res://game/menu/common/credits.tscn" id="4_w1y3c"]
|
||||||
@@ -9,45 +10,47 @@
|
|||||||
|
|
||||||
[node name="TitleScreen" type="Control"]
|
[node name="TitleScreen" type="Control"]
|
||||||
layout_mode = 3
|
layout_mode = 3
|
||||||
anchors_preset = 0
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
script = ExtResource("1_lxdol")
|
script = ExtResource("1_lxdol")
|
||||||
|
|
||||||
[node name="MainMenu" parent="." instance=ExtResource("2_o0rbc")]
|
[node name="MarginContainer" type="MarginContainer" parent="."]
|
||||||
layout_mode = 0
|
|
||||||
|
|
||||||
[node name="Options" parent="." instance=ExtResource("3_88gnj")]
|
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 8
|
anchors_preset = 15
|
||||||
anchor_left = 0.5
|
anchor_right = 1.0
|
||||||
anchor_top = 0.5
|
anchor_bottom = 1.0
|
||||||
anchor_right = 0.5
|
grow_horizontal = 2
|
||||||
anchor_bottom = 0.5
|
grow_vertical = 2
|
||||||
offset_right = 640.0
|
theme = ExtResource("2_4xt7k")
|
||||||
offset_bottom = 360.0
|
|
||||||
|
|
||||||
[node name="Credits" parent="." instance=ExtResource("4_w1y3c")]
|
[node name="MainMenu" parent="MarginContainer" instance=ExtResource("2_o0rbc")]
|
||||||
layout_mode = 0
|
unique_name_in_owner = true
|
||||||
|
layout_mode = 2
|
||||||
|
size_flags_horizontal = 4
|
||||||
|
|
||||||
[node name="SeedSelection" parent="." instance=ExtResource("5_w1y3c")]
|
[node name="Options" parent="MarginContainer" instance=ExtResource("3_88gnj")]
|
||||||
layout_mode = 0
|
unique_name_in_owner = true
|
||||||
anchors_preset = 0
|
layout_mode = 2
|
||||||
anchor_right = 0.0
|
|
||||||
anchor_bottom = 0.0
|
[node name="Credits" parent="MarginContainer" instance=ExtResource("4_w1y3c")]
|
||||||
offset_left = 320.0
|
unique_name_in_owner = true
|
||||||
offset_top = 190.0
|
layout_mode = 2
|
||||||
offset_right = 320.0
|
|
||||||
offset_bottom = 190.0
|
[node name="SeedSelection" parent="MarginContainer" instance=ExtResource("5_w1y3c")]
|
||||||
grow_horizontal = 1
|
unique_name_in_owner = true
|
||||||
grow_vertical = 1
|
layout_mode = 2
|
||||||
size_flags_horizontal = 4
|
size_flags_horizontal = 4
|
||||||
|
|
||||||
[node name="Background" parent="." instance=ExtResource("5_88gnj")]
|
[node name="Background" parent="." instance=ExtResource("5_88gnj")]
|
||||||
|
|
||||||
[connection signal="continue_game" from="MainMenu" to="." method="_on_main_menu_continue_game"]
|
[connection signal="continue_game" from="MarginContainer/MainMenu" to="." method="_on_main_menu_continue_game"]
|
||||||
[connection signal="new_game" from="MainMenu" to="." method="_on_main_menu_new_game"]
|
[connection signal="new_game" from="MarginContainer/MainMenu" to="." method="_on_main_menu_new_game"]
|
||||||
[connection signal="quit_game" from="MainMenu" to="." method="_on_main_menu_quit_game"]
|
[connection signal="quit_game" from="MarginContainer/MainMenu" to="." method="_on_main_menu_quit_game"]
|
||||||
[connection signal="show_options" from="MainMenu" to="." method="_on_main_menu_show_options"]
|
[connection signal="show_credits" from="MarginContainer/MainMenu" to="." method="_on_main_menu_show_credits"]
|
||||||
[connection signal="back" from="Options" to="." method="_show_main_menu"]
|
[connection signal="show_options" from="MarginContainer/MainMenu" to="." method="_on_main_menu_show_options"]
|
||||||
[connection signal="show_credits" from="Options" to="." method="_on_options_show_credits"]
|
[connection signal="back" from="MarginContainer/Options" to="." method="_show_main_menu"]
|
||||||
[connection signal="back" from="Credits" to="." method="_on_credits_back"]
|
[connection signal="back" from="MarginContainer/Credits" to="." method="_on_credits_back"]
|
||||||
[connection signal="back" from="SeedSelection" to="." method="_show_main_menu"]
|
[connection signal="back" from="MarginContainer/SeedSelection" to="." method="_show_main_menu"]
|
||||||
|
|||||||
Binary file not shown.
@@ -1,111 +0,0 @@
|
|||||||
[gd_resource type="Theme" load_steps=11 format=3 uid="uid://dtnd3tqllufey"]
|
|
||||||
|
|
||||||
[ext_resource type="FontFile" uid="uid://bw1vqxkgbaekh" path="res://images/fonts/font16.png" id="1_5mv23"]
|
|
||||||
[ext_resource type="Texture2D" uid="uid://dhmquapac0fco" path="res://images/menu/menu_buttons.png" id="2_qxsgh"]
|
|
||||||
|
|
||||||
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_6mwof"]
|
|
||||||
content_margin_left = 10.0
|
|
||||||
content_margin_top = 16.0
|
|
||||||
content_margin_right = 10.0
|
|
||||||
content_margin_bottom = 12.0
|
|
||||||
texture = ExtResource("2_qxsgh")
|
|
||||||
texture_margin_left = 8.0
|
|
||||||
texture_margin_top = 12.0
|
|
||||||
texture_margin_right = 8.0
|
|
||||||
texture_margin_bottom = 12.0
|
|
||||||
region_rect = Rect2(0, 64, 32, 32)
|
|
||||||
|
|
||||||
[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_qxsgh"]
|
|
||||||
load_path = "res://.godot/imported/menu_buttons.png-57be3916c3bbcc2912e1eb0a800254c2.ctex"
|
|
||||||
|
|
||||||
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_wdls2"]
|
|
||||||
content_margin_left = 10.0
|
|
||||||
content_margin_top = 14.0
|
|
||||||
content_margin_right = 10.0
|
|
||||||
content_margin_bottom = 14.0
|
|
||||||
texture = SubResource("CompressedTexture2D_qxsgh")
|
|
||||||
texture_margin_left = 8.0
|
|
||||||
texture_margin_top = 12.0
|
|
||||||
texture_margin_right = 8.0
|
|
||||||
texture_margin_bottom = 12.0
|
|
||||||
region_rect = Rect2(32, 64, 32, 32)
|
|
||||||
|
|
||||||
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_uvn35"]
|
|
||||||
content_margin_left = 10.0
|
|
||||||
content_margin_top = 10.0
|
|
||||||
content_margin_right = 10.0
|
|
||||||
content_margin_bottom = 18.0
|
|
||||||
texture = ExtResource("2_qxsgh")
|
|
||||||
texture_margin_left = 8.0
|
|
||||||
texture_margin_top = 12.0
|
|
||||||
texture_margin_right = 8.0
|
|
||||||
texture_margin_bottom = 12.0
|
|
||||||
region_rect = Rect2(32, 0, 32, 32)
|
|
||||||
|
|
||||||
[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_5mv23"]
|
|
||||||
load_path = "res://.godot/imported/menu_buttons.png-57be3916c3bbcc2912e1eb0a800254c2.ctex"
|
|
||||||
|
|
||||||
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_qxsgh"]
|
|
||||||
content_margin_left = 10.0
|
|
||||||
content_margin_top = 15.0
|
|
||||||
content_margin_right = 10.0
|
|
||||||
content_margin_bottom = 13.0
|
|
||||||
texture = SubResource("CompressedTexture2D_5mv23")
|
|
||||||
texture_margin_left = 8.0
|
|
||||||
texture_margin_top = 12.0
|
|
||||||
texture_margin_right = 8.0
|
|
||||||
texture_margin_bottom = 12.0
|
|
||||||
region_rect = Rect2(32, 32, 32, 32)
|
|
||||||
|
|
||||||
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_tkt1b"]
|
|
||||||
content_margin_left = 10.0
|
|
||||||
content_margin_top = 10.0
|
|
||||||
content_margin_right = 10.0
|
|
||||||
content_margin_bottom = 18.0
|
|
||||||
texture = ExtResource("2_qxsgh")
|
|
||||||
texture_margin_left = 8.0
|
|
||||||
texture_margin_top = 12.0
|
|
||||||
texture_margin_right = 8.0
|
|
||||||
texture_margin_bottom = 12.0
|
|
||||||
region_rect = Rect2(0, 0, 32, 32)
|
|
||||||
|
|
||||||
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_6cpu6"]
|
|
||||||
content_margin_left = 10.0
|
|
||||||
content_margin_top = 15.0
|
|
||||||
content_margin_right = 10.0
|
|
||||||
content_margin_bottom = 13.0
|
|
||||||
texture = ExtResource("2_qxsgh")
|
|
||||||
texture_margin_left = 8.0
|
|
||||||
texture_margin_top = 12.0
|
|
||||||
texture_margin_right = 8.0
|
|
||||||
texture_margin_bottom = 12.0
|
|
||||||
region_rect = Rect2(0, 32, 32, 32)
|
|
||||||
|
|
||||||
[resource]
|
|
||||||
default_font = ExtResource("1_5mv23")
|
|
||||||
Button/colors/font_color = Color(0.14509805, 0.44313726, 0.4745098, 1)
|
|
||||||
Button/colors/font_disabled_color = Color(0.16078432, 0.21176471, 0.43529412, 1)
|
|
||||||
Button/colors/font_focus_color = Color(0.95686275, 0.95686275, 0.95686275, 1)
|
|
||||||
Button/colors/font_hover_color = Color(0.21960784, 0.7176471, 0.39215687, 1)
|
|
||||||
Button/colors/font_hover_pressed_color = Color(0.21960784, 0.7176471, 0.39215687, 1)
|
|
||||||
Button/colors/font_outline_color = Color(0, 0, 0, 1)
|
|
||||||
Button/colors/font_pressed_color = Color(0.14509805, 0.44313726, 0.4745098, 1)
|
|
||||||
Button/colors/icon_disabled_color = Color(1, 1, 1, 1)
|
|
||||||
Button/colors/icon_focus_color = Color(1, 1, 1, 1)
|
|
||||||
Button/colors/icon_hover_color = Color(1, 1, 1, 1)
|
|
||||||
Button/colors/icon_hover_pressed_color = Color(1, 1, 1, 1)
|
|
||||||
Button/colors/icon_normal_color = Color(1, 1, 1, 1)
|
|
||||||
Button/colors/icon_pressed_color = Color(1, 1, 1, 1)
|
|
||||||
Button/constants/align_to_largest_stylebox = 0
|
|
||||||
Button/constants/h_separation = 4
|
|
||||||
Button/constants/icon_max_width = 0
|
|
||||||
Button/constants/outline_size = 0
|
|
||||||
Button/font_sizes/font_size = 16
|
|
||||||
Button/fonts/font = ExtResource("1_5mv23")
|
|
||||||
Button/styles/disabled = SubResource("StyleBoxTexture_6mwof")
|
|
||||||
Button/styles/focus = SubResource("StyleBoxTexture_wdls2")
|
|
||||||
Button/styles/hover = SubResource("StyleBoxTexture_uvn35")
|
|
||||||
Button/styles/hover_pressed = SubResource("StyleBoxTexture_qxsgh")
|
|
||||||
Button/styles/normal = SubResource("StyleBoxTexture_tkt1b")
|
|
||||||
Button/styles/pressed = SubResource("StyleBoxTexture_6cpu6")
|
|
||||||
Label/colors/font_color = Color(0.95686275, 0.95686275, 0.95686275, 1)
|
|
||||||
@@ -0,0 +1,296 @@
|
|||||||
|
[gd_resource type="Theme" load_steps=33 format=3 uid="uid://dtnd3tqllufey"]
|
||||||
|
|
||||||
|
[ext_resource type="FontFile" uid="uid://bw1vqxkgbaekh" path="res://images/fonts/font16.png" id="1_2vd5j"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://dhmquapac0fco" path="res://images/menu/menu_buttons.png" id="2_6ro36"]
|
||||||
|
|
||||||
|
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_6mwof"]
|
||||||
|
content_margin_left = 10.0
|
||||||
|
content_margin_top = 16.0
|
||||||
|
content_margin_right = 10.0
|
||||||
|
content_margin_bottom = 12.0
|
||||||
|
texture = ExtResource("2_6ro36")
|
||||||
|
texture_margin_left = 8.0
|
||||||
|
texture_margin_top = 12.0
|
||||||
|
texture_margin_right = 8.0
|
||||||
|
texture_margin_bottom = 12.0
|
||||||
|
region_rect = Rect2(0, 64, 32, 32)
|
||||||
|
|
||||||
|
[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_qxsgh"]
|
||||||
|
load_path = "res://.godot/imported/menu_buttons.png-57be3916c3bbcc2912e1eb0a800254c2.ctex"
|
||||||
|
|
||||||
|
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_wdls2"]
|
||||||
|
content_margin_left = 10.0
|
||||||
|
content_margin_top = 14.0
|
||||||
|
content_margin_right = 10.0
|
||||||
|
content_margin_bottom = 14.0
|
||||||
|
texture = SubResource("CompressedTexture2D_qxsgh")
|
||||||
|
texture_margin_left = 8.0
|
||||||
|
texture_margin_top = 12.0
|
||||||
|
texture_margin_right = 8.0
|
||||||
|
texture_margin_bottom = 12.0
|
||||||
|
region_rect = Rect2(32, 64, 32, 32)
|
||||||
|
|
||||||
|
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_uvn35"]
|
||||||
|
content_margin_left = 10.0
|
||||||
|
content_margin_top = 10.0
|
||||||
|
content_margin_right = 10.0
|
||||||
|
content_margin_bottom = 18.0
|
||||||
|
texture = ExtResource("2_6ro36")
|
||||||
|
texture_margin_left = 8.0
|
||||||
|
texture_margin_top = 12.0
|
||||||
|
texture_margin_right = 8.0
|
||||||
|
texture_margin_bottom = 12.0
|
||||||
|
region_rect = Rect2(32, 0, 32, 32)
|
||||||
|
|
||||||
|
[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_5mv23"]
|
||||||
|
load_path = "res://.godot/imported/menu_buttons.png-57be3916c3bbcc2912e1eb0a800254c2.ctex"
|
||||||
|
|
||||||
|
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_qxsgh"]
|
||||||
|
content_margin_left = 10.0
|
||||||
|
content_margin_top = 15.0
|
||||||
|
content_margin_right = 10.0
|
||||||
|
content_margin_bottom = 13.0
|
||||||
|
texture = SubResource("CompressedTexture2D_5mv23")
|
||||||
|
texture_margin_left = 8.0
|
||||||
|
texture_margin_top = 12.0
|
||||||
|
texture_margin_right = 8.0
|
||||||
|
texture_margin_bottom = 12.0
|
||||||
|
region_rect = Rect2(32, 32, 32, 32)
|
||||||
|
|
||||||
|
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_tkt1b"]
|
||||||
|
content_margin_left = 10.0
|
||||||
|
content_margin_top = 10.0
|
||||||
|
content_margin_right = 10.0
|
||||||
|
content_margin_bottom = 18.0
|
||||||
|
texture = ExtResource("2_6ro36")
|
||||||
|
texture_margin_left = 8.0
|
||||||
|
texture_margin_top = 12.0
|
||||||
|
texture_margin_right = 8.0
|
||||||
|
texture_margin_bottom = 12.0
|
||||||
|
region_rect = Rect2(0, 0, 32, 32)
|
||||||
|
|
||||||
|
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_6cpu6"]
|
||||||
|
content_margin_left = 10.0
|
||||||
|
content_margin_top = 15.0
|
||||||
|
content_margin_right = 10.0
|
||||||
|
content_margin_bottom = 13.0
|
||||||
|
texture = ExtResource("2_6ro36")
|
||||||
|
texture_margin_left = 8.0
|
||||||
|
texture_margin_top = 12.0
|
||||||
|
texture_margin_right = 8.0
|
||||||
|
texture_margin_bottom = 12.0
|
||||||
|
region_rect = Rect2(0, 32, 32, 32)
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_muh7f"]
|
||||||
|
atlas = ExtResource("2_6ro36")
|
||||||
|
region = Rect2(224, 0, 16, 16)
|
||||||
|
|
||||||
|
[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_ph311"]
|
||||||
|
load_path = "res://.godot/imported/menu_buttons.png-57be3916c3bbcc2912e1eb0a800254c2.ctex"
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_rqpqp"]
|
||||||
|
atlas = SubResource("CompressedTexture2D_ph311")
|
||||||
|
region = Rect2(224, 16, 16, 16)
|
||||||
|
|
||||||
|
[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_l00f8"]
|
||||||
|
load_path = "res://.godot/imported/menu_buttons.png-57be3916c3bbcc2912e1eb0a800254c2.ctex"
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_afs5s"]
|
||||||
|
atlas = SubResource("CompressedTexture2D_l00f8")
|
||||||
|
region = Rect2(224, 32, 16, 16)
|
||||||
|
|
||||||
|
[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_t36c3"]
|
||||||
|
load_path = "res://.godot/imported/menu_buttons.png-57be3916c3bbcc2912e1eb0a800254c2.ctex"
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_hvlke"]
|
||||||
|
atlas = SubResource("CompressedTexture2D_t36c3")
|
||||||
|
region = Rect2(224, 48, 16, 16)
|
||||||
|
|
||||||
|
[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_6ro36"]
|
||||||
|
load_path = "res://.godot/imported/menu_buttons.png-57be3916c3bbcc2912e1eb0a800254c2.ctex"
|
||||||
|
|
||||||
|
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_ph311"]
|
||||||
|
content_margin_left = 10.0
|
||||||
|
content_margin_top = 16.0
|
||||||
|
content_margin_right = 10.0
|
||||||
|
content_margin_bottom = 12.0
|
||||||
|
texture = SubResource("CompressedTexture2D_6ro36")
|
||||||
|
texture_margin_left = 8.0
|
||||||
|
texture_margin_top = 12.0
|
||||||
|
texture_margin_right = 40.0
|
||||||
|
texture_margin_bottom = 12.0
|
||||||
|
region_rect = Rect2(96, 64, 64, 32)
|
||||||
|
|
||||||
|
[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_whlbl"]
|
||||||
|
load_path = "res://.godot/imported/menu_buttons.png-57be3916c3bbcc2912e1eb0a800254c2.ctex"
|
||||||
|
|
||||||
|
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_l00f8"]
|
||||||
|
content_margin_left = 10.0
|
||||||
|
content_margin_top = 14.0
|
||||||
|
content_margin_right = 10.0
|
||||||
|
content_margin_bottom = 14.0
|
||||||
|
texture = SubResource("CompressedTexture2D_whlbl")
|
||||||
|
texture_margin_left = 8.0
|
||||||
|
texture_margin_top = 12.0
|
||||||
|
texture_margin_right = 40.0
|
||||||
|
texture_margin_bottom = 12.0
|
||||||
|
region_rect = Rect2(160, 64, 64, 32)
|
||||||
|
|
||||||
|
[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_afs5s"]
|
||||||
|
load_path = "res://.godot/imported/menu_buttons.png-57be3916c3bbcc2912e1eb0a800254c2.ctex"
|
||||||
|
|
||||||
|
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_t36c3"]
|
||||||
|
content_margin_left = 10.0
|
||||||
|
content_margin_top = 10.0
|
||||||
|
content_margin_right = 10.0
|
||||||
|
content_margin_bottom = 18.0
|
||||||
|
texture = SubResource("CompressedTexture2D_afs5s")
|
||||||
|
texture_margin_left = 8.0
|
||||||
|
texture_margin_top = 12.0
|
||||||
|
texture_margin_right = 40.0
|
||||||
|
texture_margin_bottom = 12.0
|
||||||
|
region_rect = Rect2(160, 0, 64, 32)
|
||||||
|
|
||||||
|
[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_abqku"]
|
||||||
|
load_path = "res://.godot/imported/menu_buttons.png-57be3916c3bbcc2912e1eb0a800254c2.ctex"
|
||||||
|
|
||||||
|
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_idplf"]
|
||||||
|
content_margin_left = 10.0
|
||||||
|
content_margin_top = 15.0
|
||||||
|
content_margin_right = 10.0
|
||||||
|
content_margin_bottom = 13.0
|
||||||
|
texture = SubResource("CompressedTexture2D_abqku")
|
||||||
|
texture_margin_left = 8.0
|
||||||
|
texture_margin_top = 12.0
|
||||||
|
texture_margin_right = 40.0
|
||||||
|
texture_margin_bottom = 12.0
|
||||||
|
region_rect = Rect2(160, 32, 64, 32)
|
||||||
|
|
||||||
|
[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_2vd5j"]
|
||||||
|
load_path = "res://.godot/imported/menu_buttons.png-57be3916c3bbcc2912e1eb0a800254c2.ctex"
|
||||||
|
|
||||||
|
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_l7q8y"]
|
||||||
|
content_margin_left = 10.0
|
||||||
|
content_margin_top = 10.0
|
||||||
|
content_margin_right = 10.0
|
||||||
|
content_margin_bottom = 18.0
|
||||||
|
texture = SubResource("CompressedTexture2D_2vd5j")
|
||||||
|
texture_margin_left = 8.0
|
||||||
|
texture_margin_top = 12.0
|
||||||
|
texture_margin_right = 40.0
|
||||||
|
texture_margin_bottom = 12.0
|
||||||
|
region_rect = Rect2(96, 0, 64, 32)
|
||||||
|
|
||||||
|
[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_0svg6"]
|
||||||
|
load_path = "res://.godot/imported/menu_buttons.png-57be3916c3bbcc2912e1eb0a800254c2.ctex"
|
||||||
|
|
||||||
|
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_bullh"]
|
||||||
|
content_margin_left = 10.0
|
||||||
|
content_margin_top = 15.0
|
||||||
|
content_margin_right = 10.0
|
||||||
|
content_margin_bottom = 13.0
|
||||||
|
texture = SubResource("CompressedTexture2D_0svg6")
|
||||||
|
texture_margin_left = 8.0
|
||||||
|
texture_margin_top = 12.0
|
||||||
|
texture_margin_right = 40.0
|
||||||
|
texture_margin_bottom = 12.0
|
||||||
|
region_rect = Rect2(96, 32, 64, 32)
|
||||||
|
|
||||||
|
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_6ro36"]
|
||||||
|
content_margin_left = 10.0
|
||||||
|
content_margin_top = 16.0
|
||||||
|
content_margin_right = 10.0
|
||||||
|
content_margin_bottom = 12.0
|
||||||
|
texture = ExtResource("2_6ro36")
|
||||||
|
texture_margin_left = 8.0
|
||||||
|
texture_margin_top = 12.0
|
||||||
|
texture_margin_right = 8.0
|
||||||
|
texture_margin_bottom = 12.0
|
||||||
|
region_rect = Rect2(64, 32, 32, 32)
|
||||||
|
|
||||||
|
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_muh7f"]
|
||||||
|
content_margin_left = 10.0
|
||||||
|
content_margin_top = 16.0
|
||||||
|
content_margin_right = 10.0
|
||||||
|
content_margin_bottom = 12.0
|
||||||
|
texture = ExtResource("2_6ro36")
|
||||||
|
texture_margin_left = 8.0
|
||||||
|
texture_margin_top = 12.0
|
||||||
|
texture_margin_right = 8.0
|
||||||
|
texture_margin_bottom = 12.0
|
||||||
|
region_rect = Rect2(64, 0, 32, 32)
|
||||||
|
|
||||||
|
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_rqpqp"]
|
||||||
|
content_margin_left = 10.0
|
||||||
|
content_margin_top = 16.0
|
||||||
|
content_margin_right = 10.0
|
||||||
|
content_margin_bottom = 12.0
|
||||||
|
texture = ExtResource("2_6ro36")
|
||||||
|
texture_margin_left = 8.0
|
||||||
|
texture_margin_top = 12.0
|
||||||
|
texture_margin_right = 8.0
|
||||||
|
texture_margin_bottom = 12.0
|
||||||
|
region_rect = Rect2(64, 64, 32, 32)
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
default_font = ExtResource("1_2vd5j")
|
||||||
|
Button/colors/font_color = Color(0.14509805, 0.44313726, 0.4745098, 1)
|
||||||
|
Button/colors/font_disabled_color = Color(0.16078432, 0.21176471, 0.43529412, 1)
|
||||||
|
Button/colors/font_focus_color = Color(0.95686275, 0.95686275, 0.95686275, 1)
|
||||||
|
Button/colors/font_hover_color = Color(0.21960784, 0.7176471, 0.39215687, 1)
|
||||||
|
Button/colors/font_hover_pressed_color = Color(0.21960784, 0.7176471, 0.39215687, 1)
|
||||||
|
Button/colors/font_outline_color = Color(0, 0, 0, 1)
|
||||||
|
Button/colors/font_pressed_color = Color(0.14509805, 0.44313726, 0.4745098, 1)
|
||||||
|
Button/colors/icon_disabled_color = Color(1, 1, 1, 1)
|
||||||
|
Button/colors/icon_focus_color = Color(1, 1, 1, 1)
|
||||||
|
Button/colors/icon_hover_color = Color(1, 1, 1, 1)
|
||||||
|
Button/colors/icon_hover_pressed_color = Color(1, 1, 1, 1)
|
||||||
|
Button/colors/icon_normal_color = Color(1, 1, 1, 1)
|
||||||
|
Button/colors/icon_pressed_color = Color(1, 1, 1, 1)
|
||||||
|
Button/constants/align_to_largest_stylebox = 0
|
||||||
|
Button/constants/h_separation = 4
|
||||||
|
Button/constants/icon_max_width = 0
|
||||||
|
Button/constants/outline_size = 0
|
||||||
|
Button/font_sizes/font_size = 16
|
||||||
|
Button/fonts/font = ExtResource("1_2vd5j")
|
||||||
|
Button/styles/disabled = SubResource("StyleBoxTexture_6mwof")
|
||||||
|
Button/styles/disabled_mirrored = SubResource("StyleBoxTexture_6mwof")
|
||||||
|
Button/styles/focus = SubResource("StyleBoxTexture_wdls2")
|
||||||
|
Button/styles/hover = SubResource("StyleBoxTexture_uvn35")
|
||||||
|
Button/styles/hover_mirrored = SubResource("StyleBoxTexture_uvn35")
|
||||||
|
Button/styles/hover_pressed = SubResource("StyleBoxTexture_qxsgh")
|
||||||
|
Button/styles/hover_pressed_mirrored = SubResource("StyleBoxTexture_qxsgh")
|
||||||
|
Button/styles/normal = SubResource("StyleBoxTexture_tkt1b")
|
||||||
|
Button/styles/normal_mirrored = SubResource("StyleBoxTexture_tkt1b")
|
||||||
|
Button/styles/pressed = SubResource("StyleBoxTexture_6cpu6")
|
||||||
|
Button/styles/pressed_mirrored = SubResource("StyleBoxTexture_6cpu6")
|
||||||
|
CheckButton/icons/checked = SubResource("AtlasTexture_muh7f")
|
||||||
|
CheckButton/icons/checked_disabled = SubResource("AtlasTexture_rqpqp")
|
||||||
|
CheckButton/icons/checked_disabled_mirrored = SubResource("AtlasTexture_rqpqp")
|
||||||
|
CheckButton/icons/checked_mirrored = SubResource("AtlasTexture_muh7f")
|
||||||
|
CheckButton/icons/unchecked = SubResource("AtlasTexture_afs5s")
|
||||||
|
CheckButton/icons/unchecked_disabled = SubResource("AtlasTexture_hvlke")
|
||||||
|
CheckButton/icons/unchecked_disabled_mirrored = SubResource("AtlasTexture_hvlke")
|
||||||
|
CheckButton/icons/unchecked_mirrored = SubResource("AtlasTexture_afs5s")
|
||||||
|
CheckButton/styles/disabled = SubResource("StyleBoxTexture_ph311")
|
||||||
|
CheckButton/styles/disabled_mirrored = SubResource("StyleBoxTexture_ph311")
|
||||||
|
CheckButton/styles/focus = SubResource("StyleBoxTexture_l00f8")
|
||||||
|
CheckButton/styles/hover = SubResource("StyleBoxTexture_t36c3")
|
||||||
|
CheckButton/styles/hover_mirrored = SubResource("StyleBoxTexture_t36c3")
|
||||||
|
CheckButton/styles/hover_pressed = SubResource("StyleBoxTexture_idplf")
|
||||||
|
CheckButton/styles/hover_pressed_mirrored = SubResource("StyleBoxTexture_idplf")
|
||||||
|
CheckButton/styles/normal = SubResource("StyleBoxTexture_l7q8y")
|
||||||
|
CheckButton/styles/normal_mirrored = SubResource("StyleBoxTexture_l7q8y")
|
||||||
|
CheckButton/styles/pressed = SubResource("StyleBoxTexture_bullh")
|
||||||
|
CheckButton/styles/pressed_mirrored = SubResource("StyleBoxTexture_bullh")
|
||||||
|
Label/colors/font_color = Color(0.95686275, 0.95686275, 0.95686275, 1)
|
||||||
|
LineEdit/colors/caret_color = Color(0.2, 0.23529412, 0.34117648, 1)
|
||||||
|
LineEdit/colors/font_color = Color(0.14509805, 0.44313726, 0.4745098, 1)
|
||||||
|
LineEdit/colors/font_placeholder_color = Color(0.2, 0.23529412, 0.34117648, 1)
|
||||||
|
LineEdit/styles/focus = SubResource("StyleBoxTexture_6ro36")
|
||||||
|
LineEdit/styles/normal = SubResource("StyleBoxTexture_muh7f")
|
||||||
|
LineEdit/styles/read_only = SubResource("StyleBoxTexture_rqpqp")
|
||||||
|
MarginContainer/constants/margin_bottom = 10
|
||||||
|
MarginContainer/constants/margin_left = 10
|
||||||
|
MarginContainer/constants/margin_right = 10
|
||||||
|
MarginContainer/constants/margin_top = 10
|
||||||
Reference in New Issue
Block a user