+ | Triangle intersection

This commit is contained in:
TheRedShip
2025-01-05 23:16:18 +01:00
parent b9b7084a4f
commit 93e9e45224
15 changed files with 797 additions and 30 deletions

View File

@ -38,7 +38,7 @@ void Camera::updateCameraVectors()
void Camera::update(float delta_time)
{
delta_time = std::min(delta_time, 0.1f);
delta_time = std::min(delta_time, 0.01f);
_velocity += _acceleration * delta_time;