project-dung/scenes/game_manager.tscn

128 lines
3.5 KiB
Plaintext

[gd_scene load_steps=8 format=2]
[ext_resource path="res://scripts/game_manager.gd" type="Script" id=1]
[ext_resource path="res://assets/UI/Menu_Recipes.png" type="Texture" id=2]
[ext_resource path="res://assets/tutorial/machine_repair.png" type="Texture" id=3]
[ext_resource path="res://assets/Fonts/AlphaProta-Wy7VE.ttf" type="DynamicFontData" id=4]
[sub_resource type="DynamicFont" id=2]
size = 50
font_data = ExtResource( 4 )
[sub_resource type="DynamicFont" id=1]
size = 75
font_data = ExtResource( 4 )
[sub_resource type="StyleBoxFlat" id=3]
bg_color = Color( 0, 0.282353, 0.721569, 1 )
border_color = Color( 0, 0, 0, 1 )
border_blend = true
[node name="game_manager" type="CanvasLayer" groups=["game_manager"]]
pause_mode = 2
layer = 5
script = ExtResource( 1 )
[node name="UI" type="Control" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
rect_pivot_offset = Vector2( 1024, 600 )
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="pause_menu" type="Panel" parent="UI"]
pause_mode = 2
unique_name_in_owner = true
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
rect_pivot_offset = Vector2( 989, 509 )
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="machine_repair" type="TextureRect" parent="UI/pause_menu"]
anchor_left = 0.466146
anchor_top = 0.0962963
anchor_right = 0.894272
anchor_bottom = 0.666666
margin_left = 6.10352e-05
rect_pivot_offset = Vector2( -754, 325 )
texture = ExtResource( 3 )
expand = true
stretch_mode = 1
__meta__ = {
"_edit_use_anchors_": true
}
[node name="recipes" type="TextureRect" parent="UI/pause_menu"]
anchor_left = 0.0427083
anchor_top = 0.0592593
anchor_right = 0.323438
anchor_bottom = 0.925926
texture = ExtResource( 2 )
expand = true
__meta__ = {
"_edit_use_anchors_": true
}
[node name="resume_button" type="Button" parent="UI/pause_menu"]
pause_mode = 2
unique_name_in_owner = true
anchor_left = 0.5
anchor_top = 1.0
anchor_right = 0.5
anchor_bottom = 1.0
margin_left = 166.0
margin_top = -303.0
margin_right = 529.0
margin_bottom = -217.0
rect_pivot_offset = Vector2( 30.7864, 9.2928 )
custom_fonts/font = SubResource( 2 )
text = "RESUME"
icon_align = 1
expand_icon = true
[node name="main_menu_button" type="Button" parent="UI/pause_menu"]
pause_mode = 2
unique_name_in_owner = true
anchor_left = 0.5
anchor_top = 1.0
anchor_right = 0.5
anchor_bottom = 1.0
margin_left = 166.0
margin_top = -184.0
margin_right = 529.0
margin_bottom = -98.0
rect_pivot_offset = Vector2( 30.7864, 9.2928 )
custom_fonts/font = SubResource( 2 )
text = "MAIN MENU"
icon_align = 1
expand_icon = true
[node name="day_timer_text" type="Label" parent="UI"]
unique_name_in_owner = true
anchor_left = 1.0
anchor_right = 1.0
margin_left = -520.0
margin_bottom = 51.0
grow_horizontal = 0
rect_pivot_offset = Vector2( 116.901, -0.362253 )
custom_colors/font_color = Color( 0.0235294, 0.792157, 0, 1 )
custom_colors/font_outline_modulate = Color( 0, 0, 0, 1 )
custom_colors/font_color_shadow = Color( 0, 0, 0, 1 )
custom_constants/shadow_offset_x = -2
custom_constants/shadow_offset_y = 2
custom_fonts/font = SubResource( 1 )
custom_styles/normal = SubResource( 3 )
text = "Time Left: 00:20"
align = 2
uppercase = true
[node name="day_timer" type="Timer" parent="."]
pause_mode = 1
unique_name_in_owner = true
[connection signal="pressed" from="UI/pause_menu/resume_button" to="." method="_on_resume_button_pressed"]
[connection signal="pressed" from="UI/pause_menu/main_menu_button" to="." method="_on_main_menu_button_pressed"]
[connection signal="timeout" from="day_timer" to="." method="_on_day_timer_timeout"]