2023-11-08 14:28:55 +11:00
|
|
|
[gd_scene load_steps=2 format=3 uid="uid://ce0m8vbjbng6o"]
|
|
|
|
|
|
|
|
[ext_resource type="Script" path="res://Scripts/won_game_screen.gd" id="1_oa7nq"]
|
|
|
|
|
|
|
|
[node name="Control" type="Control"]
|
|
|
|
layout_mode = 3
|
|
|
|
anchors_preset = 15
|
|
|
|
anchor_right = 1.0
|
|
|
|
anchor_bottom = 1.0
|
|
|
|
grow_horizontal = 2
|
|
|
|
grow_vertical = 2
|
|
|
|
script = ExtResource("1_oa7nq")
|
|
|
|
|
|
|
|
[node name="ColorRect" type="ColorRect" parent="."]
|
|
|
|
layout_mode = 1
|
|
|
|
anchors_preset = 15
|
|
|
|
anchor_right = 1.0
|
|
|
|
anchor_bottom = 1.0
|
|
|
|
grow_horizontal = 2
|
|
|
|
grow_vertical = 2
|
2023-11-11 19:03:01 +11:00
|
|
|
color = Color(0, 0, 0, 0.745098)
|
2023-11-08 14:28:55 +11:00
|
|
|
|
|
|
|
[node name="Label" type="Label" parent="."]
|
|
|
|
layout_mode = 1
|
|
|
|
anchors_preset = -1
|
|
|
|
anchor_left = 0.5
|
|
|
|
anchor_right = 0.5
|
|
|
|
offset_left = -20.0
|
|
|
|
offset_top = 260.0
|
|
|
|
offset_right = 20.0
|
|
|
|
offset_bottom = 23.0
|
|
|
|
grow_horizontal = 2
|
|
|
|
text = "You WIN :3"
|
|
|
|
|
2023-12-09 01:09:12 +11:00
|
|
|
[node name="HBoxContainer" type="HBoxContainer" parent="."]
|
2023-11-08 14:28:55 +11:00
|
|
|
layout_mode = 1
|
2023-12-09 01:09:12 +11:00
|
|
|
anchors_preset = 8
|
2023-11-08 14:28:55 +11:00
|
|
|
anchor_left = 0.5
|
2023-12-09 01:09:12 +11:00
|
|
|
anchor_top = 0.5
|
2023-11-08 14:28:55 +11:00
|
|
|
anchor_right = 0.5
|
2023-12-09 01:09:12 +11:00
|
|
|
anchor_bottom = 0.5
|
|
|
|
offset_left = -298.0
|
|
|
|
offset_top = -20.0
|
|
|
|
offset_right = 298.0
|
|
|
|
offset_bottom = 20.0
|
2023-11-08 14:28:55 +11:00
|
|
|
grow_horizontal = 2
|
2023-12-09 01:09:12 +11:00
|
|
|
grow_vertical = 2
|
|
|
|
|
|
|
|
[node name="PlayButton" type="Button" parent="HBoxContainer"]
|
|
|
|
layout_mode = 2
|
2023-11-08 14:28:55 +11:00
|
|
|
text = "play again :3"
|
|
|
|
|
2023-12-09 01:09:12 +11:00
|
|
|
[node name="QuitButton" type="Button" parent="HBoxContainer"]
|
|
|
|
layout_mode = 2
|
2023-11-08 14:28:55 +11:00
|
|
|
text = "quit to main menu :<"
|
|
|
|
|
2023-12-09 01:09:12 +11:00
|
|
|
[connection signal="pressed" from="HBoxContainer/PlayButton" to="." method="_on_play_button_pressed"]
|
|
|
|
[connection signal="pressed" from="HBoxContainer/QuitButton" to="." method="_on_quit_button_pressed"]
|