1
Fork 0
mirror of https://github.com/Steffo99/hella-farm.git synced 2024-11-22 08:04:23 +00:00
hella-farm/entities/top_hat.gd

22 lines
407 B
GDScript3
Raw Normal View History

extends CharacterBody2D
class_name TopHat
2024-04-24 02:16:09 +00:00
@onready var animator: AnimationPlayer = %"Animator"
func _on_move(movement: Vector2) -> void:
move_and_collide(movement)
2024-04-21 22:56:35 +00:00
func _on_dragged(_cursor: Cursor) -> void:
collision_layer = 16
collision_mask = 18
z_index = 1
2024-04-24 02:16:09 +00:00
animator.play(&"drag_start")
2024-04-21 22:56:35 +00:00
func _on_fallen() -> void:
collision_layer = 8
collision_mask = 14
z_index = 0
2024-04-24 02:16:09 +00:00
animator.play(&"RESET")