NumberPanel.tscn 658 B

12345678910111213141516171819202122232425262728293031323334
  1. [gd_scene load_steps=2 format=2]
  2. [ext_resource path="res://component/ui/number_panel/NumberPanel.gd" type="Script" id=1]
  3. [node name="Panel" type="Panel"]
  4. margin_left = -20.0
  5. margin_top = -15.0
  6. margin_right = 20.0
  7. margin_bottom = 15.0
  8. script = ExtResource( 1 )
  9. __meta__ = {
  10. "_edit_use_anchors_": false
  11. }
  12. [node name="Label" type="Label" parent="."]
  13. margin_right = 40.0
  14. margin_bottom = 14.0
  15. text = "Counter"
  16. align = 1
  17. valign = 1
  18. __meta__ = {
  19. "_edit_use_anchors_": false
  20. }
  21. [node name="CounterLabel" type="Label" parent="."]
  22. margin_top = 15.0
  23. margin_right = 40.0
  24. margin_bottom = 30.0
  25. text = "0"
  26. align = 1
  27. valign = 1
  28. __meta__ = {
  29. "_edit_use_anchors_": false
  30. }