mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-22 16:14:22 +00:00
Stefano Pigozzi
3d17dcd3f0
Throwing and drag isn't implemented yet. Any ideas for how to do it with this framework? Might be a good idea to do it on a branch first...
15 lines
305 B
GDScript
15 lines
305 B
GDScript
extends CharacterBody2D
|
|
class_name Sheep
|
|
|
|
|
|
@onready var draggable: Draggable = $"Draggable"
|
|
|
|
|
|
func _on_move(movement: Vector2) -> void:
|
|
if not draggable.being_dragged:
|
|
move_and_collide(movement)
|
|
|
|
|
|
func _on_drag_move(movement: Vector2) -> void:
|
|
if draggable.being_dragged:
|
|
move_and_collide(movement)
|