Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_UIManualCameraComponent.c
Go to the documentation of this file.
1
2
4[BaseContainerProps(), SCR_BaseManualCameraComponentTitle()]
6{
7 [Attribute(params: "layout")]
8 private ResourceName m_Layout;
9
10 private Widget m_Widget;
11
12 //------------------------------------------------------------------------------------------------
13 override bool EOnCameraInit()
14 {
15 m_Widget = GetCameraEntity().CreateCameraWidget(m_Layout);
16 return false;
17 }
18
19 //------------------------------------------------------------------------------------------------
20 override void EOnCameraExit()
21 {
22 if (m_Widget)
23 m_Widget.RemoveFromHierarchy();
24 }
25}
SCR_AIAnimation_Loitering BaseContainerProps
Commanding menu commanding element class.
Parent class from which all SCR_ManualCamera components inherit.
void EOnCameraExit()
Terminate the component.
Widget CreateCameraWidget(ResourceName layout, bool isVisible=true)
SCR_FieldOfViewSettings Attribute