DayZ 1.24
Loading...
Searching...
No Matches
CCTCursorNoRuinCheck.c
Go to the documentation of this file.
2{
3 protected float m_MaximalActionDistanceSq;
4
5 //approximate head heights
6 const float HEIGHT_ERECT = 1.6;
7 const float HEIGHT_CROUCH = 1.05;
8 const float HEIGHT_PRONE = 0.66;
9
14
15 override bool Can(PlayerBase player, ActionTarget target)
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)
25 return false;
26
29
30 float distanceRoot = vector.DistanceSq(target.GetCursorHitPos(), player.GetPosition());
31 float distanceHead = vector.DistanceSq(target.GetCursorHitPos(), playerHeadPos);
32
34 }
35};
void CCTCursorNoRuinCheck(float maximal_target_distance=UAMaxDistances.DEFAULT)
override bool Can(PlayerBase player, ActionTarget target)
const float DEFAULT
static proto native float DistanceSq(vector v1, vector v2)
Returns the square distance between tips of two 3D vectors.