Click or drag to resize

NavigationProvider.SamplePointsAsync Method

Samples the navigator for points.

Namespace:  ff14bot.Pathing
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public virtual Task<List<Vector3>> SamplePointsAsync(
	SamplePointsParameters parameters
)

Parameters

parameters
Type: ff14bot.Pathing.SamplePointsParameters
The parameters.

Return Value

Type: Task<List<Vector3>>
The result of the sampling.
Exceptions
ExceptionCondition
ArgumentNullExceptionparameters is null.
ArgumentExceptionparameters is in an invalid state.
Remarks
This is an external asynchronous task, and should not be awaited directly from coroutines. See [!:Coroutine.ExternalTask(Func<Task>)].
See Also