mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-22 08:04:23 +00:00
16 lines
297 B
GDScript
16 lines
297 B
GDScript
extends CharacterBody2D
|
|
class_name TopHat
|
|
|
|
|
|
func _on_move(movement: Vector2) -> void:
|
|
move_and_collide(movement)
|
|
|
|
func _on_dragged(_cursor: Cursor) -> void:
|
|
collision_layer = 16
|
|
collision_mask = 18
|
|
z_index = 1
|
|
|
|
func _on_fallen() -> void:
|
|
collision_layer = 8
|
|
collision_mask = 14
|
|
z_index = 0
|