Armazon/score_screen.tscn
2024-04-03 19:24:04 -04:00

95 lines
2.5 KiB
Plaintext

[gd_scene load_steps=4 format=3 uid="uid://bdhrrm2akjpth"]
[ext_resource type="Theme" uid="uid://bh1i8c8v60go0" path="res://ui_theme.tres" id="1_3k18l"]
[ext_resource type="Texture2D" uid="uid://jwjefk17pc64" path="res://assets/env/bezos_thinking.png" id="1_iu6ib"]
[ext_resource type="Script" path="res://score_screen.gd" id="2_ijyl7"]
[node name="ScoreScreen" type="Control"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
theme = ExtResource("1_3k18l")
script = ExtResource("2_ijyl7")
[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
color = Color(0.0901961, 0, 0.0666667, 1)
[node name="TextureRect2" type="TextureRect" parent="."]
self_modulate = Color(1, 0.78, 0.78, 0.176)
layout_mode = 1
anchors_preset = -1
anchor_left = 0.05
anchor_top = -0.1
anchor_right = 0.4
anchor_bottom = 0.3
grow_horizontal = 2
grow_vertical = 2
rotation = 0.354302
texture = ExtResource("1_iu6ib")
expand_mode = 1
[node name="TextureRect" type="TextureRect" parent="."]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("1_iu6ib")
expand_mode = 1
[node name="VBoxContainer" type="VBoxContainer" parent="."]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
[node name="Label" type="Label" parent="VBoxContainer"]
layout_mode = 2
text = "you were fired lol"
[node name="score" type="Label" parent="VBoxContainer"]
unique_name_in_owner = true
layout_mode = 2
theme_override_colors/font_color = Color(0.905882, 0.858824, 0.376471, 1)
text = "0 pts"
[node name="boxes" type="Label" parent="VBoxContainer"]
unique_name_in_owner = true
layout_mode = 2
text = "0 boxes"
[node name="VBoxContainer2" type="VBoxContainer" parent="."]
modulate = Color(5, 5, 5, 1)
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
alignment = 2
[node name="retry" type="Button" parent="VBoxContainer2"]
layout_mode = 2
size_flags_horizontal = 8
text = "they still need me"
[node name="quit" type="Button" parent="VBoxContainer2"]
layout_mode = 2
size_flags_horizontal = 8
text = "bye"
[connection signal="pressed" from="VBoxContainer2/retry" to="." method="_on_retry_pressed"]
[connection signal="pressed" from="VBoxContainer2/quit" to="." method="_on_quit_pressed"]