Returns the node in the graph at the specified grid coordinates.
SDKs
- iOS 9.0+
- macOS 10.11+
- Mac Catalyst 13.0+
- tvOS 9.0+
Framework
- Gameplay
Kit
Declaration
- (Node Type)nodeAtGridPosition:(vector _int2)position;
Parameters
position
The grid location to query.
Return Value
The grid node at the specified location, or nil
if there is no node at that location.
Discussion
This method finds nodes that are part of the grid created by the graph. You can attach other nodes to the graph (for example, to represent the positions of game entities in the grid) with the connect
method, but such nodes are not part of the grid itself.