29 lines
745 B
Plaintext
29 lines
745 B
Plaintext
[gd_scene load_steps=4 format=2]
|
|
|
|
[ext_resource path="res://assets/placeholder_white.png" type="Texture" id=1]
|
|
[ext_resource path="res://DropOffPoint.gd" type="Script" id=2]
|
|
|
|
[sub_resource type="CircleShape2D" id=1]
|
|
radius = 25.16
|
|
|
|
[node name="DropOffPoint" type="Node2D" groups=[
|
|
"DropOffPoint",
|
|
]]
|
|
script = ExtResource( 2 )
|
|
|
|
[node name="Area2D" type="Area2D" parent="."]
|
|
|
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
|
|
shape = SubResource( 1 )
|
|
|
|
[node name="Sprite" type="Sprite" parent="."]
|
|
rotation = 0.785398
|
|
scale = Vector2( 3, 3 )
|
|
texture = ExtResource( 1 )
|
|
|
|
[node name="Timer" type="Timer" parent="."]
|
|
wait_time = 10.0
|
|
autostart = true
|
|
|
|
[connection signal="timeout" from="Timer" to="." method="_on_Timer_timeout"]
|