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"]