Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_InfoDisplayHandler.c
Go to the documentation of this file.
3{
5 protected SCR_InfoDisplay m_OwnerDisplay;
6
7 [Attribute(desc: "Should this Handler be updated every frame?")]
9
10 protected bool m_bEnabled;
11
12 //------------------------------------------------------------------------------------------------
13 void SetEnabled(bool enabled)
14 {
15 m_bEnabled = enabled;
16 }
17
18 //------------------------------------------------------------------------------------------------
19 bool IsEnabled()
20 {
21 return m_bEnabled;
22 }
23
24 //------------------------------------------------------------------------------------------------
29 void Initialize(notnull SCR_InfoDisplay display)
30 {
31 m_OwnerDisplay = display;
32 m_bEnabled = true;
33 }
34
35 //------------------------------------------------------------------------------------------------
40 void OnStart(notnull SCR_InfoDisplay display);
41
42 //------------------------------------------------------------------------------------------------
47 void OnStop(notnull SCR_InfoDisplay display);
48
49 //------------------------------------------------------------------------------------------------
53 void OnUpdate(float timeSlice);
54}
SCR_AIAnimation_Loitering BaseContainerProps
Commanding menu commanding element class.
UI Textures DeployMenu Briefing conflict_HintBanner_1_UI desc
void OnStop(notnull SCR_InfoDisplay display)
void Initialize(notnull SCR_InfoDisplay display)
void OnStart(notnull SCR_InfoDisplay display)
void OnUpdate(float timeSlice)
SCR_InfoDisplay m_OwnerDisplay
Info Display which owns this Info Dispaly Handler.
SCR_FieldOfViewSettings Attribute