1
Fork 0
mirror of https://github.com/Steffo99/hella-farm.git synced 2024-11-22 16:14:22 +00:00
hella-farm/entities/sheep.gd

26 lines
500 B
GDScript3
Raw Normal View History

2024-04-14 03:13:37 +00:00
extends CharacterBody2D
class_name Sheep
2024-04-15 03:43:15 +00:00
@onready var sprite: SpriteLeftRight = $"Sprite"
2024-04-15 20:20:13 +00:00
@onready var animator: AnimationPlayer = $"Animator"
2024-04-14 03:13:37 +00:00
2024-04-15 20:20:13 +00:00
func _ready() -> void:
animator.play("RESET")
2024-04-14 03:13:37 +00:00
func _on_move(movement: Vector2) -> void:
move_and_collide(movement)
sprite.handle_move(movement)
2024-04-20 01:49:32 +00:00
2024-04-20 02:31:59 +00:00
func _on_draggable_dragged(_cursor: Cursor) -> void:
2024-04-20 01:49:32 +00:00
collision_layer = 16
2024-04-20 02:31:59 +00:00
collision_mask = 18
z_index = 1
2024-04-20 01:49:32 +00:00
func _on_draggable_dropped() -> void:
collision_layer = 8
2024-04-20 02:31:59 +00:00
collision_mask = 14
z_index = 0