Initial commit

This commit is contained in:
2024-02-08 22:16:58 +01:00
commit 89e97a200c
524 changed files with 15626 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
[gd_scene load_steps=4 format=2]
[ext_resource path="res://scenes/levels/Controls.gd" type="Script" id=1]
[ext_resource path="res://textures/misc/controls.png" type="Texture2D" id=2]
[ext_resource path="res://fonts/dialog.tres" type="FontFile" id=3]
[node name="Controls" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="controls" type="TextureRect" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
texture = ExtResource( 2 )
[node name="Button" type="Button" parent="."]
anchor_left = 1.0
anchor_top = 0.5
anchor_right = 1.0
anchor_bottom = 0.5
offset_left = -114.361
offset_top = 234.378
offset_right = -7.36102
offset_bottom = 283.378
theme_override_fonts/font = ExtResource( 3 )
theme_override_colors/font_color = Color( 0, 0, 0, 1 )
theme_override_colors/font_hover_color = Color( 0.364706, 0.364706, 0.364706, 1 )
text = "Back"
flat = true
__meta__ = {
"_editor_description_": ""
}
[connection signal="pressed" from="Button" to="." method="_on_Button_pressed"]