-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathScoreEntry.tscn
140 lines (130 loc) · 3.19 KB
/
ScoreEntry.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
[gd_scene load_steps=6 format=2]
[ext_resource path="res://OpenSeed-Godot/openseed_theme.tres" type="Theme" id=1]
[ext_resource path="res://OpenSeed-Godot/ScoreEntry.gd" type="Script" id=2]
[ext_resource path="res://OpenSeed-Godot/OpenSeed.png" type="Texture" id=4]
[ext_resource path="res://OpenSeed-Godot/Fonts/GameBig.tres" type="DynamicFont" id=5]
[ext_resource path="res://OpenSeed-Godot/Fonts/NaviFont.tres" type="DynamicFont" id=6]
[node name="ScoreEntry" type="Panel"]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -192.5
margin_top = -236.5
margin_right = 192.5
margin_bottom = 236.5
grow_horizontal = 2
grow_vertical = 2
theme = ExtResource( 1 )
script = ExtResource( 2 )
__meta__ = {
"_edit_lock_": true,
"_edit_use_anchors_": false
}
[node name="Title" type="Label" parent="."]
anchor_left = 0.5
anchor_right = 0.5
margin_left = -58.7263
margin_top = 10.0591
margin_right = 60.2737
margin_bottom = 43.0591
grow_horizontal = 2
grow_vertical = 2
custom_fonts/font = ExtResource( 6 )
text = "cleared"
align = 1
valign = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Score" type="Label" parent="."]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -124.452
margin_top = -102.819
margin_right = 127.548
margin_bottom = -31.8188
grow_horizontal = 2
grow_vertical = 2
custom_fonts/font = ExtResource( 5 )
text = "9999999"
align = 1
valign = 1
__meta__ = {
"_edit_lock_": true,
"_edit_use_anchors_": false
}
[node name="OpenSeed" type="Sprite" parent="."]
self_modulate = Color( 1, 1, 1, 0.215686 )
position = Vector2( 355.374, 441.881 )
scale = Vector2( 0.0482262, 0.0482262 )
texture = ExtResource( 4 )
[node name="HSeparator" type="HSeparator" parent="."]
anchor_left = 0.5
anchor_right = 0.5
margin_left = -179.5
margin_top = 54.0
margin_right = 181.5
margin_bottom = 64.0
__meta__ = {
"_edit_lock_": true
}
[node name="HSeparator2" type="HSeparator" parent="."]
anchor_left = 0.5
anchor_right = 0.5
margin_left = -180.5
margin_top = 110.0
margin_right = 182.5
margin_bottom = 120.0
__meta__ = {
"_edit_lock_": true
}
[node name="Mastery" type="HBoxContainer" parent="."]
anchor_left = 0.5
anchor_right = 0.5
margin_left = -172.5
margin_top = 67.0
margin_right = 180.5
margin_bottom = 107.0
alignment = 1
__meta__ = {
"_edit_lock_": true,
"_edit_use_anchors_": false
}
[node name="Player" type="Label" parent="."]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -77.0
margin_top = -14.5
margin_right = 77.0
margin_bottom = 14.5
grow_horizontal = 2
grow_vertical = 2
custom_fonts/font = ExtResource( 6 )
text = "player name"
align = 1
valign = 1
__meta__ = {
"_edit_lock_": true,
"_edit_use_anchors_": false
}
[node name="Button" type="Button" parent="."]
anchor_left = 0.5
anchor_top = 1.0
anchor_right = 0.5
anchor_bottom = 1.0
margin_left = -31.0
margin_top = -52.4835
margin_right = 48.0
margin_bottom = -12.4835
text = "confirm"
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="score" from="." to="." method="_on_ScoreEntry_score"]
[connection signal="send_score" from="." to="." method="_on_ScoreEntry_send_score"]
[connection signal="pressed" from="Button" to="." method="_on_Button_pressed"]