Go to the source code of this file.
◆ EPhysicsUpdateError
Enum used by PhysicsSystem to report error conditions during the PhysicsSystem::Update call. This is a bit field, multiple errors can trigger in the same update.
Enumerator |
---|
None | No errors.
|
ManifoldCacheFull | The manifold cache is full, this means that the total number of contacts between bodies is too high. Some contacts were ignored. Increase inMaxContactConstraints in PhysicsSystem::Init.
|
BodyPairCacheFull | The body pair cache is full, this means that too many bodies contacted. Some contacts were ignored. Increase inMaxBodyPairs in PhysicsSystem::Init.
|
ContactConstraintsFull | The contact constraints buffer is full. Some contacts were ignored. Increase inMaxContactConstraints in PhysicsSystem::Init.
|
◆ operator&()
AND operator for EPhysicsUpdateError.
◆ operator|()
OR operator for EPhysicsUpdateError.
◆ operator|=()
OR operator for EPhysicsUpdateError.