| 634 | //----------------------------------------------------------------------------- |
| 635 | |
| 636 | void SceneManager::notifyObjectDirty( SceneObject* object ) |
| 637 | { |
| 638 | // Update container state. |
| 639 | |
| 640 | if( object->mContainer ) |
| 641 | object->mContainer->checkBins( object ); |
| 642 | |
| 643 | // Mark zoning state as dirty. |
| 644 | |
| 645 | if( getZoneManager() ) |
| 646 | getZoneManager()->notifyObjectChanged( object ); |
| 647 | } |
| 648 | |
| 649 | //----------------------------------------------------------------------------- |
| 650 |
no test coverage detected