NcEngine
|
Camera for the editor's scene view. More...
#include <SceneNavigationCamera.h>
Public Member Functions | |
SceneNavigationCamera (Entity self, const CameraProperties &cameraProperties={}, const SceneCameraConfig &config={}) | |
Construct a new Scene Navigation Camera object. More... | |
void | Run (Entity self, ecs::Ecs world, float dt) |
Handle input and update transform. (for use with FrameLogic/InvokeFreeComponent) More... | |
void | EnableUpdate () noexcept override |
Enable execution of the Run() method in thhe derived class. More... | |
void | DisableUpdate () noexcept override |
Disable execution of the Run() method in the derived class. More... | |
![]() | |
Camera (Entity self, const CameraProperties &properties={}) noexcept | |
Construct a new Camera object. More... | |
auto | ViewMatrix () const noexcept -> DirectX::FXMMATRIX |
Get the camera's view matrix. More... | |
auto | ProjectionMatrix () const noexcept -> DirectX::FXMMATRIX |
Get the camera's projection matrix. More... | |
auto | InverseProjectionMatrix () const noexcept -> DirectX::FXMMATRIX |
Get the camera's inverse projection matrix. More... | |
auto | CastToNearAndFarPlanes (const Vector2 &normalizedDeviceCoords) const -> NearFarPoints |
Unproject 2D normalized device coordinates into 3D points on the near and far planes. | |
auto | GetProperties () const -> const CameraProperties & |
Get the camera properties. | |
auto | CalculateFrustum () const noexcept -> Frustum |
Calculate the camera's viewport. More... | |
virtual void | UpdateViewMatrix (DirectX::FXMMATRIX transformationMatrix) |
Construct a new view matrix based on the current transform. | |
virtual void | UpdateProjectionMatrix (float width, float height) |
Construct a new projection matrix based on input values. More... | |
virtual void | EnableUpdate () noexcept |
Enable execution of the Run() method in thhe derived class. More... | |
virtual void | DisableUpdate () noexcept |
Disable execution of the Run() method in the derived class. More... | |
![]() | |
FreeComponent (Entity entity) noexcept | |
![]() | |
ComponentBase (Entity entity) noexcept | |
ComponentBase (const ComponentBase &)=delete | |
ComponentBase (ComponentBase &&)=default | |
ComponentBase & | operator= (const ComponentBase &)=delete |
ComponentBase & | operator= (ComponentBase &&)=default |
Entity | ParentEntity () const noexcept |
Camera for the editor's scene view.
Pan: Hold middle mouse button Look: Hold right mouse button Zoom: Mouse wheel
nc::SceneNavigationCamera::SceneNavigationCamera | ( | Entity | self, |
const CameraProperties & | cameraProperties = {} , |
||
const SceneCameraConfig & | config = {} |
||
) |
|
inlineoverridevirtualnoexcept |
Disable execution of the Run() method in the derived class.
Reimplemented from nc::Camera.
|
inlineoverridevirtualnoexcept |
Enable execution of the Run() method in thhe derived class.
Reimplemented from nc::Camera.
Handle input and update transform. (for use with FrameLogic/InvokeFreeComponent)
self | The owning entity |
registry | Pointer to the active registry |
dt | Seconds since last update |