Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
SCR_MouseMoveManualCameraComponent.c
Go to the documentation of this file.
1 
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_BaseManualCameraComponent
Parent class from which all SCR_ManualCamera components inherit.
Definition: SCR_BaseManualCameraComponent.c:5
SCR_MouseMoveManualCameraComponent
Basic camera movement and rotation.
Definition: SCR_MouseMoveManualCameraComponent.c:5
BaseContainerProps
SCR_AIGoalReaction_Follow BaseContainerProps
Handles insects that are supposed to be spawned around selected prefabs defined in prefab names array...
Definition: SCR_AIGoalReaction.c:468