Click or drag to resize

AvoidInfo Constructor

Initializes a new instance of the AvoidInfo class.

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

Parameters

condition
Type: SystemFuncBoolean
The condition.
locationProducer
Type: SystemFuncObject, Vector3
collectionProducer
Type: SystemFuncIEnumerableObject
leashPointProducer
Type: SystemFuncVector3
The leash point selector.
leashRadius (Optional)
Type: SystemSingle
The leash radius.
ignoreIfBlocking (Optional)
Type: SystemBoolean
if set to true stay away if no avoid path is found.
objectValidator (Optional)
Type: SystemFuncObject, Boolean
priority (Optional)
Type: ff14bot.Pathing.AvoidanceAvoidancePriority
The priority.
See Also