Added actions for mouse drag changes.

This commit is contained in:
Leonardo Zide
2025-11-23 20:33:59 -08:00
parent 3ff6f06f04
commit 3bf01f2095
13 changed files with 496 additions and 48 deletions
+13
View File
@@ -56,6 +56,19 @@ lcCamera::~lcCamera()
{
}
void lcCamera::CopyProperties(const lcCamera& Other)
{
m_fovy = Other.m_fovy;
m_zNear = Other.m_zNear;
m_zFar = Other.m_zFar;
mPosition = Other.mPosition;
mTargetPosition = Other.mTargetPosition;
mUpVector = Other.mUpVector;
SetOrtho(Other.IsOrtho());
}
QString lcCamera::GetCameraTypeString(lcCameraType CameraType)
{
switch (CameraType)