70 lines
1.7 KiB
Plaintext
70 lines
1.7 KiB
Plaintext
[gd_scene load_steps=13 format=2]
|
|
|
|
[ext_resource path="res://assets/turtle/grey_walking.png" type="Texture" id=1]
|
|
[ext_resource path="res://assets/turtle/grey_breaking.png" type="Texture" id=2]
|
|
|
|
[sub_resource type="AtlasTexture" id=8]
|
|
atlas = ExtResource( 2 )
|
|
region = Rect2( 0, 0, 32, 16 )
|
|
|
|
[sub_resource type="AtlasTexture" id=9]
|
|
atlas = ExtResource( 2 )
|
|
region = Rect2( 32, 0, 32, 16 )
|
|
|
|
[sub_resource type="AtlasTexture" id=10]
|
|
atlas = ExtResource( 2 )
|
|
region = Rect2( 64, 0, 32, 16 )
|
|
|
|
[sub_resource type="AtlasTexture" id=11]
|
|
atlas = ExtResource( 2 )
|
|
region = Rect2( 96, 0, 32, 16 )
|
|
|
|
[sub_resource type="AtlasTexture" id=12]
|
|
atlas = ExtResource( 2 )
|
|
region = Rect2( 128, 0, 32, 16 )
|
|
|
|
[sub_resource type="AtlasTexture" id=13]
|
|
atlas = ExtResource( 1 )
|
|
region = Rect2( 0, 0, 32, 16 )
|
|
|
|
[sub_resource type="AtlasTexture" id=14]
|
|
atlas = ExtResource( 1 )
|
|
region = Rect2( 32, 0, 32, 16 )
|
|
|
|
[sub_resource type="AtlasTexture" id=15]
|
|
atlas = ExtResource( 1 )
|
|
region = Rect2( 64, 0, 32, 16 )
|
|
|
|
[sub_resource type="SpriteFrames" id=4]
|
|
animations = [ {
|
|
"frames": [ SubResource( 8 ), SubResource( 9 ), SubResource( 10 ) ],
|
|
"loop": true,
|
|
"name": "break",
|
|
"speed": 3.0
|
|
}, {
|
|
"frames": [ SubResource( 11 ), SubResource( 12 ) ],
|
|
"loop": true,
|
|
"name": "revive",
|
|
"speed": 2.0
|
|
}, {
|
|
"frames": [ SubResource( 13 ), SubResource( 14 ), SubResource( 15 ) ],
|
|
"loop": true,
|
|
"name": "walk",
|
|
"speed": 6.0
|
|
} ]
|
|
|
|
[sub_resource type="RectangleShape2D" id=5]
|
|
extents = Vector2( 9.5, 8 )
|
|
|
|
[node name="GreyTurtle" type="KinematicBody2D"]
|
|
|
|
[node name="AnimatedSprite" type="AnimatedSprite" parent="."]
|
|
frames = SubResource( 4 )
|
|
animation = "walk"
|
|
centered = false
|
|
|
|
[node name="NormalCollision" type="CollisionShape2D" parent="."]
|
|
visible = false
|
|
position = Vector2( 15, 8 )
|
|
shape = SubResource( 5 )
|