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

◆ IsBaseStatic()

bool Hologram::IsBaseStatic ( Object objectToCheck)
inlineprotected

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

734 {
735 //check if the object below hologram is dynamic object. Dynamic objects like barrels can be taken to hands
736 //and item which had been placed on top of them, would stay floating in the air
737 #ifdef DIAG_DEVELOPER
738 if (objectToCheck == null)
739 DebugLog("IsBaseStatic(must be true): ", true, true, " | objectToCheck is null (this is good)");
740 else
741 DebugLog("IsBaseStatic(must be true): ", true, IsObjectStatic(objectToCheck));
742 #endif
743 return objectToCheck == null || IsObjectStatic(objectToCheck);
744 }
bool IsObjectStatic(Object obj)
Определения Hologram.c:746

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

Используется в IsBaseViable().