capri/objects/ice/ice.tscn
2025-07-25 17:57:23 -06:00

35 lines
1.3 KiB
Text

[gd_scene load_steps=5 format=3 uid="uid://b5eso40mjhlmv"]
[ext_resource type="Texture2D" uid="uid://d0e475k64fbja" path="res://assets/textures/ice/ice.png" id="1_0p7ug"]
[ext_resource type="Script" uid="uid://b3d5t6iuhg3qf" path="res://objects/ice/ice.gd" id="1_hgdc3"]
[sub_resource type="RectangleShape2D" id="RectangleShape2D_sv4q1"]
size = Vector2(16, 17)
[sub_resource type="RectangleShape2D" id="RectangleShape2D_xodyg"]
size = Vector2(16, 16)
[node name="Ice" type="Node2D"]
script = ExtResource("1_hgdc3")
[node name="PlayerDetector" type="Area2D" parent="."]
collision_layer = 0
collision_mask = 16
monitorable = false
[node name="CollisionShape2D" type="CollisionShape2D" parent="PlayerDetector"]
position = Vector2(0, -0.5)
shape = SubResource("RectangleShape2D_sv4q1")
[node name="StaticBody2D" type="StaticBody2D" parent="."]
collision_layer = 2
collision_mask = 0
[node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D"]
shape = SubResource("RectangleShape2D_xodyg")
[node name="Sprite2D" type="Sprite2D" parent="."]
texture = ExtResource("1_0p7ug")
[connection signal="body_entered" from="PlayerDetector" to="." method="_on_player_detector_body_entered"]
[connection signal="body_exited" from="PlayerDetector" to="." method="_on_player_detector_body_exited"]