1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- [gd_scene load_steps=2 format=2]
- [ext_resource path="res://UI/level_done_screen.gd" type="Script" id=1]
- [node name="LevelDoneScreen" type="Control"]
- anchor_right = 1.0
- anchor_bottom = 1.0
- script = ExtResource( 1 )
- [node name="ColorRect" type="ColorRect" parent="."]
- anchor_right = 1.0
- anchor_bottom = 1.0
- color = Color( 0.0588235, 0.772549, 0.486275, 1 )
- [node name="MarginContainer" type="MarginContainer" parent="."]
- anchor_right = 1.0
- anchor_bottom = 1.0
- margin_left = 30.0
- margin_top = 30.0
- margin_right = -30.0
- margin_bottom = -30.0
- size_flags_horizontal = 3
- size_flags_vertical = 3
- [node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer"]
- margin_right = 1220.0
- margin_bottom = 660.0
- size_flags_horizontal = 3
- size_flags_vertical = 3
- custom_constants/separation = 30
- [node name="Label" type="Label" parent="MarginContainer/VBoxContainer"]
- margin_left = 572.0
- margin_right = 648.0
- margin_bottom = 14.0
- size_flags_horizontal = 4
- size_flags_vertical = 0
- text = "Level Done!"
- [node name="BackToMenuButton" type="Button" parent="MarginContainer/VBoxContainer"]
- margin_left = 560.0
- margin_top = 44.0
- margin_right = 660.0
- margin_bottom = 144.0
- rect_min_size = Vector2( 100, 100 )
- size_flags_horizontal = 4
- size_flags_vertical = 0
- text = "back to menu"
- [connection signal="pressed" from="MarginContainer/VBoxContainer/BackToMenuButton" to="." method="_on_BackToMenuButton_pressed"]
|