12345678910111213141516171819202122232425262728293031323334 |
- [gd_scene load_steps=2 format=2]
- [ext_resource path="res://component/ui/number_panel/NumberPanel.gd" type="Script" id=1]
- [node name="Panel" type="Panel"]
- margin_left = -20.0
- margin_top = -15.0
- margin_right = 20.0
- margin_bottom = 15.0
- script = ExtResource( 1 )
- __meta__ = {
- "_edit_use_anchors_": false
- }
- [node name="Label" type="Label" parent="."]
- margin_right = 40.0
- margin_bottom = 14.0
- text = "Counter"
- align = 1
- valign = 1
- __meta__ = {
- "_edit_use_anchors_": false
- }
- [node name="CounterLabel" type="Label" parent="."]
- margin_top = 15.0
- margin_right = 40.0
- margin_bottom = 30.0
- text = "0"
- align = 1
- valign = 1
- __meta__ = {
- "_edit_use_anchors_": false
- }
|