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

◆ PlaySoundSetAtMemoryPointLoopedSafe()

bool IEntity::PlaySoundSetAtMemoryPointLoopedSafe ( out EffectSound sound,
string soundSet,
string memoryPoint,
float play_fade_in = 0,
float stop_fade_out = 0 )
inlineprivate

Same as PlaySoundSetAtMemoryPointLooped, only requests stoppage of the currently playing EffectSound if it already exists and playing, before playing the new sound.

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

1276 {
1277 if (sound && sound.IsPlaying())
1278 {
1279 sound.SoundStop();
1280 }
1281 return PlaySoundSetAtMemoryPointLooped(sound, soundSet, memoryPoint, play_fade_in, stop_fade_out);
1282 }
bool PlaySoundSetAtMemoryPointLooped(out EffectSound sound, string soundSet, string memoryPoint, float play_fade_in=0, float stop_fade_out=0)
Определения Object.c:1284

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