13 lines
289 B
Plaintext
13 lines
289 B
Plaintext
extends Marker3D
|
|
class_name PathfindingNode
|
|
|
|
var id: int
|
|
|
|
@export var proxy_node := false ##If true this node will added to the proxyNode group on ready
|
|
|
|
@export var nextNodes: Array[PathfindingNode]
|
|
@export var astar_weight: float = 1.0
|
|
|
|
func _ready() -> void:
|
|
add_to_group("proxyNode")
|