godot-demo-projects/plugins/addons/main_screen/main_panel.tscn

25 lines
589 B
Plaintext
Raw Normal View History

[gd_scene load_steps=2 format=2]
[ext_resource path="res://addons/main_screen/print_hello.gd" type="Script" id=1]
[node name="MainPanel" type="CenterContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
size_flags_vertical = 3
2020-12-09 01:36:00 +01:00
__meta__ = {
"_edit_use_anchors_": false
}
[node name="PrintHello" type="Button" parent="."]
offset_left = 472.0
offset_top = 290.0
offset_right = 552.0
offset_bottom = 310.0
text = "Print Hello"
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
2020-12-09 01:36:00 +01:00
[connection signal="pressed" from="PrintHello" to="PrintHello" method="_on_PrintHello_pressed"]