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

◆ SpawnInInventoryOrGroundPos()

EntityAI Entity::SpawnInInventoryOrGroundPos ( string object_name,
GameInventory inv,
vector pos )
inlineprotected

См. определение в файле 3_Game/Entities/EntityAI.c строка 2093

2094 {
2095 if (inv)
2096 {
2097 EntityAI res = inv.CreateInInventory(object_name);
2098 if (res)
2099 {
2100 return res;
2101 }
2102 }
2103
2104 return SpawnEntityOnGroundPos(object_name, pos);
2105 }
EntityAI SpawnEntityOnGroundPos(string object_name, vector pos)
Определения 3_Game/Entities/EntityAI.c:2109
void EntityAI()
cache blood infection chance (cfgVehicles-><entity>->Skinning->BloodInfectionSettings)
Определения 3_Game/Entities/EntityAI.c:202
EntityAI CreateInInventory(string type)
creates entity somewhere in inventory

Перекрестные ссылки GameInventory::CreateInInventory(), EntityAI() и SpawnEntityOnGroundPos().