DayZ 1.24
|
Private Member Functions | |
void | RaycastRVParams (vector vBeg, vector vEnd, Object pIgnore=null, float fRadius=0.0) |
Private Attributes | |
vector | begPos |
begin position of raycast (e.g. player position) | |
vector | endPos |
end position of raycast (e.g. player direction) | |
Object | ignore |
ignore this object in collision, used only if groundOnly is false | |
Object | with |
ignore object with this object, otherwise collision hits, used only if groundOnly is false | |
float | radius |
radius along the ray tested | |
CollisionFlags | flags |
int | type |
bool | sorted |
used only if groundOnly = false | |
bool | groundOnly |
raycasts only ground (ignores all objects). Default value is false if not needed. | |
Input parameters for RaycastRVProxy function.
Definition at line 49 of file DayZPhysics.c.
|
inlineprivate |
Definition at line 78 of file DayZPhysics.c.
References begPos, endPos, flags, groundOnly, ignore, radius, sorted, type, and with.
|
private |
begin position of raycast (e.g. player position)
Definition at line 51 of file DayZPhysics.c.
Referenced by RaycastRVParams().
|
private |
end position of raycast (e.g. player direction)
Definition at line 52 of file DayZPhysics.c.
Referenced by RaycastRVParams().
|
private |
Sets the raycast behaviour in terms of result.
Definition at line 63 of file DayZPhysics.c.
Referenced by RaycastRVParams().
|
private |
raycasts only ground (ignores all objects). Default value is false if not needed.
Definition at line 76 of file DayZPhysics.c.
Referenced by RaycastRVParams().
|
private |
ignore this object in collision, used only if groundOnly is false
Definition at line 54 of file DayZPhysics.c.
Referenced by RaycastRVParams().
|
private |
radius along the ray tested
Definition at line 57 of file DayZPhysics.c.
Referenced by RaycastRVParams().
|
private |
used only if groundOnly = false
Definition at line 75 of file DayZPhysics.c.
Referenced by RaycastRVParams().
|
private |
type of intersection, possible values ObjIntersectFire(0), ObjIntersectView(1), ObjIntersectGeom(2), ObjIntersectIFire(3), ObjIntersectNone(4)
Definition at line 73 of file DayZPhysics.c.
Referenced by RaycastRVParams().
|
private |
ignore object with this object, otherwise collision hits, used only if groundOnly is false
Definition at line 55 of file DayZPhysics.c.
Referenced by RaycastRVParams().