Updated menu font
This commit is contained in:
+35
-951
File diff suppressed because one or more lines are too long
BIN
Binary file not shown.
BIN
Binary file not shown.
@@ -0,0 +1,25 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="font_data_image"
|
||||||
|
type="FontFile"
|
||||||
|
uid="uid://bw1vqxkgbaekh"
|
||||||
|
path="res://.godot/imported/menu_font.png-62b7b3d0ab3b90fe7d188ac03ff2af04.fontdata"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://images/menu_font.png"
|
||||||
|
dest_files=["res://.godot/imported/menu_font.png-62b7b3d0ab3b90fe7d188ac03ff2af04.fontdata"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
character_ranges=PackedStringArray("\' \'-\'~\'")
|
||||||
|
kerning_pairs=PackedStringArray()
|
||||||
|
columns=94
|
||||||
|
rows=1
|
||||||
|
image_margin=Rect2i(0, 0, 0, 0)
|
||||||
|
character_margin=Rect2i(0, 0, 0, 0)
|
||||||
|
ascent=0
|
||||||
|
descent=0
|
||||||
|
fallbacks=[]
|
||||||
|
compress=true
|
||||||
|
scaling_mode=2
|
||||||
+3
-1
@@ -1,6 +1,7 @@
|
|||||||
[gd_scene load_steps=4 format=3 uid="uid://c3q3g2647qc27"]
|
[gd_scene load_steps=5 format=3 uid="uid://c3q3g2647qc27"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://dclkpithyykju" path="res://menu/credits.gd" id="1_wp78b"]
|
[ext_resource type="Script" uid="uid://dclkpithyykju" path="res://menu/credits.gd" id="1_wp78b"]
|
||||||
|
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://images/menu_button.tres" id="2_nidem"]
|
||||||
|
|
||||||
[sub_resource type="InputEventAction" id="InputEventAction_wp78b"]
|
[sub_resource type="InputEventAction" id="InputEventAction_wp78b"]
|
||||||
action = &"ui_cancel"
|
action = &"ui_cancel"
|
||||||
@@ -41,6 +42,7 @@ alignment = 2
|
|||||||
[node name="MainMenuButton" type="Button" parent="VBoxContainer/HBoxContainer"]
|
[node name="MainMenuButton" type="Button" parent="VBoxContainer/HBoxContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
theme = ExtResource("2_nidem")
|
||||||
shortcut = SubResource("Shortcut_nidem")
|
shortcut = SubResource("Shortcut_nidem")
|
||||||
text = "Main Menu"
|
text = "Main Menu"
|
||||||
|
|
||||||
|
|||||||
+10
-5
@@ -1,6 +1,7 @@
|
|||||||
[gd_scene load_steps=2 format=3 uid="uid://bxlccevt52y70"]
|
[gd_scene load_steps=3 format=3 uid="uid://bxlccevt52y70"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://dixdfabe2vfsj" path="res://menu/main_menu.gd" id="1_chmv6"]
|
[ext_resource type="Script" uid="uid://dixdfabe2vfsj" path="res://menu/main_menu.gd" id="1_chmv6"]
|
||||||
|
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://images/menu_button.tres" id="2_f5okj"]
|
||||||
|
|
||||||
[node name="MainMenu" type="Control"]
|
[node name="MainMenu" type="Control"]
|
||||||
layout_mode = 3
|
layout_mode = 3
|
||||||
@@ -18,23 +19,27 @@ offset_bottom = 236.0
|
|||||||
[node name="ContinueButton" type="Button" parent="VBoxContainer"]
|
[node name="ContinueButton" type="Button" parent="VBoxContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
theme = ExtResource("2_f5okj")
|
||||||
disabled = true
|
disabled = true
|
||||||
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
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
text = "Start"
|
theme = ExtResource("2_f5okj")
|
||||||
|
text = "START"
|
||||||
|
|
||||||
[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
|
||||||
text = "Options"
|
theme = ExtResource("2_f5okj")
|
||||||
|
text = "OPTIONS"
|
||||||
|
|
||||||
[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
|
||||||
text = "Quit"
|
theme = ExtResource("2_f5okj")
|
||||||
|
text = "QUIT"
|
||||||
|
|
||||||
[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"]
|
||||||
|
|||||||
+4
-1
@@ -1,6 +1,7 @@
|
|||||||
[gd_scene load_steps=4 format=3 uid="uid://btr60idiit4y7"]
|
[gd_scene load_steps=5 format=3 uid="uid://btr60idiit4y7"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://ceng1u112aqg0" path="res://menu/options.gd" id="1_61pji"]
|
[ext_resource type="Script" uid="uid://ceng1u112aqg0" path="res://menu/options.gd" id="1_61pji"]
|
||||||
|
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://images/menu_button.tres" id="2_1tdpy"]
|
||||||
|
|
||||||
[sub_resource type="InputEventAction" id="InputEventAction_61pji"]
|
[sub_resource type="InputEventAction" id="InputEventAction_61pji"]
|
||||||
action = &"ui_cancel"
|
action = &"ui_cancel"
|
||||||
@@ -65,11 +66,13 @@ alignment = 2
|
|||||||
[node name="CreditsButton" type="Button" parent="VBoxContainer/HBoxContainer"]
|
[node name="CreditsButton" type="Button" parent="VBoxContainer/HBoxContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
theme = ExtResource("2_1tdpy")
|
||||||
text = "Credits"
|
text = "Credits"
|
||||||
|
|
||||||
[node name="BackButton" type="Button" parent="VBoxContainer/HBoxContainer"]
|
[node name="BackButton" type="Button" parent="VBoxContainer/HBoxContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
theme = ExtResource("2_1tdpy")
|
||||||
shortcut = SubResource("Shortcut_1tdpy")
|
shortcut = SubResource("Shortcut_1tdpy")
|
||||||
text = "Back"
|
text = "Back"
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
[gd_scene load_steps=5 format=3 uid="uid://bclo2wl8ibrcg"]
|
[gd_scene load_steps=6 format=3 uid="uid://bclo2wl8ibrcg"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://npqs2m5g5bd6" path="res://menu/pause_menu.gd" id="1_inj1j"]
|
[ext_resource type="Script" uid="uid://npqs2m5g5bd6" path="res://menu/pause_menu.gd" id="1_inj1j"]
|
||||||
|
[ext_resource type="Theme" uid="uid://dtnd3tqllufey" path="res://images/menu_button.tres" id="2_vy7sn"]
|
||||||
|
|
||||||
[sub_resource type="InputEventAction" id="InputEventAction_inj1j"]
|
[sub_resource type="InputEventAction" id="InputEventAction_inj1j"]
|
||||||
action = &"ui_cancel"
|
action = &"ui_cancel"
|
||||||
@@ -28,13 +29,15 @@ offset_bottom = 166.0
|
|||||||
[node name="ContinueButton" type="Button" parent="VBoxContainer"]
|
[node name="ContinueButton" type="Button" parent="VBoxContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
theme = ExtResource("2_vy7sn")
|
||||||
shortcut = SubResource("Shortcut_lgp46")
|
shortcut = SubResource("Shortcut_lgp46")
|
||||||
text = "Continue"
|
text = "CONTINUE"
|
||||||
|
|
||||||
[node name="MainMenuButton" type="Button" parent="VBoxContainer"]
|
[node name="MainMenuButton" type="Button" parent="VBoxContainer"]
|
||||||
unique_name_in_owner = true
|
unique_name_in_owner = true
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
text = "Main Menu"
|
theme = ExtResource("2_vy7sn")
|
||||||
|
text = "MAIN MENU"
|
||||||
|
|
||||||
[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/MainMenuButton" to="." method="_on_main_menu_button_pressed"]
|
[connection signal="pressed" from="VBoxContainer/MainMenuButton" to="." method="_on_main_menu_button_pressed"]
|
||||||
|
|||||||
Reference in New Issue
Block a user