Click or drag to resize

NavigationProvider Class

Inheritance Hierarchy

Namespace:  ff14bot.Pathing
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public abstract class NavigationProvider

The NavigationProvider type exposes the following members.

Constructors
  NameDescription
Protected methodNavigationProvider
Top
Properties
  NameDescription
Public propertyIsCurrent
Gets a bool that indicates whether this is the current navigation provider.
Top
Methods
  NameDescription
Public methodAtLocation
Gets a bool that indicates whether one position is considered to be at another position. Can be used to check if the player has reached a destination, for example.
Public methodCanFullyNavigateFrom
Check if multiple locations can be path from to one specific spot This is an external asynchronous task, and should not be awaited directly from coroutines. See ExternalTask(Task)
Public methodCanFullyNavigateTo(ICollectionCanFullyNavigateTarget)
Check if multiple locations can be pathed to on the current zone
Public methodCanFullyNavigateTo(ICollectionCanFullyNavigateTarget, Vector3, UInt16)
Check if multiple locations can be pathed to on the given zoneid This is an external asynchronous task, and should not be awaited directly from coroutines. See ExternalTask(Task)
Public methodClear
Clears the current path in this nav provider.
Public methodClearStuckInfo
Clears the stuck handler information.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodLookupPathInfo
Looks up the information of a path going to an object.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodMoveTo
Moves towards the specified locations.
Public methodOnPulse
Pulses this provider. Called every tick.
Public methodOnRemoveAsCurrent
Called when this NavigationProvider is removed as the current by assigning a different provider to NavigationProvider.
Public methodOnSetAsCurrent
Called when this NavigationProvider is set as the current by assigning it to NavigationProvider.
Public methodSamplePointsAsync
Samples the navigator for points.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also