| 3722 | } |
| 3723 | |
| 3724 | void ShapeBase::setTransform(const MatrixF & mat) |
| 3725 | { |
| 3726 | Parent::setTransform(mat); |
| 3727 | |
| 3728 | // Accumulation and environment mapping |
| 3729 | if (isClientObject() && mShapeInstance) |
| 3730 | { |
| 3731 | if (mShapeInstance->hasAccumulation()) |
| 3732 | AccumulationVolume::updateObject(this); |
| 3733 | } |
| 3734 | } |
| 3735 | |
| 3736 | void ShapeBase::notifyCollisionCallbacks(SceneObject* obj, const VectorF& vel) |
| 3737 | { |
no test coverage detected