11 float truckPedestalFine = 0.8f;
12 float truckPedestalCoarse = 3.0f;
13 float panTiltFine = 0.006f;
14 float panTiltCoarse = 0.018f;
15 float dollyFine = 0.0025f;
16 float dollyCoarse = 0.025f;
51 Vector2 m_prevMousePos = Vector2::Zero();
52 Vector2 m_pivotReference = Vector2::Zero();
53 float m_dollyVelocity = 0.0f;
54 bool m_enabled =
true;
56 auto HandlePanInput() -> bool;
57 auto HandleZoomInput() -> bool;
58 auto HandleLookInput() -> bool;
59 auto TruckAndPedestal(
float dt,
float speedMult) ->
Vector3;
60 auto PanAndTilt(
float dt,
float speedMult,
const Vector3& tiltAxis) ->
Quaternion;
61 auto Dolly(
float dt,
float speedMult) ->
Vector3;
Basic camera component.
Definition: Camera.h:33
Identifies an object in the registry.
Definition: Entity.h:18
Camera for the editor's scene view.
Definition: SceneNavigationCamera.h:26
void EnableUpdate() noexcept override
Enable execution of the Run() method in thhe derived class.
Definition: SceneNavigationCamera.h:45
SceneNavigationCamera(Entity self, const CameraProperties &cameraProperties={}, const SceneCameraConfig &config={})
Construct a new Scene Navigation Camera object.
void Run(Entity self, ecs::Ecs world, float dt)
Handle input and update transform. (for use with FrameLogic/InvokeFreeComponent)
void DisableUpdate() noexcept override
Disable execution of the Run() method in the derived class.
Definition: SceneNavigationCamera.h:46
Interface for higher-level entity and component operations with optional type access restriction.
Definition: Ecs.h:18
Properties for controlling a camera's frustum.
Definition: Camera.h:13
Quaternion type for representing 3D rotations.
Definition: Quaternion.h:13
Movement settings for SceneNavigationCamera.
Definition: SceneNavigationCamera.h:10
A two component vector.
Definition: Vector.h:13
A three component vector.
Definition: Vector.h:29