netfishing/ui/game_ui.tscn

149 lines
4.6 KiB
Text
Raw Normal View History

[gd_scene load_steps=11 format=3]
2026-07-25 11:05:37 -04:00
[ext_resource type="Script" path="res://ui/game_ui.gd" id="1_ui"]
2026-07-25 16:02:34 -04:00
[ext_resource type="PackedScene" path="res://ui/player_menu.tscn" id="2_menu"]
[ext_resource type="Theme" path="res://ui/game_theme.tres" id="3_theme"]
[ext_resource type="Script" path="res://ui/screen_fade.gd" id="4_fade"]
[ext_resource type="PackedScene" path="res://ui/title_screen.tscn" id="5_title"]
[ext_resource type="PackedScene" path="res://ui/pause_menu.tscn" id="6_pause"]
2026-07-25 11:05:37 -04:00
[sub_resource type="StyleBoxFlat" id="StyleBox_chase_background"]
bg_color = Color(0.055, 0.105, 0.125, 1)
corner_radius_top_left = 6
corner_radius_top_right = 6
corner_radius_bottom_right = 6
corner_radius_bottom_left = 6
[sub_resource type="StyleBoxFlat" id="StyleBox_chase_fill"]
bg_color = Color(0.937, 0.357, 0.384, 0.95)
corner_radius_top_left = 6
corner_radius_top_right = 6
corner_radius_bottom_right = 6
corner_radius_bottom_left = 6
[sub_resource type="StyleBoxFlat" id="StyleBox_catch_fill"]
bg_color = Color(0.275, 0.784, 0.471, 0.92)
corner_radius_top_left = 6
corner_radius_top_right = 6
corner_radius_bottom_right = 6
corner_radius_bottom_left = 6
[sub_resource type="StyleBoxFlat" id="StyleBox_transparent"]
bg_color = Color(0, 0, 0, 0)
2026-07-25 11:05:37 -04:00
[node name="GameUI" type="CanvasLayer"]
script = ExtResource("1_ui")
[node name="FishingPanel" type="PanelContainer" parent="."]
2026-07-25 16:02:34 -04:00
unique_name_in_owner = true
visible = false
2026-07-25 11:05:37 -04:00
anchors_preset = 7
anchor_left = 0.5
anchor_top = 1.0
anchor_right = 0.5
anchor_bottom = 1.0
offset_left = -210.0
offset_top = -130.0
offset_right = 210.0
offset_bottom = -24.0
2026-07-25 11:05:37 -04:00
grow_horizontal = 2
grow_vertical = 0
mouse_filter = 2
theme = ExtResource("3_theme")
2026-07-25 11:05:37 -04:00
[node name="MarginContainer" type="MarginContainer" parent="FishingPanel"]
theme_override_constants/margin_left = 18
theme_override_constants/margin_top = 12
theme_override_constants/margin_right = 18
theme_override_constants/margin_bottom = 12
2026-07-25 11:05:37 -04:00
[node name="VBoxContainer" type="VBoxContainer" parent="FishingPanel/MarginContainer"]
theme_override_constants/separation = 6
2026-07-25 11:05:37 -04:00
[node name="StatusLabel" type="Label" parent="FishingPanel/MarginContainer/VBoxContainer"]
unique_name_in_owner = true
visible = false
text = ""
2026-07-25 11:05:37 -04:00
horizontal_alignment = 1
theme_override_font_sizes/font_size = 17
2026-07-25 11:05:37 -04:00
[node name="ShowcaseDetails" type="Label" parent="FishingPanel/MarginContainer/VBoxContainer"]
unique_name_in_owner = true
visible = false
horizontal_alignment = 1
[node name="CatchTrack" type="Control" parent="FishingPanel/MarginContainer/VBoxContainer"]
2026-07-25 11:05:37 -04:00
unique_name_in_owner = true
visible = false
custom_minimum_size = Vector2(0, 22)
[node name="GreenCatchProgress" type="ProgressBar" parent="FishingPanel/MarginContainer/VBoxContainer/CatchTrack"]
unique_name_in_owner = true
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
mouse_filter = 2
theme_override_styles/background = SubResource("StyleBox_chase_background")
theme_override_styles/fill = SubResource("StyleBox_catch_fill")
2026-07-25 11:05:37 -04:00
value = 0.0
show_percentage = false
[node name="RedChaseProgress" type="ProgressBar" parent="FishingPanel/MarginContainer/VBoxContainer/CatchTrack"]
unique_name_in_owner = true
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
mouse_filter = 2
theme_override_styles/background = SubResource("StyleBox_transparent")
theme_override_styles/fill = SubResource("StyleBox_chase_fill")
value = 0.0
show_percentage = false
[node name="BarrierMarkers" type="Control" parent="FishingPanel/MarginContainer/VBoxContainer/CatchTrack"]
unique_name_in_owner = true
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
mouse_filter = 2
[node name="BarrierSummary" type="Label" parent="FishingPanel/MarginContainer/VBoxContainer"]
unique_name_in_owner = true
visible = false
horizontal_alignment = 1
[node name="BarrierHealth" type="Label" parent="FishingPanel/MarginContainer/VBoxContainer"]
unique_name_in_owner = true
visible = false
horizontal_alignment = 1
2026-07-25 16:02:34 -04:00
[node name="PlayerMenu" parent="." instance=ExtResource("2_menu")]
unique_name_in_owner = true
[node name="ScreenFade" type="ColorRect" parent="."]
unique_name_in_owner = true
visible = false
z_index = 100
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
mouse_filter = 0
color = Color(0, 0, 0, 1)
script = ExtResource("4_fade")
[node name="TitleScreen" parent="." instance=ExtResource("5_title")]
unique_name_in_owner = true
[node name="PauseMenu" parent="." instance=ExtResource("6_pause")]
unique_name_in_owner = true