mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
Defaults for camera projection parameters
This commit is contained in:
parent
03c61e2191
commit
8a217acd2b
1 changed files with 3 additions and 3 deletions
|
@ -39,9 +39,9 @@ class BeginSecondaryCameraFrameConfig : public render::Task::Config { // Exposes
|
|||
public:
|
||||
glm::vec3 position{};
|
||||
glm::quat orientation{};
|
||||
float vFoV{};
|
||||
float nearClipPlaneDistance{};
|
||||
float farClipPlaneDistance{};
|
||||
float vFoV{ 45.0f };
|
||||
float nearClipPlaneDistance{ 0.1f };
|
||||
float farClipPlaneDistance{ 100.0f };
|
||||
BeginSecondaryCameraFrameConfig() : render::Task::Config(false) {}
|
||||
signals:
|
||||
void dirty();
|
||||
|
|
Loading…
Reference in a new issue