oldie/scenes/enemies/turtle/red/RedTurtle.tscn

58 lines
1.4 KiB
Plaintext

[gd_scene load_steps=10 format=2]
[ext_resource path="res://assets/turtle/red_walking.png" type="Texture" id=1]
[ext_resource path="res://assets/turtle/red_shell.png" type="Texture" id=2]
[sub_resource type="AtlasTexture" id=8]
atlas = ExtResource( 2 )
region = Rect2( 0, 0, 16, 16 )
[sub_resource type="AtlasTexture" id=9]
atlas = ExtResource( 1 )
region = Rect2( 0, 0, 32, 16 )
[sub_resource type="AtlasTexture" id=10]
atlas = ExtResource( 1 )
region = Rect2( 32, 0, 32, 16 )
[sub_resource type="AtlasTexture" id=11]
atlas = ExtResource( 1 )
region = Rect2( 64, 0, 32, 16 )
[sub_resource type="SpriteFrames" id=4]
animations = [ {
"frames": [ SubResource( 8 ) ],
"loop": true,
"name": "shell",
"speed": 5.0
}, {
"frames": [ SubResource( 9 ), SubResource( 10 ), SubResource( 11 ) ],
"loop": true,
"name": "walk",
"speed": 6.0
} ]
[sub_resource type="RectangleShape2D" id=5]
extents = Vector2( 9.5, 8 )
[sub_resource type="RectangleShape2D" id=7]
extents = Vector2( 5.5, 6 )
[node name="RedTurtle" type="KinematicBody2D"]
[node name="AnimatedSprite" type="AnimatedSprite" parent="."]
frames = SubResource( 4 )
animation = "walk"
playing = true
[node name="NormalCollision" type="CollisionShape2D" parent="."]
visible = false
position = Vector2( -0.5, 0 )
shape = SubResource( 5 )
[node name="ShellCollision" type="CollisionShape2D" parent="."]
visible = false
position = Vector2( -0.5, 2 )
shape = SubResource( 7 )
disabled = true