-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScore.tscn
70 lines (61 loc) · 1.56 KB
/
Score.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
[gd_scene load_steps=5 format=2]
[ext_resource path="res://global_theme.tres" type="Theme" id=1]
[ext_resource path="res://Score.gd" type="Script" id=2]
[sub_resource type="DynamicFontData" id=1]
font_path = "res://fonts/Cloude_Regular_Bold_1.02.ttf"
[sub_resource type="DynamicFont" id=2]
size = 100
font_data = SubResource( 1 )
[node name="Score" type="Node"]
script = ExtResource( 2 )
[node name="Background" type="ColorRect" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
color = Color( 0.717647, 0.0235294, 0.0235294, 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="ScoreLabel" type="RichTextLabel" parent="."]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -247.5
margin_top = -254.0
margin_right = 247.5
margin_bottom = -2.0
bbcode_enabled = true
bbcode_text = "[center]Score[/center]"
text = "Score"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Score" type="RichTextLabel" parent="."]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -240.0
margin_top = -122.0
margin_right = 255.0
margin_bottom = 130.0
bbcode_enabled = true
__meta__ = {
"_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 = -143.5
margin_top = -195.0
margin_right = 143.5
margin_bottom = -88.0
theme = ExtResource( 1 )
custom_fonts/font = SubResource( 2 )
text = "Continue >"
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="pressed" from="Button" to="." method="_on_Button_pressed"]