You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
3.1 KiB
Plaintext

2 years ago
[gd_scene load_steps=15 format=3 uid="uid://ksxwg0alt2us"]
2 years ago
[ext_resource type="Script" path="res://script/character/character.gd" id="1_tonbs"]
[ext_resource type="Script" path="res://script/character/status.gd" id="2_txdip"]
2 years ago
[ext_resource type="Shader" path="res://render/shader/character.gdshader" id="3_ed424"]
2 years ago
[ext_resource type="Script" path="res://script/character/move.gd" id="4_66r53"]
2 years ago
[ext_resource type="Texture2D" uid="uid://daqn6aqfp1hva" path="res://resource/animation/character/hero01_long_attack.png" id="4_fcd8a"]
2 years ago
[ext_resource type="Script" path="res://script/character/view.gd" id="4_vijjv"]
[ext_resource type="SpriteFrames" uid="uid://ce83cuqwgwwi4" path="res://resource/animation/character/hero01_long_attack.aseprite" id="5_m25rr"]
2 years ago
[ext_resource type="Script" path="res://script/character/skill.gd" id="6_h4xqy"]
[ext_resource type="AnimationLibrary" uid="uid://croik07a1qko5" path="res://resource/skill_animation_library/animation_library.tres" id="6_pakq5"]
2 years ago
[ext_resource type="Script" path="res://script/character/battle.gd" id="8_w84sf"]
[ext_resource type="Script" path="res://script/character/buff.gd" id="9_jlnhy"]
2 years ago
[ext_resource type="Script" path="res://script/character/effect.gd" id="12_eyfcd"]
2 years ago
[sub_resource type="BoxShape3D" id="BoxShape3D_ty8lx"]
2 years ago
[sub_resource type="ShaderMaterial" id="ShaderMaterial_3u7mw"]
render_priority = 0
2 years ago
shader = ExtResource("3_ed424")
shader_parameter/flash_white = null
shader_parameter/deformation_dir = Vector2(0, 0)
shader_parameter/deformation_rate = 0.0
2 years ago
shader_parameter/tex = ExtResource("4_fcd8a")
2 years ago
[node name="Character" type="CharacterBody3D"]
script = ExtResource("1_tonbs")
[node name="Collision" type="CollisionShape3D" parent="."]
unique_name_in_owner = true
transform = Transform3D(0.4, 0, 0, 0, 0.4, 0, 0, 0, 0.4, 0, 0, 0)
shape = SubResource("BoxShape3D_ty8lx")
[node name="Status" type="Node3D" parent="."]
unique_name_in_owner = true
script = ExtResource("2_txdip")
2 years ago
speed_up_rate = -1.0
2 years ago
skill_float_speed = 0.1
2 years ago
[node name="View" type="AnimatedSprite3D" parent="."]
unique_name_in_owner = true
transform = Transform3D(1, 0, 0, 0, 1.414, 0, 0, 0, 1, 0, 0.376646, 0)
2 years ago
layers = 524288
2 years ago
material_override = SubResource("ShaderMaterial_3u7mw")
lod_bias = 0.001
gi_mode = 0
double_sided = false
2 years ago
alpha_cut = 2
texture_filter = 0
sprite_frames = ExtResource("5_m25rr")
2 years ago
animation = &"long_attack01"
2 years ago
script = ExtResource("4_vijjv")
[node name="Move" type="Node3D" parent="."]
unique_name_in_owner = true
script = ExtResource("4_66r53")
[node name="Skill" type="AnimationPlayer" parent="."]
unique_name_in_owner = true
libraries = {
"animation_library": ExtResource("6_pakq5")
}
script = ExtResource("6_h4xqy")
[node name="Buff" type="Node3D" parent="."]
unique_name_in_owner = true
script = ExtResource("9_jlnhy")
2 years ago
[node name="Battle" type="Node3D" parent="."]
unique_name_in_owner = true
script = ExtResource("8_w84sf")
2 years ago
[node name="Effect" type="Node3D" parent="."]
unique_name_in_owner = true
script = ExtResource("12_eyfcd")
2 years ago
[connection signal="animation_finished" from="View" to="View" method="_on_animation_finished"]
[connection signal="animation_finished" from="Skill" to="Skill" method="_on_animation_finished"]