-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay.tscn
76 lines (65 loc) · 1.77 KB
/
Day.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
[gd_scene load_steps=6 format=2]
[ext_resource path="res://Day.gd" type="Script" id=1]
[ext_resource path="res://global_theme.tres" type="Theme" id=2]
[sub_resource type="Animation" id=3]
resource_name = "Text Fade"
length = 2.0
tracks/0/type = "value"
tracks/0/path = NodePath(".:modulate")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/keys = {
"times": PoolRealArray( 0, 2 ),
"transitions": PoolRealArray( 1, 1 ),
"update": 0,
"values": [ Color( 1, 1, 1, 0 ), Color( 1, 1, 1, 1 ) ]
}
[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="Day" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Background" type="ColorRect" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
color = Color( 0, 0, 0, 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="TextAnimator" type="AnimationPlayer" parent="."]
root_node = NodePath("../Text")
"anims/Text Fade" = SubResource( 3 )
[node name="Text" type="RichTextLabel" parent="."]
modulate = Color( 1, 1, 1, 0 )
anchor_right = 1.0
anchor_bottom = 1.0
custom_fonts/normal_font = SubResource( 2 )
bbcode_enabled = true
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Restart" type="Button" parent="."]
anchor_left = 0.5
anchor_top = 1.0
anchor_right = 0.5
anchor_bottom = 1.0
margin_left = -80.5
margin_top = -95.0
margin_right = 80.5
margin_bottom = -40.0
theme = ExtResource( 2 )
text = "Restart"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Tween" type="Tween" parent="."]
[connection signal="pressed" from="Restart" to="." method="_on_Restart_pressed"]