Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_EditorAttributeConfig.c
Go to the documentation of this file.
1[BaseContainerProps(configRoot: true)]
3{
4 [Attribute(category: "Attributes")]
5 private ref array<ref SCR_BaseEditorAttribute> m_aAttributes;
6
7 SCR_BaseEditorAttribute GetAttribute(int index)
8 {
9 return m_aAttributes[index];
10 }
11 int GetAttributesCount()
12 {
13 return m_aAttributes.Count();
14 }
15 int FindAttribute(SCR_BaseEditorAttribute attribute)
16 {
17 return m_aAttributes.Find(attribute);
18 }
19 void InsertAllAttributes(out notnull array<SCR_BaseEditorAttribute> outAttributes)
20 {
21 for (int i = 0, count = m_aAttributes.Count(); i < count; i++)
22 {
23 outAttributes.Insert(m_aAttributes[i]);
24 }
25 }
26};
SCR_AIAnimation_Loitering BaseContainerProps
Commanding menu commanding element class.
SCR_DestructionSynchronizationComponentClass ScriptComponentClass int index
Base Attribute Script for other attributes to inherent from to get and set varriables in Editor Attri...
SCR_FieldOfViewSettings Attribute