local_game_jam_jan_2025/ui/instructions/instructions.tscn
Ethan Wellenreiter 7e8ca4b590 Cleaning up level
Signed-off-by: Ethan Wellenreiter <ewellenreiter@gmail.com>
2025-01-05 01:38:26 -05:00

69 lines
2.0 KiB
Plaintext

[gd_scene load_steps=3 format=3 uid="uid://dnqlvhal4o1vv"]
[ext_resource type="Script" path="res://ui/instructions/instructions.gd" id="1_ifbvd"]
[ext_resource type="Texture2D" uid="uid://b48bhtfvrv7rc" path="res://assets/background.png" id="2_oyhrc"]
[node name="Control" type="Control"]
layout_mode = 3
anchors_preset = 0
offset_right = 40.0
offset_bottom = 40.0
script = ExtResource("1_ifbvd")
[node name="Background" type="TextureRect" parent="."]
layout_mode = 0
offset_left = -28284.0
offset_top = -28611.0
offset_right = 95490.0
offset_bottom = 68437.0
scale = Vector2(0.5, 0.5)
texture = ExtResource("2_oyhrc")
stretch_mode = 1
[node name="CenterContainer" type="CenterContainer" parent="."]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
offset_right = 1880.0
offset_bottom = 1040.0
grow_horizontal = 2
grow_vertical = 2
[node name="VBoxContainer" type="VBoxContainer" parent="CenterContainer"]
custom_minimum_size = Vector2(250, 200)
layout_mode = 2
alignment = 1
[node name="Label" type="Label" parent="CenterContainer/VBoxContainer"]
layout_mode = 2
theme_override_colors/font_color = Color(0, 0, 0, 1)
theme_override_font_sizes/font_size = 29
text = "A/Left Arrow - Left
D/Right Arrow - Right
W/Spacebar/Up Arrow - Jump
R - Restart Level
Esc - Main Menu
Left Mouse Click - Aim and fire swinging rope
"
horizontal_alignment = 1
[node name="Play" type="Button" parent="CenterContainer/VBoxContainer"]
unique_name_in_owner = true
layout_mode = 2
text = "Play"
[node name="Credits" type="Button" parent="CenterContainer/VBoxContainer"]
unique_name_in_owner = true
layout_mode = 2
text = "Credits"
[node name="Quit" type="Button" parent="CenterContainer/VBoxContainer"]
unique_name_in_owner = true
layout_mode = 2
text = "Quit"
[connection signal="pressed" from="CenterContainer/VBoxContainer/Play" to="." method="_on_play_pressed"]
[connection signal="pressed" from="CenterContainer/VBoxContainer/Credits" to="." method="_on_credits_pressed"]
[connection signal="pressed" from="CenterContainer/VBoxContainer/Quit" to="." method="_on_quit_pressed"]