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

◆ UpdateInterval()

override void HandsContainer::UpdateInterval ( )
inlineprotected

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

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

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