9 lines
197 B
GDScript
9 lines
197 B
GDScript
extends Node
|
|
class_name FacingDirectionComponent
|
|
|
|
@export var current_direction := Enums.Directions.DOWN
|
|
|
|
# Public Methods
|
|
func GetCurrentDirection() -> Enums.Directions:
|
|
return current_direction
|