bodypartfighter/UI/WinScreen.tscn
2020-02-01 15:41:32 +01:00

73 lines
2.3 KiB
Plaintext

[gd_scene load_steps=7 format=2]
[ext_resource path="res://UI/WinScreenScript.gd" type="Script" id=1]
[ext_resource path="res://Resources/Fonts/MenuHeader.tres" type="DynamicFont" id=2]
[ext_resource path="res://Resources/Fonts/MenuTextFont.tres" type="DynamicFont" id=3]
[ext_resource path="res://Resources/Styles/ButtonHoverStyle.tres" type="StyleBox" id=4]
[ext_resource path="res://Resources/Styles/ButtonPressedStyle.tres" type="StyleBox" id=5]
[ext_resource path="res://Resources/Styles/ButtonNormalStyle.tres" type="StyleBox" id=6]
[node name="Spatial" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
labelPath = NodePath("MarginContainer/VBoxContainer/PlayerWon")
continuePath = NodePath("MarginContainer/VBoxContainer/Control/Continue")
[node name="MarginContainer" type="MarginContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer"]
margin_right = 1024.0
margin_bottom = 600.0
[node name="Congratz" type="Label" parent="MarginContainer/VBoxContainer"]
margin_right = 1024.0
margin_bottom = 250.0
rect_min_size = Vector2( 0, 250 )
custom_fonts/font = ExtResource( 2 )
text = "CONGRATULATIONS!"
align = 1
valign = 2
[node name="PlayerWon" type="Label" parent="MarginContainer/VBoxContainer"]
margin_top = 253.0
margin_right = 1024.0
margin_bottom = 503.0
rect_min_size = Vector2( 0, 250 )
custom_fonts/font = ExtResource( 3 )
align = 1
valign = 1
[node name="Control" type="Control" parent="MarginContainer/VBoxContainer"]
margin_top = 508.0
margin_right = 1024.0
margin_bottom = 508.0
[node name="Continue" type="Button" parent="MarginContainer/VBoxContainer/Control"]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -100.0
margin_top = -10.0
margin_right = 100.0
margin_bottom = 15.0
rect_min_size = Vector2( 200, 25 )
custom_styles/hover = ExtResource( 4 )
custom_styles/pressed = ExtResource( 5 )
custom_styles/normal = ExtResource( 6 )
custom_fonts/font = ExtResource( 3 )
text = "Continue"
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="pressed" from="MarginContainer/VBoxContainer/Control/Continue" to="." method="_on_Continue_pressed"]