9 lines
144 B
GDScript
9 lines
144 B
GDScript
extends Area3D
|
|
|
|
@export var animations : String = "sword"
|
|
@export var power : int = 1
|
|
|
|
var held := false
|
|
|
|
func can_interact():
|
|
return not held
|