main_panel.tscn 589 B

12345678910111213141516171819202122232425
  1. [gd_scene load_steps=2 format=2]
  2. [ext_resource path="res://addons/main_screen/print_hello.gd" type="Script" id=1]
  3. [node name="MainPanel" type="CenterContainer"]
  4. anchor_right = 1.0
  5. anchor_bottom = 1.0
  6. size_flags_vertical = 3
  7. __meta__ = {
  8. "_edit_use_anchors_": false
  9. }
  10. [node name="PrintHello" type="Button" parent="."]
  11. margin_left = 472.0
  12. margin_top = 290.0
  13. margin_right = 552.0
  14. margin_bottom = 310.0
  15. text = "Print Hello"
  16. script = ExtResource( 1 )
  17. __meta__ = {
  18. "_edit_use_anchors_": false
  19. }
  20. [connection signal="pressed" from="PrintHello" to="PrintHello" method="_on_PrintHello_pressed"]