From 64c8bb176c86bd1f8b2c2a1941a6c8af96e3c04e Mon Sep 17 00:00:00 2001 From: tihgs Date: Mon, 16 Jun 2025 04:34:34 +0100 Subject: [PATCH] Add files via upload --- Start.tscn | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Start.tscn diff --git a/Start.tscn b/Start.tscn new file mode 100644 index 0000000..aff6b5a --- /dev/null +++ b/Start.tscn @@ -0,0 +1,27 @@ +[gd_scene load_steps=2 format=2] + +[ext_resource path="res://Start.gd" type="Script" id=1] + +[node name="Node2D" type="Node2D"] +script = ExtResource( 1 ) + +[node name="VBoxContainer" type="VBoxContainer" parent="."] +margin_left = 367.0 +margin_top = 215.0 +margin_right = 499.0 +margin_bottom = 283.0 +rect_scale = Vector2( 2, 2 ) + +[node name="Information" type="Button" parent="VBoxContainer"] +margin_right = 132.0 +margin_bottom = 20.0 +text = "Information" + +[node name="Back" type="Button" parent="VBoxContainer"] +margin_top = 24.0 +margin_right = 132.0 +margin_bottom = 44.0 +text = "Back" + +[connection signal="pressed" from="VBoxContainer/Information" to="." method="_on_Information_pressed"] +[connection signal="pressed" from="VBoxContainer/Back" to="." method="_on_Back_pressed"]