-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStopwatch.tscn
79 lines (68 loc) · 1.85 KB
/
Stopwatch.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
[gd_scene load_steps=2 format=2]
[ext_resource path="res://Stopwatch.gd" type="Script" id=1]
[node name="Stopwatch" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 1 )
[node name="VBoxContainer" type="VBoxContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
alignment = 1
[node name="CenterContainer" type="CenterContainer" parent="VBoxContainer"]
margin_right = 1080.0
margin_bottom = 2340.0
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="TimeSplit" type="HBoxContainer" parent="VBoxContainer/CenterContainer"]
margin_left = 368.0
margin_top = 1125.0
margin_right = 712.0
margin_bottom = 1214.0
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="Hour" type="Label" parent="VBoxContainer/CenterContainer/TimeSplit"]
margin_right = 88.0
margin_bottom = 89.0
size_flags_horizontal = 3
size_flags_vertical = 7
text = "HH"
align = 1
valign = 1
[node name="Col1" type="Label" parent="VBoxContainer/CenterContainer/TimeSplit"]
margin_left = 96.0
margin_right = 115.0
margin_bottom = 89.0
size_flags_horizontal = 3
size_flags_vertical = 7
text = ":"
align = 1
valign = 1
[node name="Minute" type="Label" parent="VBoxContainer/CenterContainer/TimeSplit"]
margin_left = 123.0
margin_right = 231.0
margin_bottom = 89.0
size_flags_horizontal = 3
size_flags_vertical = 7
text = "MM"
align = 1
valign = 1
[node name="Col2" type="Label" parent="VBoxContainer/CenterContainer/TimeSplit"]
margin_left = 239.0
margin_right = 258.0
margin_bottom = 89.0
size_flags_horizontal = 3
size_flags_vertical = 7
text = ":"
align = 1
valign = 1
[node name="Second" type="Label" parent="VBoxContainer/CenterContainer/TimeSplit"]
margin_left = 266.0
margin_right = 344.0
margin_bottom = 89.0
size_flags_horizontal = 3
size_flags_vertical = 7
text = "SS"
align = 1
valign = 1
[node name="LapContainer" type="VBoxContainer" parent="."]
anchor_right = 1.0