mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-22 08:04:23 +00:00
9 lines
182 B
GDScript
9 lines
182 B
GDScript
@icon("res://behaviours/move.svg")
|
|
extends Node2D
|
|
class_name Move
|
|
|
|
|
|
signal move(norm: Vector2)
|
|
|
|
## Whether this component should emit [signal move].
|
|
@export var enabled: bool = true
|