-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSay.tscn
37 lines (32 loc) · 855 Bytes
/
Say.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
[gd_scene load_steps=3 format=2]
[ext_resource path="res://Say.gd" type="Script" id=1]
[sub_resource type="Animation" id=1]
resource_name = "Speak"
length = 2.0
tracks/0/type = "value"
tracks/0/path = NodePath(".:visible")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/keys = {
"times": PoolRealArray( -0.2, 0.1, 1.7 ),
"transitions": PoolRealArray( 1, 1, 1 ),
"update": 1,
"values": [ false, true, false ]
}
[node name="Say" type="Node2D"]
z_index = 100
z_as_relative = false
script = ExtResource( 1 )
[node name="Label" type="Label" parent="."]
visible = false
margin_left = -125.522
margin_top = -25.0
margin_right = 124.478
margin_bottom = 25.0
text = "Example text"
align = 1
valign = 1
[node name="AnimationPlayer" type="AnimationPlayer" parent="Label"]
anims/Speak = SubResource( 1 )