DayZ 1.26
DayZ Explorer by KGB
Загрузка...
Поиск...
Не найдено
Файл BillboardSet.c

См. исходные тексты.

Структуры данных

class  BillboardSetHandler
 

Функции

void BillboardSet (string path)
 
string GetTextureByType (string type)
 
void LoadConfig (string path)
 

Переменные

class BillboardSetHandler string
 
class BillboardSetHandler m_TypeTextureMapping = new map<string, string>()
 

Функции

◆ BillboardSet()

void BillboardSet ( string path)
81 {
83 }
void LoadConfig(string path)
Definition BillboardSet.c:90
string path
Definition OptionSelectorMultistate.c:142

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

Используется в BillboardSetHandler::GetTextureByType() и BillboardSetHandler::LoadBillboardConfigs().

◆ GetTextureByType()

string GetTextureByType ( string type)
86 {
87 return m_TypeTextureMapping.Get(type);
88 }
class BillboardSetHandler m_TypeTextureMapping

Перекрестные ссылки m_TypeTextureMapping.

◆ LoadConfig()

void LoadConfig ( string path)
protected
91 {
92 int count = g_Game.ConfigGetChildrenCount(path);
93 for ( int i = 0; i < count; i++ )
94 {
95 string itemName;
96 GetGame().ConfigGetChildName(path, i, itemName);
97
98 string typesPath = path + " " + itemName + " types";
99 string texturePath = path + " " + itemName + " texture";
100
101 if (GetGame().ConfigIsExisting(typesPath) && GetGame().ConfigIsExisting(texturePath))
102 {
104 string texture;
105 GetGame().ConfigGetText(texturePath, texture);
106 GetGame().ConfigGetTextArray(typesPath, types);
107
108 foreach (string s: types)
109 {
111 }
112 }
113 else
114 {
115 ErrorEx("Billboard set incorrect configuration, type or texture param missing: " + path);
116 }
117
118 }
119 }
DayZGame g_Game
Definition DayZGame.c:3815
Definition EntityAI.c:95
Result for an object found in CGame.IsBoxCollidingGeometryProxy.
Definition IsBoxCollidingGeometryProxyClasses.c:28
proto native CGame GetGame()
enum ShapeType ErrorEx
array< string > TStringArray
Definition EnScript.c:685

Перекрестные ссылки ErrorEx, g_Game, GetGame(), m_TypeTextureMapping и path.

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

Переменные

◆ m_TypeTextureMapping

class BillboardSetHandler m_TypeTextureMapping = new map<string, string>()

Используется в GetTextureByType() и LoadConfig().

◆ string