-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFly.tscn
38 lines (33 loc) · 1.05 KB
/
Fly.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
[gd_scene load_steps=7 format=2]
[ext_resource path="res://images/fly_2.svg" type="Texture" id=1]
[ext_resource path="res://Scripts/Fly.cs" type="Script" id=2]
[ext_resource path="res://fonts/FlyAnswerFont.tres" type="DynamicFont" id=3]
[ext_resource path="res://images/fly_3.svg" type="Texture" id=4]
[ext_resource path="res://images/fly_1.svg" type="Texture" id=5]
[sub_resource type="SpriteFrames" id=1]
animations = [ {
"frames": [ ExtResource( 4 ), ExtResource( 1 ), ExtResource( 5 ), ExtResource( 1 ), ExtResource( 4 ) ],
"loop": false,
"name": "fly",
"speed": 12.0
} ]
[node name="Fly" type="Node2D"]
script = ExtResource( 2 )
[node name="FlySprite" type="AnimatedSprite" parent="."]
frames = SubResource( 1 )
animation = "fly"
centered = false
offset = Vector2( 24, 2 )
[node name="Label" type="Label" parent="."]
margin_left = 47.3333
margin_top = 44.1667
margin_right = 117.333
margin_bottom = 67.1667
custom_fonts/font = ExtResource( 3 )
custom_colors/font_color = Color( 0, 0, 0, 1 )
text = "bzzz"
align = 1
valign = 1
__meta__ = {
"_edit_use_anchors_": false
}