Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_AIGroupFormationSetting.c
Go to the documentation of this file.
1[BaseContainerProps(visible: false, insertable: false)]
3{
4 override typename GetCategorizationType()
5 {
7 }
8
12 SCR_EAIGroupFormation GetFormation(int moveHandlerId, SCR_EAIGroupFormation desiredFormation);
13}
14
16class SCR_AIGroupFormationSetting : SCR_AIGroupFormationSettingBase
17{
18 [Attribute(SCR_EAIGroupFormation.Wedge.ToString(), UIWidgets.ComboBox, enums: ParamEnumArray.FromEnum(SCR_EAIGroupFormation))]
19 protected SCR_EAIGroupFormation m_eFormation;
20
21 static SCR_AIGroupFormationSetting Create(SCR_EAISettingOrigin origin, SCR_EAIGroupFormation formation)
22 {
23 SCR_AIGroupFormationSetting s = new SCR_AIGroupFormationSetting();
24 s.Init(origin);
25 s.m_eFormation = formation;
26 return s;
27 }
28
29 override SCR_EAIGroupFormation GetFormation(int moveHandlerId, SCR_EAIGroupFormation desiredFormation)
30 {
31 return m_eFormation;
32 }
33
34 override string GetDebugText()
35 {
36 return typename.EnumToString(SCR_EAIGroupFormation, m_eFormation);
37 }
38}
SCR_AIAnimation_Loitering BaseContainerProps
Commanding menu commanding element class.
override GetCategorizationType()
SCR_EAISettingOrigin
proto external AIFormationDefinition GetFormation(string pName)
SCR_FieldOfViewSettings Attribute