-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseek.tscn
86 lines (69 loc) · 2.39 KB
/
seek.tscn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[gd_scene load_steps=5 format=3 uid="uid://c7k6owyakecfp"]
[ext_resource type="Script" path="res://main.gd" id="1_jwgh7"]
[ext_resource type="PackedScene" uid="uid://c5iuftyxetc8s" path="res://image_grid_control.tscn" id="2_gio0i"]
[ext_resource type="Script" path="res://HelpPopup.gd" id="3_alv6i"]
[ext_resource type="PackedScene" uid="uid://c8s1ep1ha01vx" path="res://help_screen.tscn" id="4_aa6yu"]
[node name="Main" type="Node2D"]
script = ExtResource("1_jwgh7")
[node name="Stage" type="Node2D" parent="."]
[node name="GUI" type="Control" parent="."]
top_level = true
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
[node name="ImageGridControl" parent="GUI" instance=ExtResource("2_gio0i")]
unique_name_in_owner = true
visible = false
layout_mode = 1
[node name="VBoxContainer" type="VBoxContainer" parent="GUI"]
visible = false
layout_mode = 0
offset_right = 40.0
offset_bottom = 40.0
[node name="FrameCount" type="HBoxContainer" parent="GUI/VBoxContainer"]
layout_mode = 2
[node name="Frame" type="Label" parent="GUI/VBoxContainer/FrameCount"]
unique_name_in_owner = true
layout_mode = 2
text = "0"
horizontal_alignment = 2
[node name="Slash" type="Label" parent="GUI/VBoxContainer/FrameCount"]
layout_mode = 2
text = "/"
[node name="TotalFrames" type="Label" parent="GUI/VBoxContainer/FrameCount"]
unique_name_in_owner = true
layout_mode = 2
text = "Total"
[node name="OpenBracket" type="Label" parent="GUI/VBoxContainer/FrameCount"]
layout_mode = 2
text = "("
[node name="ActualFrame" type="Label" parent="GUI/VBoxContainer/FrameCount"]
unique_name_in_owner = true
layout_mode = 2
[node name="CloseBracket" type="Label" parent="GUI/VBoxContainer/FrameCount"]
layout_mode = 2
text = ")"
[node name="RunningTotal" type="Label" parent="GUI/VBoxContainer"]
unique_name_in_owner = true
layout_mode = 2
[node name="HelpPopup" type="Window" parent="GUI"]
unique_name_in_owner = true
title = "Help"
size = Vector2i(1920, 1080)
visible = false
transient = true
borderless = true
popup_window = true
min_size = Vector2i(1000, 500)
script = ExtResource("3_alv6i")
[node name="HelpControl" parent="GUI/HelpPopup" instance=ExtResource("4_aa6yu")]
[node name="SavePackFileDialog" type="FileDialog" parent="GUI"]
unique_name_in_owner = true
size = Vector2i(1920, 1080)
min_size = Vector2i(600, 600)
ok_button_text = "Save"
access = 2
filters = PackedStringArray("*.res")