1
Fork 0
mirror of https://github.com/Steffo99/hella-farm.git synced 2024-11-21 23:54:23 +00:00
hella-farm/entities/top_hat.gd
2024-05-03 01:37:20 +02:00

17 lines
278 B
GDScript

extends Entity
class_name TopHat
func _on_dragged(_cursor: Cursor) -> void:
set_flying()
animator.play(&"drag_start")
func _on_fallen() -> void:
set_grounded()
animator.play(&"RESET")
func _on_trapped() -> void:
set_trapped()
func _on_freed() -> void:
set_grounded()