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

◆ InitItemSounds()

void InventoryItem::InitItemSounds ( )
inlineprotected

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

4399 {
4400 if (GetPlaceSoundset() == string.Empty && GetDeploySoundset() == string.Empty && GetLoopDeploySoundset() == string.Empty)
4401 return;
4402
4404
4405 if (GetPlaceSoundset() != string.Empty)
4406 handler.AddSound(SoundConstants.ITEM_PLACE, GetPlaceSoundset());
4407
4408 if (GetDeploySoundset() != string.Empty)
4409 handler.AddSound(SoundConstants.ITEM_DEPLOY, GetDeploySoundset());
4410
4411 SoundParameters params = new SoundParameters();
4412 params.m_Loop = true;
4413 if (GetLoopDeploySoundset() != string.Empty)
4414 handler.AddSound(SoundConstants.ITEM_DEPLOY_LOOP, GetLoopDeploySoundset(), params);
4415 }
Empty
Определения Hand_States.c:14
void ItemSoundHandler(ItemBase parent)
Определения ItemSoundHandler.c:31
string GetLoopDeploySoundset()
ItemSoundHandler GetItemSoundHandler()
Определения ItemBase.c:4389
string GetPlaceSoundset()
string GetDeploySoundset()
bool m_Loop
Определения ItemSoundHandler.c:5

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