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

◆ StopSoundSet()

bool IEntity::StopSoundSet ( out EffectSound sound)
inlineprivate

EffectSound - stops soundset and returns state of the sound (true - stopped, false - not playing)

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

1324 {
1325 if ( sound && GetGame() && ( !GetGame().IsDedicatedServer() ) )
1326 {
1327 sound.SoundStop();
1328 sound = null;
1329
1330 return true;
1331 }
1332
1333 return false;
1334 }
proto native CGame GetGame()

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

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