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

◆ IsBaseStatic()

bool Hologram::IsBaseStatic ( Object objectToCheck)
inlineprotected

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

683 {
684 //check if the object below hologram is dynamic object. Dynamic objects like barrels can be taken to hands
685 //and item which had been placed on top of them, would stay floating in the air
686 #ifdef DIAG_DEVELOPER
687 if (objectToCheck == null)
688 DebugText("IsBaseStatic(must be true): ", true, true, " | objectToCheck is null (this is good)");
689 else
690 DebugText("IsBaseStatic(must be true): ", true, IsObjectStatic(objectToCheck));
691 #endif
692 return objectToCheck == null || IsObjectStatic(objectToCheck);
693 }
bool IsObjectStatic(Object obj)
Определения Hologram.c:695

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

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