GMTK-2024/gmtk_2024/objects/Player.tscn

40 lines
1.3 KiB
Text
Raw Normal View History

2024-08-18 15:43:21 +02:00
[gd_scene load_steps=6 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-18 21:18:52 +02:00
[ext_resource type="Texture2D" uid="uid://bd7y5w6cfi5ly" path="res://textures/Eye Lase.png" id="3_yg3ur"]
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-17 00:32:52 +02:00
[node name="Player" type="CharacterBody2D"]
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")
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-17 17:33:34 +02:00
[connection signal="body_entered" from="Hurtbox" to="." method="_on_hurtbox_body_entered"]