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

◆ GetProjectionName()

string Hologram::GetProjectionName ( ItemBase item)
inlineprotected

configuration override

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

223 {
225 if (m_ProjectionTypename != "")
226 {
228 }
229
230 if (!item)
231 {
232 return "";
233 }
234
235 if (item.CanMakeGardenplot())
236 {
237 return "GardenPlotPlacing";
238 }
239
240 //Camping & Base building
241 if (item.IsInherited( TentBase ) || item.IsBasebuildingKit())
242 {
243 return item.GetType() + "Placing";
244 }
245
246 return item.GetType();
247 }
string m_ProjectionTypename
Определения Hologram.c:25
override bool IsBasebuildingKit()
Определения KitBase.c:5
override bool CanMakeGardenplot()
Определения FieldShovel.c:3

Перекрестные ссылки ItemBase::CanMakeGardenplot(), ItemBase::IsBasebuildingKit() и m_ProjectionTypename.

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