Tough_Crowd/godot/scenes/objects/bottle.tscn

31 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-01-27 14:50:20 +00:00
[gd_scene load_steps=4 format=3 uid="uid://c5f5v1wtottyp"]
[ext_resource type="Script" path="res://scenes/objects/bottle.gd" id="1_87ktq"]
2024-01-27 16:32:41 +00:00
[ext_resource type="Texture2D" uid="uid://cow4dd0hlxrgr" path="res://sprites/room/bottle.svg" id="1_uea7l"]
2024-01-27 14:50:20 +00:00
[sub_resource type="CapsuleShape2D" id="CapsuleShape2D_p8qcj"]
radius = 22.4893
height = 44.9786
[node name="BottleSprite" type="Sprite2D"]
2024-01-27 16:06:28 +00:00
z_index = 50
2024-01-27 14:50:20 +00:00
scale = Vector2(0.25, 0.25)
texture = ExtResource("1_uea7l")
script = ExtResource("1_87ktq")
[node name="GrowthTimer" type="Timer" parent="."]
wait_time = 0.1
autostart = true
[node name="Bottle" type="Area2D" parent="."]
collision_layer = 4096
[node name="CollisionShape2D" type="CollisionShape2D" parent="Bottle"]
rotation = 0.487459
scale = Vector2(1, 2.66666)
shape = SubResource("CapsuleShape2D_p8qcj")
[connection signal="timeout" from="GrowthTimer" to="." method="_on_growth_timer_timeout"]
[connection signal="area_entered" from="Bottle" to="." method="_on_bottle_area_entered"]
[connection signal="area_exited" from="Bottle" to="." method="_on_bottle_area_exited"]