enabled enforced static typing

This commit is contained in:
2024-02-22 06:22:22 +11:00
parent e1a867d2a9
commit a93660f755
1645 changed files with 24730 additions and 2078 deletions

View File

@ -13,6 +13,34 @@ script = ExtResource("1_oxg0p")
[node name="HBoxContainer" type="HBoxContainer" parent="."]
layout_mode = 2
[node name="ColumnLabels" type="HBoxContainer" parent="."]
layout_mode = 2
[node name="Action" type="Label" parent="ColumnLabels"]
layout_mode = 2
size_flags_horizontal = 3
text = "Action"
horizontal_alignment = 1
vertical_alignment = 1
[node name="ButtonLabels" type="HBoxContainer" parent="ColumnLabels"]
layout_mode = 2
size_flags_horizontal = 3
[node name="PrimaryBind" type="Label" parent="ColumnLabels/ButtonLabels"]
layout_mode = 2
size_flags_horizontal = 3
text = "Primary Bind"
horizontal_alignment = 1
vertical_alignment = 1
[node name="SecondaryBind" type="Label" parent="ColumnLabels/ButtonLabels"]
layout_mode = 2
size_flags_horizontal = 3
text = "Secondary Bind"
horizontal_alignment = 1
vertical_alignment = 1
[node name="ScrollContainer" type="ScrollContainer" parent="."]
layout_mode = 2
size_flags_vertical = 3

View File

@ -1,7 +1,8 @@
[gd_scene load_steps=4 format=3 uid="uid://dsydnch32qh2h"]
[gd_scene load_steps=5 format=3 uid="uid://dsydnch32qh2h"]
[ext_resource type="Script" path="res://Scripts/lost_game_screen.gd" id="1_1pne8"]
[ext_resource type="AudioStream" uid="uid://dknygn5eyuhxt" path="res://shot1.wav" id="2_sjvor"]
[ext_resource type="PackedScene" uid="uid://b5hp43bm07b8a" path="res://h_box_container.tscn" id="3_ynscm"]
[sub_resource type="AudioStreamRandomizer" id="AudioStreamRandomizer_ddnd1"]
random_pitch = 1.1
@ -17,6 +18,7 @@ anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_1pne8")
box = ExtResource("3_ynscm")
[node name="ColorRect" type="ColorRect" parent="."]
layout_mode = 1
@ -113,6 +115,19 @@ text = "Quit to main menu"
stream = SubResource("AudioStreamRandomizer_ddnd1")
bus = &"SFX"
[node name="VBoxContainer" type="VBoxContainer" parent="."]
layout_mode = 1
anchors_preset = 7
anchor_left = 0.5
anchor_top = 1.0
anchor_right = 0.5
anchor_bottom = 1.0
offset_left = -20.0
offset_top = -40.0
offset_right = 20.0
grow_horizontal = 2
grow_vertical = 0
[connection signal="mouse_entered" from="HBoxContainer/RestartButton" to="." method="_on_button_mouse_entered"]
[connection signal="pressed" from="HBoxContainer/RestartButton" to="." method="_on_restart_button_pressed"]
[connection signal="mouse_entered" from="HBoxContainer/QuitButton" to="." method="_on_button_mouse_entered"]

View File

@ -1,7 +1,8 @@
[gd_scene load_steps=4 format=3 uid="uid://ce0m8vbjbng6o"]
[gd_scene load_steps=5 format=3 uid="uid://ce0m8vbjbng6o"]
[ext_resource type="Script" path="res://Scripts/won_game_screen.gd" id="1_oa7nq"]
[ext_resource type="AudioStream" uid="uid://dknygn5eyuhxt" path="res://shot1.wav" id="2_553mv"]
[ext_resource type="PackedScene" uid="uid://b5hp43bm07b8a" path="res://h_box_container.tscn" id="2_xm8em"]
[sub_resource type="AudioStreamRandomizer" id="AudioStreamRandomizer_dram5"]
random_pitch = 1.1
@ -17,6 +18,7 @@ anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_oa7nq")
box = ExtResource("2_xm8em")
[node name="ColorRect" type="ColorRect" parent="."]
layout_mode = 1
@ -113,6 +115,19 @@ text = "quit to main menu :<"
stream = SubResource("AudioStreamRandomizer_dram5")
bus = &"SFX"
[node name="VBoxContainer" type="VBoxContainer" parent="."]
layout_mode = 1
anchors_preset = 7
anchor_left = 0.5
anchor_top = 1.0
anchor_right = 0.5
anchor_bottom = 1.0
offset_left = -20.0
offset_top = -40.0
offset_right = 20.0
grow_horizontal = 2
grow_vertical = 0
[connection signal="mouse_entered" from="HBoxContainer/PlayButton" to="." method="_on_button_mouse_entered"]
[connection signal="pressed" from="HBoxContainer/PlayButton" to="." method="_on_play_button_pressed"]
[connection signal="mouse_entered" from="HBoxContainer/QuitButton" to="." method="_on_button_mouse_entered"]