mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 04:37:23 +02:00
assert that deltaTimeStep is always greater than zero
This commit is contained in:
parent
5abaf38efd
commit
8caa7abca6
1 changed files with 1 additions and 3 deletions
|
@ -46,9 +46,7 @@ void AvatarActionKinematicHold::updateActionWorker(float deltaTimeStep) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (deltaTimeStep <= 0.0f) {
|
assert(deltaTimeStep > 0.0f);
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
glm::quat rotation;
|
glm::quat rotation;
|
||||||
glm::vec3 position;
|
glm::vec3 position;
|
||||||
|
|
Loading…
Reference in a new issue