Click or drag to resize

NullProvider Class

Navigation provider that is used when no navigation is desired
Inheritance Hierarchy
SystemObject
  ff14bot.PathingNavigationProvider
    ff14bot.NavigationNullProvider

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

The NullProvider type exposes the following members.

Constructors
  NameDescription
Public methodNullProvider
Top
Properties
  NameDescription
Public propertyIsCurrent
Gets a bool that indicates whether this is the current navigation provider.
(Inherited from NavigationProvider.)
Public propertyPathPrecision
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.
(Overrides NavigationProviderAtLocation(Vector3, Vector3).)
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)
(Inherited from NavigationProvider.)
Public methodCanFullyNavigateTo(IEnumerableCanFullyNavigateTarget)
Public methodCanFullyNavigateTo(ICollectionCanFullyNavigateTarget)
Check if multiple locations can be pathed to on the current zone
(Inherited from NavigationProvider.)
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)
(Inherited from NavigationProvider.)
Public methodCanFullyNavigateToAsync(IEnumerableCanFullyNavigateTarget)
Public methodCanFullyNavigateToAsync(IEnumerableCanFullyNavigateTarget, Vector3, UInt16)
Public methodCanNavigateFully
Public methodClear
Clears the current path in this nav provider.
(Overrides NavigationProviderClear.)
Public methodClearStuckInfo
Clears the stuck handler information.
(Inherited from NavigationProvider.)
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.
(Inherited from NavigationProvider.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodMoveTo
Moves towards the specified locations.
(Overrides NavigationProviderMoveTo(MoveToParameters).)
Public methodMoveToRandomSpotWithin
Public methodOnPulse
Pulses this provider. Called every tick.
(Overrides NavigationProviderOnPulse.)
Public methodOnRemoveAsCurrent
Called when this NavigationProvider is removed as the current by assigning a different provider to NavigationProvider.
(Inherited from NavigationProvider.)
Public methodOnSetAsCurrent
Called when this NavigationProvider is set as the current by assigning it to NavigationProvider.
(Inherited from NavigationProvider.)
Public methodSamplePointsAsync
Samples the navigator for points.
(Inherited from NavigationProvider.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also