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

◆ SetInventoryLocationToVicinityOrCurrent()

void InventoryItem::SetInventoryLocationToVicinityOrCurrent ( EntityAI root,
inout InventoryLocation dst )
inlineprotected

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

2163 {
2164 if (root)
2165 {
2166 vector m4[4];
2167 root.GetTransform(m4);
2168 dst.SetGround(this, m4);
2169 }
2170 else
2171 {
2172 GetInventory().GetCurrentInventoryLocation(dst);
2173 }
2174 }