Files
pomchronicles/main_panel.tscn

92 lines
2.9 KiB
Plaintext

[gd_scene load_steps=3 format=3 uid="uid://c8ofw6na082gv"]
[ext_resource type="Script" uid="uid://dhw85vqlvw33s" path="res://main_panel.gd" id="1_pdekv"]
[ext_resource type="Script" uid="uid://4jrp67ckp7vt" path="res://timer_label.gd" id="2_5rs2c"]
[node name="MainPanel" type="PanelContainer"]
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
offset_right = -870.0
offset_bottom = -526.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_pdekv")
[node name="Timer" type="Timer" parent="."]
wait_time = 400000.0
autostart = true
[node name="MarginContainer" type="MarginContainer" parent="."]
layout_mode = 2
theme_override_constants/margin_left = 20
theme_override_constants/margin_top = 20
theme_override_constants/margin_right = 20
theme_override_constants/margin_bottom = 20
[node name="Passive" type="VBoxContainer" parent="MarginContainer"]
unique_name_in_owner = true
layout_mode = 2
[node name="Label" type="Label" parent="MarginContainer/Passive"]
layout_mode = 2
theme_override_font_sizes/font_size = 28
text = "Time til Next Shift"
horizontal_alignment = 1
[node name="TimerLabel" type="Label" parent="MarginContainer/Passive"]
layout_mode = 2
theme_override_font_sizes/font_size = 28
text = "000:00:00.00"
script = ExtResource("2_5rs2c")
[node name="VisitorsLabel" type="Label" parent="MarginContainer/Passive"]
layout_mode = 2
theme_override_font_sizes/font_size = 28
text = "000:00:00.00"
script = ExtResource("2_5rs2c")
[node name="QuestProgressList" type="ScrollContainer" parent="MarginContainer/Passive"]
unique_name_in_owner = true
clip_contents = false
custom_minimum_size = Vector2(260, 100)
layout_mode = 2
horizontal_scroll_mode = 0
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/Passive/QuestProgressList"]
custom_minimum_size = Vector2(300, 100)
layout_mode = 2
[node name="Active" type="VBoxContainer" parent="MarginContainer"]
unique_name_in_owner = true
visible = false
layout_mode = 2
[node name="Label" type="Label" parent="MarginContainer/Active"]
layout_mode = 2
theme_override_font_sizes/font_size = 28
text = "Time til Next Shift"
horizontal_alignment = 1
[node name="TimerLabel" type="Label" parent="MarginContainer/Active"]
layout_mode = 2
theme_override_font_sizes/font_size = 28
text = "00:00:00.00"
horizontal_alignment = 1
script = ExtResource("2_5rs2c")
[node name="Label3" type="Label" parent="MarginContainer/Active"]
visible = false
layout_mode = 2
theme_override_font_sizes/font_size = 28
text = "00:00:00.00"
horizontal_alignment = 1
[node name="Button" type="Button" parent="MarginContainer/Active"]
layout_mode = 2
text = "END SHIFT"
[connection signal="time_changed" from="." to="MarginContainer/Passive/TimerLabel" method="_on_time_changed"]
[connection signal="time_changed" from="." to="MarginContainer/Active/TimerLabel" method="_on_time_changed"]
[connection signal="pressed" from="MarginContainer/Active/Button" to="." method="_on_end_shift_pressed"]