Click or drag to resize

NavigatorSamplePointsAsync Method

Samples the navigator for points.

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

Parameters

parameters
Type: ff14bot.PathingSamplePointsParameters
The parameters.

Return Value

Type: TaskListVector3
The result of the sampling. Note that this may return fewer points than requested.
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