DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ PPOperators

PP operators, specify operation between subsequent layers.

Элементы перечислений
LOWEST 
HIGHEST 
ADD 
ADD_RELATIVE 
SUBSTRACT 
SUBSTRACT_RELATIVE 
SUBSTRACT_REVERSE 
SUBSTRACT_REVERSE_RELATIVE 
MULTIPLICATIVE 
SET 
OVERRIDE 

См. определение в файле PPEConstants.c строка 52

53{
54 LOWEST, //only lowest value gets used. Note - if first request, it is compared against default values!
55 HIGHEST, //only highest value gets used. Note - if first request, it is compared against default values!
56 ADD, //LINEAR addition
57 ADD_RELATIVE, //LINEAR relative addition (relative to diff between current and max, where applicable. Otherwise used as absolute addition)
58 SUBSTRACT, //LINEAR substraction
59 SUBSTRACT_RELATIVE, //LINEAR relative substraction
60 SUBSTRACT_REVERSE, //LINEAR sub. target from dst
61 SUBSTRACT_REVERSE_RELATIVE, //LINEAR relative sub. target from dst
62 MULTIPLICATIVE, //LINEAR multiplication
63 SET, //sets the value, does not terminate possible further calculations
64 OVERRIDE //does not interact; sets the value, and terminates possible further calculations. Use with care, preferred use is SET with higher priority command
65};
enum EWetnessLevel ADD
@ MULTIPLICATIVE
Определения PPEConstants.c:62
@ SUBSTRACT_REVERSE
Определения PPEConstants.c:60
@ SUBSTRACT_REVERSE_RELATIVE
Определения PPEConstants.c:61
@ ADD_RELATIVE
Определения PPEConstants.c:57
@ OVERRIDE
Определения PPEConstants.c:64
@ SUBSTRACT_RELATIVE
Определения PPEConstants.c:59
@ SUBSTRACT
Определения PPEConstants.c:58
@ SET
Определения PPEConstants.c:63
@ HIGHEST
Определения PPEConstants.c:55
@ LOWEST
Определения PPEConstants.c:54