123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- [gd_scene load_steps=13 format=3 uid="uid://dnnc0pdu3rvyh"]
- [ext_resource type="Script" path="res://reimu_movement.gd" id="1_cgk3l"]
- [ext_resource type="Texture2D" uid="uid://kmbyuo5g2l0q" path="res://Assets/player00/player00.png" id="2_kxu6v"]
- [sub_resource type="CircleShape2D" id="CircleShape2D_e8k53"]
- [sub_resource type="AtlasTexture" id="AtlasTexture_ws6jr"]
- atlas = ExtResource("2_kxu6v")
- region = Rect2(0, 0, 32, 51)
- [sub_resource type="AtlasTexture" id="AtlasTexture_bwbvw"]
- atlas = ExtResource("2_kxu6v")
- region = Rect2(32, 0, 32, 51)
- [sub_resource type="AtlasTexture" id="AtlasTexture_vaknj"]
- atlas = ExtResource("2_kxu6v")
- region = Rect2(64, 0, 32, 51)
- [sub_resource type="AtlasTexture" id="AtlasTexture_c5giq"]
- atlas = ExtResource("2_kxu6v")
- region = Rect2(96, 0, 32, 51)
- [sub_resource type="AtlasTexture" id="AtlasTexture_u0lpw"]
- atlas = ExtResource("2_kxu6v")
- region = Rect2(128, 0, 32, 51)
- [sub_resource type="AtlasTexture" id="AtlasTexture_nh2ku"]
- atlas = ExtResource("2_kxu6v")
- region = Rect2(160, 0, 32, 51)
- [sub_resource type="AtlasTexture" id="AtlasTexture_ok4fn"]
- atlas = ExtResource("2_kxu6v")
- region = Rect2(192, 0, 32, 51)
- [sub_resource type="AtlasTexture" id="AtlasTexture_5r4iv"]
- atlas = ExtResource("2_kxu6v")
- region = Rect2(224, 0, 32, 51)
- [sub_resource type="SpriteFrames" id="SpriteFrames_5x2dv"]
- animations = [{
- "frames": [{
- "duration": 1.0,
- "texture": SubResource("AtlasTexture_ws6jr")
- }, {
- "duration": 1.0,
- "texture": SubResource("AtlasTexture_bwbvw")
- }, {
- "duration": 1.0,
- "texture": SubResource("AtlasTexture_vaknj")
- }, {
- "duration": 1.0,
- "texture": SubResource("AtlasTexture_c5giq")
- }],
- "loop": true,
- "name": &"reimu",
- "speed": 10.0
- }, {
- "frames": [{
- "duration": 1.0,
- "texture": SubResource("AtlasTexture_u0lpw")
- }, {
- "duration": 1.0,
- "texture": SubResource("AtlasTexture_nh2ku")
- }, {
- "duration": 1.0,
- "texture": SubResource("AtlasTexture_ok4fn")
- }, {
- "duration": 1.0,
- "texture": SubResource("AtlasTexture_5r4iv")
- }],
- "loop": true,
- "name": &"yukari",
- "speed": 10.0
- }]
- [node name="Node2D" type="Node2D"]
- [node name="Camera2D" type="Camera2D" parent="."]
- offset = Vector2(100, 50)
- zoom = Vector2(4, 4)
- [node name="CharacterBody2D" type="CharacterBody2D" parent="."]
- position = Vector2(104, 55)
- script = ExtResource("1_cgk3l")
- [node name="CollisionShape2D" type="CollisionShape2D" parent="CharacterBody2D"]
- shape = SubResource("CircleShape2D_e8k53")
- [node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="CharacterBody2D"]
- sprite_frames = SubResource("SpriteFrames_5x2dv")
- animation = &"reimu"
- autoplay = "reimu"
- [node name="CharacterBody2D2" type="CharacterBody2D" parent="."]
- position = Vector2(152, 54)
- [node name="CollisionShape2D" type="CollisionShape2D" parent="CharacterBody2D2"]
- shape = SubResource("CircleShape2D_e8k53")
- [node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="CharacterBody2D2"]
- sprite_frames = SubResource("SpriteFrames_5x2dv")
- animation = &"yukari"
- autoplay = "yukari"
- frame_progress = 0.87452
|