Click or drag to resize

WorldManagerAdvancedRaycast Method

Performs a raycast from start to end and checks if the triangle has the flags provided flags1 and flags2 should have the same values most of the time Raycasts far from the player are unreliable as the gameworld gets unloaded

Namespace:  ff14bot.Managers
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public static bool AdvancedRaycast(
	Vector3 start,
	Vector3 end,
	RaycastFlags flags1,
	RaycastFlags flags2,
	out Vector3 hit
)

Parameters

start
Type: Clio.UtilitiesVector3
end
Type: Clio.UtilitiesVector3
flags1
Type: ff14bot.EnumsRaycastFlags
flags2
Type: ff14bot.EnumsRaycastFlags
hit
Type: Clio.UtilitiesVector3

Return Value

Type: Boolean
true if there exists an object that matched the passed flags
See Also