-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPlate.tscn
128 lines (105 loc) · 3.89 KB
/
Plate.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
[gd_scene load_steps=13 format=2]
[ext_resource path="res://assets/images/plate.png" type="Texture" id=1]
[ext_resource path="res://Plate.gd" type="Script" id=2]
[ext_resource path="res://assets/images/mushroom.png" type="Texture" id=3]
[ext_resource path="res://assets/images/tomato.png" type="Texture" id=4]
[ext_resource path="res://assets/images/oregano.png" type="Texture" id=5]
[ext_resource path="res://assets/images/olives.png" type="Texture" id=6]
[ext_resource path="res://assets/images/peppers.png" type="Texture" id=7]
[ext_resource path="res://assets/images/mozzarella.png" type="Texture" id=8]
[ext_resource path="res://assets/images/broccoli.png" type="Texture" id=9]
[ext_resource path="res://assets/images/corn.png" type="Texture" id=10]
[sub_resource type="Animation" id=1]
resource_name = "hide"
length = 0.5
tracks/0/type = "value"
tracks/0/path = NodePath(".:scale")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/keys = {
"times": PoolRealArray( 0, 0.5 ),
"transitions": PoolRealArray( 1, 1 ),
"update": 0,
"values": [ Vector2( 1, 1 ), Vector2( 1e-05, 1e-05 ) ]
}
[sub_resource type="Animation" id=2]
tracks/0/type = "value"
tracks/0/path = NodePath(".:scale")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/keys = {
"times": PoolRealArray( 0, 0.5, 1 ),
"transitions": PoolRealArray( 1, 1, 1 ),
"update": 0,
"values": [ Vector2( 1, 1 ), Vector2( 1e-05, 1e-05 ), Vector2( 1, 1 ) ]
}
tracks/1/type = "method"
tracks/1/path = NodePath(".")
tracks/1/interp = 1
tracks/1/loop_wrap = true
tracks/1/imported = false
tracks/1/enabled = true
tracks/1/keys = {
"times": PoolRealArray( 0.5 ),
"transitions": PoolRealArray( 1 ),
"values": [ {
"args": [ ],
"method": "shuffle"
} ]
}
[node name="plate" type="Node2D"]
script = ExtResource( 2 )
[node name="plate" type="Sprite" parent="."]
texture = ExtResource( 1 )
__meta__ = {
"_edit_lock_": true
}
[node name="positions" type="Node2D" parent="."]
[node name="pos1" type="Node2D" parent="positions"]
position = Vector2( -2.82843, -139.577 )
[node name="pos2" type="Node2D" parent="positions"]
position = Vector2( 107.906, -76.882 )
[node name="pos3" type="Node2D" parent="positions"]
position = Vector2( 104.335, 76.1649 )
[node name="pos4" type="Node2D" parent="positions"]
position = Vector2( -1.70599, 130.217 )
[node name="pos5" type="Node2D" parent="positions"]
position = Vector2( -95.3117, 68.3076 )
[node name="pos6" type="Node2D" parent="positions"]
position = Vector2( -99.9346, -83.6168 )
[node name="pos7" type="Node2D" parent="positions"]
position = Vector2( -4.24261, 2.82837 )
[node name="vegetables" type="Node2D" parent="."]
visible = false
[node name="broccoli" type="Sprite" parent="vegetables"]
position = Vector2( 283.096, 983.54 )
texture = ExtResource( 9 )
[node name="champignon" type="Sprite" parent="vegetables"]
position = Vector2( 96.6677, 976.428 )
texture = ExtResource( 3 )
[node name="corn" type="Sprite" parent="vegetables"]
position = Vector2( 97.4234, 815.374 )
texture = ExtResource( 10 )
[node name="mozarella" type="Sprite" parent="vegetables"]
position = Vector2( 509.803, 828.586 )
texture = ExtResource( 8 )
[node name="olives" type="Sprite" parent="vegetables"]
position = Vector2( 1172.93, 840.074 )
texture = ExtResource( 6 )
[node name="oregano" type="Sprite" parent="vegetables"]
position = Vector2( 290.167, 828.699 )
texture = ExtResource( 5 )
[node name="peperoni" type="Sprite" parent="vegetables"]
position = Vector2( 721.61, 840.578 )
texture = ExtResource( 7 )
[node name="tomato" type="Sprite" parent="vegetables"]
position = Vector2( 960.873, 834.986 )
texture = ExtResource( 4 )
[node name="AnimationPlayer" type="AnimationPlayer" parent="."]
anims/hide = SubResource( 1 )
anims/shuffle = SubResource( 2 )
[connection signal="animation_finished" from="AnimationPlayer" to="." method="_on_AnimationPlayer_animation_finished"]