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

◆ Combine()

bool Attachments::Combine ( )
inlineprotected

См. определение в файле 5_Mission/DayZ/GUI/InventoryNew/Attachments.c строка 235

236 {
237 ItemBase ent = ItemBase.Cast( GetFocusedItem() );
238 ItemBase item_in_hands = ItemBase.Cast( g_Game.GetPlayer().GetEntityInHands() );
239 Icon hands_icon = ItemManager.GetInstance().GetHandsPreview().GetIcon();
240
241 if ( item_in_hands && ent && hands_icon )
242 {
243 return hands_icon.CombineItems( item_in_hands, ent );
244 }
245
246 return false;
247 }
DayZGame g_Game
Определения DayZGame.c:3942
class GP5GasMask extends MaskBase ItemBase
bool CombineItems(EntityAI entity1, EntityAI entity2)
Определения Icon.c:731

Перекрестные ссылки Icon::CombineItems(), g_Game, GetFocusedItem(), ItemManager::GetHandsPreview(), HandsPreview::GetIcon() и ItemManager::GetInstance().