DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено
HoldBreathEvents.c
См. документацию.
2{
7
8 override bool HasHoldBreathException()
9 {
10 return true;
11 }
12
13}
14
15
17{
23 }
25 override bool HasPriorityOverCurrent(PlayerBase player, EPlayerSoundEventID other_state_id, EPlayerSoundEventType type_other)
26 {
27 if (other_state_id == EPlayerSoundEventID.RELEASE_BREATH)
28 {
29 return false;
30 }
31 return true;
32 }
33}
34
36{
43
44 override bool HasPriorityOverCurrent(PlayerBase player, EPlayerSoundEventID other_state_id, EPlayerSoundEventType type_other)
45 {
46 return false;
47 }
48}
49
51{
53 {
55 m_ID = EPlayerSoundEventID.RELEASE_BREATH;
57 }
58
59 override bool HasPriorityOverCurrent(PlayerBase player, EPlayerSoundEventID other_state_id, EPlayerSoundEventType type_other)
60 {
61 if( other_state_id == EPlayerSoundEventID.HOLD_BREATH)
62 {
63 return false;
64 }
65 return true;
66 }
67}
eBleedingSourceType m_Type
Определения BleedingSource.c:25
int m_ID
ID of effect, given by SEffectManager when registered (automatically done when playing through it)
Определения Effect.c:49
class ExhaustedBreathSoundEvent extends HoldBreathSoundEventBase ReleaseBreathSoundEvent()
Определения HoldBreathEvents.c:52
class HoldBreathSoundEventBase extends PlayerSoundEventBase HoldBreathSoundEvent()
Определения HoldBreathEvents.c:18
EPlayerSoundEventType
Определения PlayerSoundEventBase.c:2
EPlayerSoundEventType m_HasPriorityOverTypes
Определения PlayerSoundEventBase.c:40
EPlayerSoundEventID
Определения PlayerSoundEventHandler.c:3
int m_SoundVoiceAnimEventClassID
Определения SoundEvents.c:89
override bool HasPriorityOverCurrent(PlayerBase player, EPlayerSoundEventID other_state_id, EPlayerSoundEventType type_other)
Определения HoldBreathEvents.c:44
void ExhaustedBreathSoundEvent()
Определения HoldBreathEvents.c:37
Определения PlayerBaseClient.c:2
override bool HasHoldBreathException()
Определения HoldBreathEvents.c:8
void HoldBreathSoundEventBase()
Определения HoldBreathEvents.c:3