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

◆ Start()

void Start ( )
protected

Plays all elements this effects consists of.

Заметки
Is called by SEffectManager.Play methods

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

156 {
157 // It is already playing!
158 if (IsPlaying())
159 return;
160
162 // I can't call this from inside the method with same name
163 // because that method is often overriden without super......
164 Event_OnStarted.Invoke(this);
165 }
bool IsPlaying()
Returns true when the Effect is playing, false otherwise.
Определения Effect.c:195
Event_OnStarted
Event used when Start was called.
Определения Effect.c:302

Перекрестные ссылки Event_OnStarted и IsPlaying().

Используется в HFSMBase< WeaponStateBase, WeaponEventBase, WeaponActionBase, WeaponGuardBase >::LoadAndSetCurrentFSMState(), HFSMBase< WeaponStateBase, WeaponEventBase, WeaponActionBase, WeaponGuardBase >::OnStoreLoad(), HFSMBase< WeaponStateBase, WeaponEventBase, WeaponActionBase, WeaponGuardBase >::RandomizeFSMStateEx() и HFSMBase< WeaponStateBase, WeaponEventBase, WeaponActionBase, WeaponGuardBase >::ValidateAndRepairHelper().