mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
Removed some unnecessary roundings in MoveCameraAnimation
This commit is contained in:
parent
dc714bf2b0
commit
7467e8a7f9
|
@ -27,9 +27,9 @@ public:
|
|||
void apply(float t) override
|
||||
{
|
||||
t -= 1;
|
||||
cameraPosition[3].x = std::round(-glm::mix(-mCameraStart[3].x, mTarget.x, t * t * t + 1));
|
||||
cameraPosition[3].y = std::round(-glm::mix(-mCameraStart[3].y, mTarget.y, t * t * t + 1));
|
||||
cameraPosition[3].z = std::round(-glm::mix(-mCameraStart[3].z, mTarget.z, t * t * t + 1));
|
||||
cameraPosition[3].x = -glm::mix(-mCameraStart[3].x, mTarget.x, t * t * t + 1);
|
||||
cameraPosition[3].y = -glm::mix(-mCameraStart[3].y, mTarget.y, t * t * t + 1);
|
||||
cameraPosition[3].z = -glm::mix(-mCameraStart[3].z, mTarget.z, t * t * t + 1);
|
||||
}
|
||||
|
||||
private:
|
||||
|
|
Loading…
Reference in a new issue