summaryrefslogtreecommitdiff
path: root/plugins/hello_world/demo/Main.tscn
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/hello_world/demo/Main.tscn')
-rw-r--r--plugins/hello_world/demo/Main.tscn19
1 files changed, 19 insertions, 0 deletions
diff --git a/plugins/hello_world/demo/Main.tscn b/plugins/hello_world/demo/Main.tscn
new file mode 100644
index 0000000..57d3eb0
--- /dev/null
+++ b/plugins/hello_world/demo/Main.tscn
@@ -0,0 +1,19 @@
+[gd_scene load_steps=2 format=3 uid="uid://bgtr75kiyu5fh"]
+
+[ext_resource type="Script" path="res://Main.gd" id="1"]
+
+[node name="Main" type="Node2D"]
+script = ExtResource("1")
+
+[node name="Button" type="Button" parent="."]
+anchors_preset = 14
+anchor_top = 0.5
+anchor_right = 1.0
+anchor_bottom = 0.5
+offset_left = 40.0
+offset_top = 250.0
+offset_right = 320.0
+offset_bottom = 312.0
+text = "Hello World"
+
+[connection signal="pressed" from="Button" to="." method="_on_Button_pressed"]