SupaLidlGame/Characters/Player.tscn

569 lines
18 KiB
Plaintext
Raw Normal View History

2023-07-23 23:39:20 -07:00
[gd_scene load_steps=55 format=3 uid="uid://b2254pup8k161"]
2022-11-10 20:29:53 -08:00
[ext_resource type="Script" path="res://Characters/Player.cs" id="1_flygr"]
2022-11-25 09:11:46 -08:00
[ext_resource type="Shader" path="res://Shaders/Flash.gdshader" id="2_ngsgt"]
2023-04-23 21:10:37 -07:00
[ext_resource type="Texture2D" uid="uid://bej8thq7ruyty" path="res://Assets/Sprites/Characters/forsen2.png" id="4_5vird"]
2022-11-25 11:59:55 -08:00
[ext_resource type="PackedScene" uid="uid://cl56eadpklnbo" path="res://Utils/PlayerCamera.tscn" id="4_ym125"]
2023-05-25 15:28:33 -07:00
[ext_resource type="Script" path="res://State/Character/CharacterStateMachine.cs" id="5_rgckv"]
[ext_resource type="Script" path="res://State/Character/PlayerIdleState.cs" id="6_wkfdm"]
2023-05-26 22:28:08 -07:00
[ext_resource type="PackedScene" uid="uid://dvqap2uhcah63" path="res://Items/Weapons/Sword.tscn" id="7_4rxuv"]
2023-05-25 15:28:33 -07:00
[ext_resource type="Script" path="res://State/Character/PlayerMoveState.cs" id="7_dfqd8"]
2023-07-21 02:54:13 -07:00
[ext_resource type="Script" path="res://Utils/AnimationManager.cs" id="7_sdgvb"]
2022-11-18 13:53:51 -08:00
[ext_resource type="Script" path="res://Items/Inventory.cs" id="7_xyenu"]
2023-05-25 15:28:33 -07:00
[ext_resource type="Script" path="res://State/Character/PlayerRollState.cs" id="8_fy0v5"]
2023-07-23 23:39:20 -07:00
[ext_resource type="Animation" uid="uid://8e8r3y1imvsx" path="res://Assets/Animations/stun.res" id="8_m08fh"]
2023-07-22 20:23:48 -07:00
[ext_resource type="Material" uid="uid://x5qcq5muvc3g" path="res://Assets/Sprites/Particles/PlayerDamageProcessMaterial.tres" id="8_yf112"]
[ext_resource type="Texture2D" uid="uid://c1a7lvb4uuwfy" path="res://Assets/Sprites/Particles/circle-16.png" id="9_7gumm"]
2022-11-19 21:21:12 -08:00
[ext_resource type="PackedScene" uid="uid://cjgxyhgcyvsv7" path="res://BoundingBoxes/Hurtbox.tscn" id="9_avyu4"]
2023-07-13 23:46:58 -07:00
[ext_resource type="AudioStream" uid="uid://bkeyg8weaqnuu" path="res://Assets/Sounds/splat-player.ogg" id="12_vvem5"]
2023-06-10 22:15:28 -07:00
[ext_resource type="Script" path="res://BoundingBoxes/InteractionRay.cs" id="13_hs3u1"]
2023-07-23 23:39:20 -07:00
[ext_resource type="PackedScene" uid="uid://p7oijq6dbvvk" path="res://Items/Weapons/DocLance.tscn" id="14_bj0lo"]
2023-07-21 02:54:13 -07:00
[ext_resource type="Texture2D" uid="uid://d1ukste16yq6v" path="res://Assets/Sprites/Particles/player-light.png" id="15_3hahh"]
2023-07-17 09:30:49 -07:00
[ext_resource type="Script" path="res://Utils/DamageTime.cs" id="15_4xl06"]
2022-11-19 21:21:12 -08:00
2022-11-25 09:11:46 -08:00
[sub_resource type="ShaderMaterial" id="ShaderMaterial_h78y7"]
shader = ExtResource("2_ngsgt")
2023-07-21 02:54:13 -07:00
shader_parameter/color = Vector4(1, 1, 1, 1)
2022-11-25 09:11:46 -08:00
shader_parameter/intensity = 0.0
2023-07-23 23:39:20 -07:00
shader_parameter/alpha_modulate = 1.0
2022-11-25 09:11:46 -08:00
2023-07-21 02:54:13 -07:00
[sub_resource type="Animation" id="Animation_imqdv"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
2023-07-22 20:23:48 -07:00
tracks/0/path = NodePath("../Sprites/Node2D/Character:frame")
2023-07-21 02:54:13 -07:00
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 1,
"values": [0]
}
tracks/1/type = "value"
tracks/1/imported = false
tracks/1/enabled = true
2023-07-22 20:23:48 -07:00
tracks/1/path = NodePath("../Sprites/Node2D/Character:rotation")
2023-07-21 02:54:13 -07:00
tracks/1/interp = 1
tracks/1/loop_wrap = true
tracks/1/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [0.0]
}
2022-11-13 15:42:04 -08:00
2023-07-21 02:54:13 -07:00
[sub_resource type="Animation" id="Animation_mg66i"]
resource_name = "idle"
length = 0.5
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
2023-07-22 20:23:48 -07:00
tracks/0/path = NodePath("../Sprites/Node2D/Character:frame")
2023-07-21 02:54:13 -07:00
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 0.3),
"transitions": PackedFloat32Array(1, 1),
"update": 1,
"values": [0, 1]
}
2022-11-19 21:21:12 -08:00
2023-07-21 02:54:13 -07:00
[sub_resource type="Animation" id="Animation_iyr4r"]
resource_name = "move"
2022-11-25 09:11:46 -08:00
length = 0.6
2023-07-21 02:54:13 -07:00
loop_mode = 1
2022-11-25 09:11:46 -08:00
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
2023-07-22 20:23:48 -07:00
tracks/0/path = NodePath("../Sprites/Node2D/Character:frame")
2023-07-21 02:54:13 -07:00
tracks/0/interp = 1
2022-11-25 09:11:46 -08:00
tracks/0/loop_wrap = true
tracks/0/keys = {
2023-07-21 02:54:13 -07:00
"times": PackedFloat32Array(0, 0.1, 0.2, 0.3, 0.4, 0.5),
"transitions": PackedFloat32Array(1, 1, 1, 1, 1, 1),
"update": 1,
"values": [2, 3, 4, 5, 6, 7]
}
[sub_resource type="Animation" id="Animation_vobpw"]
resource_name = "roll"
length = 0.5
step = 0.05
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
2023-07-22 20:23:48 -07:00
tracks/0/path = NodePath("../Sprites/Node2D/Character:rotation")
2023-07-21 02:54:13 -07:00
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 0.5),
"transitions": PackedFloat32Array(1, 1),
2022-11-25 09:11:46 -08:00
"update": 0,
2023-07-21 02:54:13 -07:00
"values": [0.0, 6.28319]
2022-11-25 09:11:46 -08:00
}
2023-07-21 02:54:13 -07:00
[sub_resource type="Animation" id="Animation_tpnyg"]
resource_name = "stop"
length = 0.2
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
2023-07-22 20:23:48 -07:00
tracks/0/path = NodePath("../Sprites/Node2D/Character:frame")
2023-07-21 02:54:13 -07:00
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 0.2),
"transitions": PackedFloat32Array(1, 1),
"update": 1,
"values": [10, 0]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_0tohi"]
_data = {
"RESET": SubResource("Animation_imqdv"),
"idle": SubResource("Animation_mg66i"),
"move": SubResource("Animation_iyr4r"),
"roll": SubResource("Animation_vobpw"),
"stop": SubResource("Animation_tpnyg")
}
[sub_resource type="Animation" id="Animation_adxyh"]
2022-11-25 09:11:46 -08:00
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
2023-07-22 20:23:48 -07:00
tracks/0/path = NodePath("../Sprites/Node2D/Character:frame")
2022-11-25 09:11:46 -08:00
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
2023-07-21 02:54:13 -07:00
"update": 1,
2023-07-22 20:23:48 -07:00
"values": [0]
2022-11-25 09:11:46 -08:00
}
2023-07-21 02:54:13 -07:00
[sub_resource type="Animation" id="Animation_3w3u1"]
resource_name = "sword"
2023-07-22 20:23:48 -07:00
length = 0.3
2023-07-21 02:54:13 -07:00
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
2023-07-22 20:23:48 -07:00
tracks/0/path = NodePath("../Sprites/Node2D/Character:frame")
2023-07-21 02:54:13 -07:00
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 0.1, 0.2),
"transitions": PackedFloat32Array(1, 1, 1),
"update": 1,
2023-07-22 20:23:48 -07:00
"values": [12, 13, 14]
2023-07-21 02:54:13 -07:00
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_73mj7"]
2022-11-25 09:11:46 -08:00
_data = {
2023-07-21 02:54:13 -07:00
"RESET": SubResource("Animation_adxyh"),
"sword": SubResource("Animation_3w3u1")
2022-11-25 09:11:46 -08:00
}
2023-07-21 02:54:13 -07:00
[sub_resource type="Animation" id="Animation_k6l16"]
2023-07-13 23:46:58 -07:00
length = 0.001
2023-06-11 15:15:52 -07:00
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
2023-07-21 02:54:13 -07:00
tracks/0/path = NodePath(".:material:shader_parameter/intensity")
2023-06-11 15:15:52 -07:00
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
2023-07-13 23:46:58 -07:00
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
2023-06-11 15:15:52 -07:00
"update": 0,
2023-07-13 23:46:58 -07:00
"values": [0.0]
2023-06-11 15:15:52 -07:00
}
2023-07-21 02:54:13 -07:00
tracks/1/type = "value"
tracks/1/imported = false
tracks/1/enabled = true
2023-07-22 20:23:48 -07:00
tracks/1/path = NodePath("Sprites/Node2D/Character:frame")
2023-07-21 02:54:13 -07:00
tracks/1/interp = 1
tracks/1/loop_wrap = true
tracks/1/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 1,
"values": [0]
}
tracks/2/type = "value"
tracks/2/imported = false
tracks/2/enabled = true
tracks/2/path = NodePath("Effects/HurtParticles:emitting")
tracks/2/interp = 1
tracks/2/loop_wrap = true
tracks/2/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 1,
"values": [false]
}
2023-06-11 15:15:52 -07:00
2023-07-21 02:54:13 -07:00
[sub_resource type="Animation" id="Animation_dxevc"]
resource_name = "hurt"
length = 0.2
2023-07-13 23:46:58 -07:00
step = 0.05
2023-06-11 15:15:52 -07:00
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
2023-07-21 02:54:13 -07:00
tracks/0/path = NodePath(".:material:shader_parameter/intensity")
tracks/0/interp = 2
2023-06-11 15:15:52 -07:00
tracks/0/loop_wrap = true
tracks/0/keys = {
2023-07-21 02:54:13 -07:00
"times": PackedFloat32Array(0, 0.05, 0.1, 0.2),
"transitions": PackedFloat32Array(4, 4, 4, 4),
"update": 0,
"values": [1.0, 0.0, 1.0, 0.0]
}
tracks/1/type = "value"
tracks/1/imported = false
tracks/1/enabled = true
2023-07-22 20:23:48 -07:00
tracks/1/path = NodePath("Sprites/Node2D/Character:frame")
2023-07-21 02:54:13 -07:00
tracks/1/interp = 1
tracks/1/loop_wrap = true
tracks/1/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 1,
"values": [11]
}
tracks/2/type = "value"
tracks/2/imported = false
tracks/2/enabled = true
tracks/2/path = NodePath("Effects/HurtParticles:emitting")
tracks/2/interp = 1
tracks/2/loop_wrap = true
tracks/2/keys = {
"times": PackedFloat32Array(0, 0.1),
"transitions": PackedFloat32Array(1, 1),
"update": 1,
"values": [true, false]
}
2023-07-22 20:23:48 -07:00
tracks/3/type = "method"
tracks/3/imported = false
tracks/3/enabled = true
tracks/3/path = NodePath("Effects/HurtParticles")
tracks/3/interp = 1
tracks/3/loop_wrap = true
tracks/3/keys = {
"times": PackedFloat32Array(0.2),
"transitions": PackedFloat32Array(1),
"values": [{
"args": [],
"method": &"restart"
}]
}
2023-07-21 02:54:13 -07:00
[sub_resource type="Animation" id="Animation_pjey7"]
resource_name = "hurt_flash"
length = 0.4
step = 0.05
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:material:shader_parameter/intensity")
tracks/0/interp = 2
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 0.2, 0.4),
"transitions": PackedFloat32Array(4, 4, 4),
2023-06-11 15:15:52 -07:00
"update": 0,
2023-07-21 02:54:13 -07:00
"values": [0.0, 1.0, 0.0]
2023-06-11 15:15:52 -07:00
}
2023-07-21 02:54:13 -07:00
[sub_resource type="AnimationLibrary" id="AnimationLibrary_xe5eq"]
2023-06-11 15:15:52 -07:00
_data = {
2023-07-21 02:54:13 -07:00
"RESET": SubResource("Animation_k6l16"),
"hurt": SubResource("Animation_dxevc"),
"hurt_flash": SubResource("Animation_pjey7")
2023-06-11 15:15:52 -07:00
}
2023-07-23 23:39:20 -07:00
[sub_resource type="AnimationLibrary" id="AnimationLibrary_kks2p"]
_data = {
"stun": ExtResource("8_m08fh")
}
2023-07-21 02:54:13 -07:00
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_kwett"]
animation = &"idle"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_vqdng"]
animation = &"move"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_4np0m"]
animation = &"roll"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_suhx1"]
animation = &"stop"
[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_sorqc"]
advance_mode = 2
[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_ujrp0"]
advance_condition = &"move"
[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_kjkm8"]
advance_condition = &"idle"
[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_1ywlq"]
switch_mode = 2
advance_mode = 2
advance_condition = &"idle"
[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_abs7t"]
advance_condition = &"roll"
[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_qlka8"]
advance_condition = &"idle"
[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_ql2f3"]
advance_condition = &"move"
[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_g1yba"]
advance_condition = &"roll"
[sub_resource type="AnimationNodeStateMachine" id="AnimationNodeStateMachine_0ukul"]
states/End/position = Vector2(613, 100)
states/Start/position = Vector2(89, 100)
states/idle/node = SubResource("AnimationNodeAnimation_kwett")
states/idle/position = Vector2(259, 100)
states/move/node = SubResource("AnimationNodeAnimation_vqdng")
states/move/position = Vector2(259, 18)
states/roll/node = SubResource("AnimationNodeAnimation_4np0m")
states/roll/position = Vector2(89, 18)
states/stop/node = SubResource("AnimationNodeAnimation_suhx1")
states/stop/position = Vector2(438, 100)
transitions = ["Start", "idle", SubResource("AnimationNodeStateMachineTransition_sorqc"), "idle", "move", SubResource("AnimationNodeStateMachineTransition_ujrp0"), "move", "stop", SubResource("AnimationNodeStateMachineTransition_kjkm8"), "stop", "idle", SubResource("AnimationNodeStateMachineTransition_1ywlq"), "idle", "roll", SubResource("AnimationNodeStateMachineTransition_abs7t"), "roll", "idle", SubResource("AnimationNodeStateMachineTransition_qlka8"), "roll", "move", SubResource("AnimationNodeStateMachineTransition_ql2f3"), "move", "roll", SubResource("AnimationNodeStateMachineTransition_g1yba")]
graph_offset = Vector2(-335.315, -63.5708)
[sub_resource type="AnimationNodeStateMachinePlayback" id="AnimationNodeStateMachinePlayback_jln87"]
2023-07-22 20:23:48 -07:00
[sub_resource type="ParticleProcessMaterial" id="ParticleProcessMaterial_852jj"]
2023-06-13 02:55:30 -07:00
particle_flag_disable_z = true
2023-07-22 20:23:48 -07:00
spread = 180.0
2023-06-13 02:55:30 -07:00
gravity = Vector3(0, 0, 0)
2023-07-22 20:23:48 -07:00
initial_velocity_min = 8.0
initial_velocity_max = 16.0
2023-06-13 02:55:30 -07:00
orbit_velocity_min = 0.0
2023-07-21 02:54:13 -07:00
orbit_velocity_max = 0.0
2023-07-22 20:23:48 -07:00
linear_accel_min = -32.0
linear_accel_max = -16.0
scale_min = 0.1
scale_max = 0.1
2023-06-13 02:55:30 -07:00
[sub_resource type="CanvasTexture" id="CanvasTexture_pited"]
2023-07-22 20:23:48 -07:00
diffuse_texture = ExtResource("9_7gumm")
2023-06-13 02:55:30 -07:00
2023-07-21 02:54:13 -07:00
[sub_resource type="RectangleShape2D" id="RectangleShape2D_bfqew"]
size = Vector2(12, 8)
[sub_resource type="LabelSettings" id="LabelSettings_q5h1n"]
font_size = 24
[sub_resource type="RectangleShape2D" id="RectangleShape2D_cjk6b"]
size = Vector2(8, 8)
2023-06-10 22:15:28 -07:00
[node name="Player" type="CharacterBody2D" node_paths=PackedStringArray("Camera", "DirectionMarker", "Sprite", "Inventory", "StateMachine", "Hurtbox")]
2022-12-04 20:12:34 -08:00
y_sort_enabled = true
2022-11-19 21:21:12 -08:00
texture_filter = 3
2022-11-25 09:11:46 -08:00
material = SubResource("ShaderMaterial_h78y7")
2022-11-27 19:37:16 -08:00
collision_layer = 6
2023-05-23 00:25:28 -07:00
collision_mask = 17
2022-11-10 20:29:53 -08:00
script = ExtResource("1_flygr")
2022-11-25 11:59:55 -08:00
Camera = NodePath("Camera2D")
2023-06-10 22:15:28 -07:00
DirectionMarker = NodePath("Direction2D")
2023-07-21 02:54:13 -07:00
Speed = 80.0
2023-07-22 20:23:48 -07:00
Sprite = NodePath("Sprites/Node2D/Character")
2022-11-19 21:21:12 -08:00
Inventory = NodePath("Inventory")
2022-11-13 15:42:04 -08:00
StateMachine = NodePath("StateMachine")
2023-06-10 22:15:28 -07:00
Hurtbox = NodePath("Hurtbox")
2022-11-19 21:21:12 -08:00
Faction = 1
2022-11-10 20:29:53 -08:00
2022-11-13 15:42:04 -08:00
[node name="StateMachine" type="Node" parent="." node_paths=PackedStringArray("InitialState", "Character")]
2023-05-25 15:28:33 -07:00
script = ExtResource("5_rgckv")
2022-11-13 15:42:04 -08:00
InitialState = NodePath("Idle")
Character = NodePath("..")
2023-05-25 15:28:33 -07:00
[node name="Idle" type="Node" parent="StateMachine" node_paths=PackedStringArray("MoveState", "IdleState", "Character")]
script = ExtResource("6_wkfdm")
2022-11-13 15:42:04 -08:00
MoveState = NodePath("../Move")
2022-11-26 14:53:24 -08:00
IdleState = NodePath(".")
2023-05-25 15:28:33 -07:00
Character = NodePath("../..")
2022-11-13 15:42:04 -08:00
2023-05-25 15:28:33 -07:00
[node name="Move" type="Node" parent="StateMachine" node_paths=PackedStringArray("RollState", "IdleState", "Character")]
script = ExtResource("7_dfqd8")
2022-11-13 15:42:04 -08:00
RollState = NodePath("../Roll")
2022-11-26 14:53:24 -08:00
IdleState = NodePath("../Idle")
2023-05-25 15:28:33 -07:00
Character = NodePath("../..")
2022-11-13 15:42:04 -08:00
2023-05-25 15:28:33 -07:00
[node name="Roll" type="Node" parent="StateMachine" node_paths=PackedStringArray("IdleState", "Character")]
script = ExtResource("8_fy0v5")
2022-11-26 14:53:24 -08:00
IdleState = NodePath("../Idle")
2023-05-25 15:28:33 -07:00
Character = NodePath("../..")
2023-07-21 02:54:13 -07:00
[node name="Animations" type="Node" parent="."]
script = ExtResource("7_sdgvb")
[node name="Movement" type="AnimationPlayer" parent="Animations"]
libraries = {
"": SubResource("AnimationLibrary_0tohi")
}
[node name="Attack" type="AnimationPlayer" parent="Animations"]
libraries = {
"": SubResource("AnimationLibrary_73mj7")
}
[node name="Hurt" type="AnimationPlayer" parent="Animations"]
root_node = NodePath("../..")
libraries = {
"": SubResource("AnimationLibrary_xe5eq")
}
2023-07-23 23:39:20 -07:00
[node name="Stun" type="AnimationPlayer" parent="Animations"]
libraries = {
"": SubResource("AnimationLibrary_kks2p")
}
2023-07-21 02:54:13 -07:00
[node name="AnimationTree" type="AnimationTree" parent="Animations"]
tree_root = SubResource("AnimationNodeStateMachine_0ukul")
anim_player = NodePath("../Movement")
parameters/playback = SubResource("AnimationNodeStateMachinePlayback_jln87")
parameters/conditions/idle = false
parameters/conditions/move = false
parameters/conditions/roll = false
[node name="Effects" type="Node2D" parent="."]
2023-07-22 20:23:48 -07:00
[node name="RollParticles" type="GPUParticles2D" parent="Effects"]
2023-07-21 02:54:13 -07:00
emitting = false
amount = 16
2023-07-22 20:23:48 -07:00
process_material = SubResource("ParticleProcessMaterial_852jj")
texture = ExtResource("9_7gumm")
lifetime = 0.8
[node name="DeathParticles" type="GPUParticles2D" parent="Effects"]
emitting = false
amount = 32
process_material = ExtResource("8_yf112")
2023-07-21 02:54:13 -07:00
texture = SubResource("CanvasTexture_pited")
2023-07-22 20:23:48 -07:00
lifetime = 2.0
preprocess = 0.1
2023-07-21 02:54:13 -07:00
explosiveness = 0.9
[node name="HurtParticles" type="GPUParticles2D" parent="Effects"]
emitting = false
amount = 32
2023-07-22 20:23:48 -07:00
process_material = ExtResource("8_yf112")
texture = ExtResource("9_7gumm")
lifetime = 1.5
2023-07-21 02:54:13 -07:00
one_shot = true
2023-07-22 20:23:48 -07:00
preprocess = 0.1
explosiveness = 0.9
2023-07-21 02:54:13 -07:00
2023-05-25 15:28:33 -07:00
[node name="Camera2D" parent="." instance=ExtResource("4_ym125")]
2023-07-21 02:54:13 -07:00
limit_left = -256
limit_top = -256
limit_right = 256
limit_bottom = 256
2023-05-25 15:28:33 -07:00
position_smoothing_speed = 8.0
2023-07-21 02:54:13 -07:00
[node name="Sprites" type="Node2D" parent="."]
2023-07-22 20:23:48 -07:00
y_sort_enabled = true
2023-05-25 15:28:33 -07:00
use_parent_material = true
2023-07-22 20:23:48 -07:00
rotation = 6.28319
2023-07-21 02:54:13 -07:00
2023-07-22 20:23:48 -07:00
[node name="Node2D" type="Node2D" parent="Sprites"]
[node name="Character" type="Sprite2D" parent="Sprites/Node2D"]
2023-07-21 02:54:13 -07:00
use_parent_material = true
2023-07-23 23:39:20 -07:00
position = Vector2(-1, -8)
2023-07-21 02:54:13 -07:00
texture = ExtResource("4_5vird")
2023-06-11 15:15:52 -07:00
offset = Vector2(0, -4)
2023-07-22 20:23:48 -07:00
hframes = 24
2023-05-25 15:28:33 -07:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
2023-07-22 20:23:48 -07:00
position = Vector2(0, -4)
2023-05-25 15:28:33 -07:00
shape = SubResource("RectangleShape2D_bfqew")
2022-11-13 15:42:04 -08:00
[node name="Debug" type="Control" parent="."]
2023-03-26 10:53:58 -07:00
visible = false
2022-11-13 15:42:04 -08:00
layout_mode = 3
anchors_preset = 0
[node name="State" type="Label" parent="Debug"]
2023-03-19 13:54:48 -07:00
layout_mode = 0
2022-11-13 15:42:04 -08:00
offset_left = -20.0
offset_top = -60.0
offset_right = 20.0
offset_bottom = -34.0
text = "lol"
label_settings = SubResource("LabelSettings_q5h1n")
horizontal_alignment = 1
2023-07-13 23:46:58 -07:00
[node name="Inventory" type="Node2D" parent="."]
2023-07-22 20:23:48 -07:00
position = Vector2(0, -4)
2022-11-18 13:53:51 -08:00
script = ExtResource("7_xyenu")
2023-04-16 14:11:17 -07:00
InventoryMap = {
"equip_1": 0,
"equip_2": 1
}
2022-11-18 13:53:51 -08:00
2023-05-26 22:28:08 -07:00
[node name="Node2D" parent="Inventory" instance=ExtResource("7_4rxuv")]
2023-06-06 18:39:23 -07:00
visible = false
2022-11-19 21:21:12 -08:00
2023-07-23 23:39:20 -07:00
[node name="DocLance" parent="Inventory" instance=ExtResource("14_bj0lo")]
2023-07-21 02:54:13 -07:00
[node name="Hurtbox" parent="." node_paths=PackedStringArray("InvincibilityTimer") instance=ExtResource("9_avyu4")]
2023-07-22 20:23:48 -07:00
visible = false
2023-07-21 02:54:13 -07:00
InvincibilityTimer = NodePath("Timer")
2022-11-19 21:21:12 -08:00
Faction = 1
[node name="CollisionShape2D" parent="Hurtbox" index="0"]
2023-07-22 20:23:48 -07:00
visible = false
2023-07-21 02:54:13 -07:00
position = Vector2(0, 4)
2022-11-19 21:21:12 -08:00
shape = SubResource("RectangleShape2D_cjk6b")
2023-07-21 02:54:13 -07:00
[node name="Timer" type="Timer" parent="Hurtbox"]
one_shot = true
2023-06-11 15:15:52 -07:00
2022-11-26 14:53:24 -08:00
[node name="HurtSound" type="AudioStreamPlayer2D" parent="."]
2023-07-22 20:23:48 -07:00
visible = false
2023-07-13 23:46:58 -07:00
stream = ExtResource("12_vvem5")
2023-03-19 23:36:36 -07:00
max_distance = 64.0
2022-11-26 14:53:24 -08:00
[node name="AudioListener2D" type="AudioListener2D" parent="."]
2023-07-22 20:23:48 -07:00
visible = false
2022-11-26 14:53:24 -08:00
current = true
2023-06-10 22:15:28 -07:00
[node name="Direction2D" type="Marker2D" parent="."]
2023-07-22 20:23:48 -07:00
visible = false
2023-06-10 22:15:28 -07:00
position = Vector2(0, 6)
[node name="InteractionRay" type="RayCast2D" parent="Direction2D"]
2023-07-22 20:23:48 -07:00
visible = false
2023-06-10 22:15:28 -07:00
target_position = Vector2(16, 0)
collision_mask = 64
collide_with_areas = true
script = ExtResource("13_hs3u1")
2022-11-19 21:21:12 -08:00
2023-07-13 23:46:58 -07:00
[node name="PointLight2D" type="PointLight2D" parent="."]
2023-07-22 20:23:48 -07:00
visible = false
2023-07-13 23:46:58 -07:00
blend_mode = 2
shadow_enabled = true
shadow_filter = 2
shadow_filter_smooth = 3.0
2023-07-21 02:54:13 -07:00
texture = ExtResource("15_3hahh")
height = 10.0
2023-07-13 23:46:58 -07:00
2023-07-17 09:30:49 -07:00
[node name="DamageTime" type="Node" parent="."]
script = ExtResource("15_4xl06")
2022-11-19 21:21:12 -08:00
[editable path="Hurtbox"]