2024-08-19 16:24:06 +02:00
|
|
|
[gd_scene load_steps=7 format=3 uid="uid://snxpqx0ony7s"]
|
2024-08-17 00:32:52 +02:00
|
|
|
|
|
|
|
[ext_resource type="Script" path="res://scripts/player_movement.gd" id="1_a6lhy"]
|
|
|
|
[ext_resource type="Texture2D" uid="uid://qcx482jc7pqr" path="res://textures/player.png" id="2_sscjv"]
|
2024-08-19 14:39:07 +02:00
|
|
|
[ext_resource type="Texture2D" uid="uid://s7wqkcxerals" path="res://textures/Eye Lase.png" id="3_yg3ur"]
|
2024-08-19 16:24:06 +02:00
|
|
|
[ext_resource type="AudioStream" uid="uid://donbyet486b4" path="res://sound/Jump5.wav" id="4_jit8y"]
|
2024-08-17 00:32:52 +02:00
|
|
|
|
2024-08-18 21:07:16 +02:00
|
|
|
[sub_resource type="RectangleShape2D" id="RectangleShape2D_31jvr"]
|
2024-08-17 00:32:52 +02:00
|
|
|
|
2024-08-17 17:33:34 +02:00
|
|
|
[sub_resource type="CircleShape2D" id="CircleShape2D_vxfel"]
|
|
|
|
radius = 12.0
|
|
|
|
|
2024-08-19 17:18:09 +02:00
|
|
|
[node name="Player" type="CharacterBody2D" node_paths=PackedStringArray("sfx", "sfx_large")]
|
2024-08-17 17:33:34 +02:00
|
|
|
collision_layer = 4
|
2024-08-19 01:29:43 +02:00
|
|
|
collision_mask = 51
|
2024-08-17 00:32:52 +02:00
|
|
|
script = ExtResource("1_a6lhy")
|
2024-08-19 16:24:06 +02:00
|
|
|
sfx = NodePath("AudioStreamPlayer2D")
|
2024-08-19 17:18:09 +02:00
|
|
|
sfx_large = NodePath("AudioStreamPlayer2D2")
|
2024-08-19 14:39:07 +02:00
|
|
|
speed = 250
|
2024-08-17 00:32:52 +02:00
|
|
|
jump_strength = 600
|
|
|
|
|
|
|
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
2024-08-18 21:07:16 +02:00
|
|
|
shape = SubResource("RectangleShape2D_31jvr")
|
2024-08-17 00:32:52 +02:00
|
|
|
|
|
|
|
[node name="Sprite2D" type="Sprite2D" parent="."]
|
|
|
|
texture = ExtResource("2_sscjv")
|
2024-08-17 17:33:34 +02:00
|
|
|
|
|
|
|
[node name="Hurtbox" type="Area2D" parent="."]
|
|
|
|
collision_layer = 0
|
|
|
|
collision_mask = 2
|
|
|
|
|
|
|
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="Hurtbox"]
|
|
|
|
shape = SubResource("CircleShape2D_vxfel")
|
|
|
|
|
2024-08-18 15:43:21 +02:00
|
|
|
[node name="data_link" type="Line2D" parent="."]
|
|
|
|
visible = false
|
|
|
|
texture_repeat = 2
|
|
|
|
points = PackedVector2Array(0, 0, 0, 0)
|
|
|
|
default_color = Color(0.298039, 1, 0.141176, 1)
|
|
|
|
texture = ExtResource("3_yg3ur")
|
|
|
|
texture_mode = 1
|
|
|
|
|
2024-08-19 16:24:06 +02:00
|
|
|
[node name="AudioStreamPlayer2D" type="AudioStreamPlayer2D" parent="."]
|
|
|
|
stream = ExtResource("4_jit8y")
|
2024-08-19 17:18:09 +02:00
|
|
|
volume_db = -12.876
|
2024-08-19 16:24:06 +02:00
|
|
|
pitch_scale = 0.92
|
|
|
|
|
2024-08-19 17:18:09 +02:00
|
|
|
[node name="AudioStreamPlayer2D2" type="AudioStreamPlayer2D" parent="."]
|
|
|
|
stream = ExtResource("4_jit8y")
|
|
|
|
volume_db = -12.876
|
|
|
|
pitch_scale = 0.51
|
|
|
|
|
2024-08-17 17:33:34 +02:00
|
|
|
[connection signal="body_entered" from="Hurtbox" to="." method="_on_hurtbox_body_entered"]
|