DayZ 1.26
DayZ Explorer by KGB
Загрузка...
Поиск...
Не найдено
Файл ActionWashHandsSnow.c

См. исходные тексты.

Структуры данных

class  ActionWashHandsSnowCB
 

Функции

ActionWashHandsSnowCB ActionContinuousBaseCB ActionWashHandsSnow ()
 
override void CreateActionComponent ()
 
override void CreateConditionComponents ()
 

Функции

◆ ActionWashHandsSnow()

12 {
13 m_CallbackClass = ActionWashHandsSnowCB;
14 m_CommandUID = DayZPlayerConstants.CMD_ACTIONFB_WASHHANDSPOND;
15 m_FullBody = true;
16 m_StanceMask = DayZPlayerConstants.STANCEMASK_CROUCH;
17 m_Text = "#wash_hands";
18 }
int m_CommandUID
Definition ActionBase.c:31
int m_StanceMask
Definition ActionBase.c:33
Definition ActionWashHandsSnow.c:2
DayZPlayerConstants
defined in C++
Definition dayzplayer.c:602

Используется в ActionConstructor::RegisterActions() и ManBase::SetActions().

◆ CreateActionComponent()

override void CreateActionComponent ( )
12 {
13 m_CallbackClass = ActionWashHandsSnowCB;
14 m_CommandUID = DayZPlayerConstants.CMD_ACTIONFB_WASHHANDSPOND;
15 m_FullBody = true;

Перекрестные ссылки m_CommandUID и m_StanceMask.

◆ CreateConditionComponents()

override void CreateConditionComponents ( )
21 {
22 m_ConditionItem = new CCINone();
23 m_ConditionTarget = new CCTWaterSurfaceEx(UAMaxDistances.DEFAULT, LIQUID_SNOW);
24 }
void CCTWaterSurfaceEx(float maximal_target_distance, int allowedLiquidSource)
Definition CCTWaterSurface.c:62
Definition CCINone.c:2
Definition ActionConstants.c:106
const float DEFAULT
Definition ActionConstants.c:108
const int LIQUID_SNOW
Definition constants.c:526

Перекрестные ссылки CCTWaterSurfaceEx(), UAMaxDistances::DEFAULT и LIQUID_SNOW.