Files
SpaceBots/.svn/pristine/19/198a5145cab52e781d4f933185a1daee0b36ecbb.svn-base
2026-01-21 23:51:53 +01:00

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")