Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_BuildingDestructionConfig.c
Go to the documentation of this file.
1[BaseContainerProps(configRoot: true)]
3{
4 [Attribute(desc: "Add typenames inheriting from IEntity to exclude them from entity query during final destruction phase")]
5 protected ref array<string> m_aExcludedEntityQueryTypes;
6
7 ref array<typename> m_aExcludedEntityQueryTypenames;
8
9 //------------------------------------------------------------------------------------------------
11 {
12 typename t;
13 foreach (string typeName : m_aExcludedEntityQueryTypes)
14 {
17
18 t = typeName.ToType();
19 if (!t)
20 {
21#ifdef WORKBENCH
22 Print("Error: Excluded Entity Query Types contains typeName = " + typeName + " which doesnt exist!", LogLevel.ERROR);
23#endif
24 continue;
25 }
26
28 }
29 }
30}
SCR_AIAnimation_Loitering BaseContainerProps
Commanding menu commanding element class.
UI Textures DeployMenu Briefing conflict_HintBanner_1_UI desc
ref array< typename > m_aExcludedEntityQueryTypenames
proto void Print(void var, LogLevel level=LogLevel.NORMAL)
Prints content of variable to console/log.
LogLevel
Enum with severity of the logging message.
Definition LogLevel.c:14
SCR_FieldOfViewSettings Attribute