mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 12:53:03 +02:00
forget collision for this failure case
This commit is contained in:
parent
d2f858100e
commit
f6b2b43376
1 changed files with 1 additions and 0 deletions
|
@ -639,6 +639,7 @@ bool sphereAACube(const glm::vec3& sphereCenter, float sphereRadius, const glm::
|
||||||
glm::modf(BA, direction);
|
glm::modf(BA, direction);
|
||||||
lengthDirection = glm::length(direction);
|
lengthDirection = glm::length(direction);
|
||||||
} else if (lengthDirection > sphereRadius) {
|
} else if (lengthDirection > sphereRadius) {
|
||||||
|
collisions.deleteLastCollision();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
direction /= lengthDirection;
|
direction /= lengthDirection;
|
||||||
|
|
Loading…
Reference in a new issue