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

◆ Stop()

static void SEffectManager::Stop ( int effect_id)
inlinestaticprotected

Stops the Effect.

Аргументы
effect_idint The ID of the Effect to Stop

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

111 {
112 Effect eff = m_EffectsMap.Get(effect_id);
113
114 if (eff)
115 {
116 eff.Stop();
117 }
118 else
119 {
120 ErrorEx(string.Format("Failed to stop Effect with ID %1. The ID is not registered in m_EffectsMap!", effect_id));
121 }
122 }
void Effect()
ctor
Определения Effect.c:70
static ref map< int, ref Effect > m_EffectsMap
Static map of all registered effects <id, Effect>
Определения EffectManager.c:8
enum ShapeType ErrorEx

Перекрестные ссылки Effect(), ErrorEx и m_EffectsMap.

Используется в EOnPostSimulate().