Skip to content

AquilaNode

Michael edited this page Sep 12, 2021 · 2 revisions

This is the class which represents a node in the pathfinding network. For information about the network itself, see this page.

AquliaNodes shouldn't be instantiated directly, but rather created using the Aquila::AddNode method. They are not intended to see much use outside the context of the pathfinding network.

Properties

AquilaNode::data

The data attached to the node. This is the value passed as a parameter to the Aquila::AddNode method. You are free to read the value from it, or set it to something else if you would like to change what the node represents.

Methods

AquilaNode::GetConnections()

Returns: array of AquilaNode

Returns an array of every node connected to the node calling this method.

Clone this wiki locally