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

◆ InitItemSounds()

void InventoryItem::InitItemSounds ( )
inlineprotected

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

4327 {
4328 if (GetPlaceSoundset() == string.Empty && GetDeploySoundset() == string.Empty && GetLoopDeploySoundset() == string.Empty)
4329 return;
4330
4332
4333 if (GetPlaceSoundset() != string.Empty)
4334 handler.AddSound(SoundConstants.ITEM_PLACE, GetPlaceSoundset());
4335
4336 if (GetDeploySoundset() != string.Empty)
4337 handler.AddSound(SoundConstants.ITEM_DEPLOY, GetDeploySoundset());
4338
4339 SoundParameters params = new SoundParameters();
4340 params.m_Loop = true;
4341 if (GetLoopDeploySoundset() != string.Empty)
4342 handler.AddSound(SoundConstants.ITEM_DEPLOY_LOOP, GetLoopDeploySoundset(), params);
4343 }
Empty
Определения Hand_States.c:14
void ItemSoundHandler(ItemBase parent)
Определения ItemSoundHandler.c:31
string GetLoopDeploySoundset()
ItemSoundHandler GetItemSoundHandler()
Определения ItemBase.c:4317
string GetPlaceSoundset()
string GetDeploySoundset()
bool m_Loop
Определения ItemSoundHandler.c:5

Перекрестные ссылки Empty, GetDeploySoundset(), ItemBase::GetDeploySoundset(), GetItemSoundHandler(), GetLoopDeploySoundset(), ItemBase::GetLoopDeploySoundset(), GetPlaceSoundset(), GetPlaceSoundset(), ItemSoundHandler() и SoundParameters::m_Loop.