12345678910111213141516171819202122 |
- [gd_scene load_steps=4 format=3 uid="uid://cbmr1tbvbheda"]
- [ext_resource type="Script" path="res://assets/scenes/survivor_spot.gd" id="1_3saq6"]
- [ext_resource type="Texture2D" uid="uid://dvjpp1eoxa2oh" path="res://assets/textures/survivor_slot.png" id="1_su5a8"]
- [sub_resource type="CircleShape2D" id="CircleShape2D_jg6bj"]
- radius = 43.0
- [node name="SurvivorSpot" type="Area2D" groups=["slot"]]
- scale = Vector2(0.5, 0.5)
- collision_layer = 64
- collision_mask = 128
- script = ExtResource("1_3saq6")
- [node name="Sprite2D" type="Sprite2D" parent="."]
- texture = ExtResource("1_su5a8")
- [node name="CollisionShape2D" type="CollisionShape2D" parent="."]
- shape = SubResource("CircleShape2D_jg6bj")
- [connection signal="mouse_entered" from="." to="." method="_on_mouse_entered"]
- [connection signal="mouse_exited" from="." to="." method="_on_mouse_exited"]
|