DayZ Scripts
v1.21.156300 ยท Jun 20, 2023
 
Loading...
Searching...
No Matches
CCTNonRuined.c
Go to the documentation of this file.
2{
3 protected float m_MaximalActionDistanceSq;
4
5 void CCTNonRuined ( float maximal_target_distance = UAMaxDistances.DEFAULT )
6 {
7 m_MaximalActionDistanceSq = maximal_target_distance * maximal_target_distance;
8 }
9
10 override bool Can( PlayerBase player, ActionTarget target )
11 {
12 if( !target )
13 return false;
14
15 Object targetObject = target.GetObject();
16 if ( !player || !targetObject || targetObject.IsMan() || targetObject.IsDamageDestroyed() )
17 return false;
18
19 return ( vector.DistanceSq(targetObject.GetPosition(), player.GetPosition()) <= m_MaximalActionDistanceSq );
20 }
21};
class ActionTargets ActionTarget
protected float m_MaximalActionDistanceSq
Definition CCTNonRuined.c:3
override bool Can(PlayerBase player, ActionTarget target)
void CCTNonRuined(float maximal_target_distance=UAMaxDistances.DEFAULT)
Definition CCTNonRuined.c:5
const float DEFAULT
static proto native float DistanceSq(vector v1, vector v2)
Returns the square distance between tips of two 3D vectors.