Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_MouseMoveManualCameraComponent.c
Go to the documentation of this file.
1
2
4[BaseContainerProps(), SCR_BaseManualCameraComponentTitle()]
6{
7 /*
8 [Attribute("25", UIWidgets.Auto, "")]
9 float m_fFlySpeed;
10
11 override void Add(out vector posLocalDelta, out vector posWorldDelta, out vector rotDelta, float multiplier, vector posCurrent, vector rotCurrent, vector posSet, vector rotSet)
12 {
13 if (m_InputManager.GetActionValue("ManualCameraRotateModifier") && !m_InputManager.GetActionValue("ManualCameraMoveLongitudinal"))
14 {
15 float moveLongitudinal = m_InputManager.GetActionValue("ManualCameraMoveLongitudinalSecondary");
16
17 if (moveLongitudinal == 0) return;
18
19 posLocalDelta += Vector(0, 0, moveLongitudinal) * m_fFlySpeed * multiplier;
20
21 m_Camera.SetManualMovement(true);
22 m_Camera.SetNewHeightFromTerrain(true);
23 }
24 }
25 */
26}
SCR_AIAnimation_Loitering BaseContainerProps
Commanding menu commanding element class.
Parent class from which all SCR_ManualCamera components inherit.