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

◆ UpdateInterval()

override void HandsContainer::UpdateInterval ( )
inlineprotected

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

1373 {
1374 super.UpdateInterval();
1375
1376 if ( m_Entity )
1377 {
1378 if (m_CargoGrid)
1379 {
1380 bool hideCargo = m_Entity.GetInventory().IsInventoryLockedForLockType( HIDE_INV_FROM_SCRIPT ) || !m_Entity.CanDisplayCargo() || m_ForcedHide;
1381 if (m_CargoGrid.IsVisible() && hideCargo)
1382 {
1383 HideCargo();
1384 }
1385 else if (!m_CargoGrid.IsVisible() && !hideCargo)
1386 {
1387 ShowCargo();
1388 }
1389
1390 m_CargoGrid.UpdateInterval();
1391 }
1392
1393 if ( m_Atts )
1394 {
1395 m_Atts.UpdateInterval();
1396 }
1397
1398 for ( int i = 0; i < m_AttachmentCargos.Count(); i++ )
1399 {
1400 m_AttachmentCargos.GetElement( i ).UpdateInterval();
1401 }
1402 }
1403
1405 m_CollapsibleHeader.UpdateInterval();
1406 }
EntityAI m_Entity
Определения ActionDebug.c:11
ref map< EntityAI, ref CargoContainer > m_AttachmentCargos
Определения HandsContainer.c:10
void HideCargo()
Определения HandsContainer.c:1581
ref HandsHeader m_CollapsibleHeader
Определения HandsContainer.c:4
ref Attachments m_Atts
Определения HandsContainer.c:7
ref CargoContainer m_CargoGrid
Определения HandsContainer.c:8
void ElectricityIcon()
Определения HandsContainer.c:1532
void ShowCargo()
Определения HandsContainer.c:1590

Перекрестные ссылки ElectricityIcon(), HideCargo(), m_AttachmentCargos, m_Atts, m_CargoGrid, m_CollapsibleHeader, m_Entity и ShowCargo().