Click or drag to resize

AvoidLocationInfoT Constructor

Initializes a new instance of the AvoidObjectInfo class.

Namespace:  ff14bot.Pathing.Avoidance
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public AvoidLocationInfo(
	Func<bool> condition,
	Func<T, Vector3> locationProducer,
	Func<T, float> radiusProducer,
	Func<IEnumerable<T>> collecionSelection = null,
	Func<Vector3> leashPointSelector = null,
	float leashRadius = 40f,
	Func<T, bool> objectValidator = null,
	bool ignoreIfBlocking = false,
	AvoidancePriority priority = AvoidancePriority.Medium
)

Parameters

condition
Type: SystemFuncBoolean
The condition.
locationProducer
Type: SystemFuncT, Vector3
The location selector.
radiusProducer
Type: SystemFuncT, Single
The radius selector.
collecionSelection (Optional)
Type: SystemFuncIEnumerableT
Optional collection of objects that are passed as args to LocationSelector
leashPointSelector (Optional)
Type: SystemFuncVector3
The leash point selector.
leashRadius (Optional)
Type: SystemSingle
The leash radius.
objectValidator (Optional)
Type: SystemFuncT, Boolean
ignoreIfBlocking (Optional)
Type: SystemBoolean
Ignores avoid if true
priority (Optional)
Type: ff14bot.Pathing.AvoidanceAvoidancePriority
The priority.
See Also