-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathPauseGameScreen.tscn
75 lines (61 loc) · 1.95 KB
/
PauseGameScreen.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
[gd_scene load_steps=5 format=2]
[ext_resource path="res://PauseGameScreen.gd" type="Script" id=1]
[ext_resource path="res://fonts/pixelate/SFPixelate-Bold.ttf" type="DynamicFontData" id=2]
[sub_resource type="DynamicFont" id=1]
size = 60
use_mipmaps = false
use_filter = false
font_data = ExtResource( 2 )
_sections_unfolded = [ "Extra Spacing", "Font", "Settings" ]
[sub_resource type="Animation" id=2]
resource_name = "blink"
length = 1.5
loop = true
step = 0.1
tracks/0/type = "value"
tracks/0/path = NodePath(".:modulate")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/imported = false
tracks/0/keys = {
"times": PoolRealArray( 0, 0.0161948, 0.5, 1.5 ),
"transitions": PoolRealArray( -4, 1, -4, -4 ),
"update": 0,
"values": [ Color( 1, 1, 1, 1 ), Color( 0, 0, 0, 1 ), Color( 1, 1, 1, 0.176784 ), Color( 1, 1, 1, 1 ) ]
}
[node name="PauseGameScreen" type="Node2D"]
visible = false
z = 1
script = ExtResource( 1 )
_sections_unfolded = [ "Material", "Visibility", "Z", "custom_colors", "custom_fonts" ]
[node name="Label" type="Label" parent="."]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_right = 40.0
margin_bottom = 14.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
mouse_filter = 2
size_flags_horizontal = 1
size_flags_vertical = 4
custom_fonts/font = SubResource( 1 )
custom_colors/font_color = Color( 0, 0, 0, 1 )
custom_colors/font_color_shadow = Color( 0, 0, 0, 1 )
text = "FOO"
percent_visible = 1.0
lines_skipped = 0
max_lines_visible = -1
_sections_unfolded = [ "custom_colors", "custom_fonts" ]
[node name="AnimationPlayer" type="AnimationPlayer" parent="."]
playback_process_mode = 1
playback_default_blend_time = 10.0
root_node = NodePath("..")
anims/blink = SubResource( 2 )
playback/active = true
playback/speed = 1.0
blend_times = [ ]
autoplay = ""
_sections_unfolded = [ "Playback Options" ]
[connection signal="visibility_changed" from="." to="." method="_on_PauseGameScreen_visibility_changed"]