DayZ 1.24
Loading...
Searching...
No Matches
CCTCursor Class Reference
Inheritance diagram for CCTCursor:
[legend]
Collaboration diagram for CCTCursor:
[legend]

Protected Member Functions

void CCTCursor (float maximal_target_distance=UAMaxDistances.DEFAULT)
 
override bool Can (PlayerBase player, ActionTarget target)
 

Protected Attributes

float m_MaximalActionDistanceSq
 
const float HEIGHT_ERECT = 1.6
 
const float HEIGHT_CROUCH = 1.05
 
const float HEIGHT_PRONE = 0.66
 

Detailed Description

Definition at line 1 of file CCTCursor.c.

Constructor & Destructor Documentation

◆ CCTCursor()

void CCTCursor::CCTCursor ( float maximal_target_distance = UAMaxDistances.DEFAULT)
inlineprotected

Definition at line 10 of file CCTCursor.c.

References m_MaximalActionDistanceSq.

Member Function Documentation

◆ Can()

override bool CCTCursor::Can ( PlayerBase player,
ActionTarget target )
inlineprotected

Definition at line 15 of file CCTCursor.c.

16 {
17 if (!target)
18 return false;
19
20 Object targetObject = target.GetObject();
21 if (!targetObject)
22 targetObject = target.GetParent();
23
24 if (!player || !targetObject || targetObject.IsDamageDestroyed())
25 return false;
26
29
30 float distanceRoot = vector.DistanceSq(target.GetCursorHitPos(), player.GetPosition());
31 float distanceHead = vector.DistanceSq(target.GetCursorHitPos(), playerHeadPos);
32
34 }
static proto native float DistanceSq(vector v1, vector v2)
Returns the square distance between tips of two 3D vectors.

References vector::DistanceSq(), and m_MaximalActionDistanceSq.

Member Data Documentation

◆ HEIGHT_CROUCH

const float CCTCursor::HEIGHT_CROUCH = 1.05
protected

Definition at line 7 of file CCTCursor.c.

◆ HEIGHT_ERECT

const float CCTCursor::HEIGHT_ERECT = 1.6
protected

Definition at line 6 of file CCTCursor.c.

◆ HEIGHT_PRONE

const float CCTCursor::HEIGHT_PRONE = 0.66
protected

Definition at line 8 of file CCTCursor.c.

◆ m_MaximalActionDistanceSq

float CCTCursor::m_MaximalActionDistanceSq
protected

Definition at line 3 of file CCTCursor.c.

Referenced by Can(), and CCTCursor().


The documentation for this class was generated from the following file: