enum PathFindingBehaviour (Niantic.ARDK.Extensions.Gameboard.PathFindingBehaviour)

Overview

enum PathFindingBehaviour {
    SingleSurface                 = 0,
    InterSurfacePreferPerformance = 1,
    InterSurfacePreferResults     = 2,
};

Detailed Documentation

Enum Values

SingleSurface

The calculated route will navigate to the destination or the closest point to it within a single surface.

InterSurfacePreferPerformance

The calculated route can contain jumps to other surfaces.

Note

The agent will only consider immediate nodes during the search. This method is faster, but does not always find an existing path.

InterSurfacePreferResults

The calculated route can contain jumps to other surfaces.

Note

This method is slower, but it finds a path if it exists.