| 106 | //----------------------------------------------------------------------------- |
| 107 | |
| 108 | void SceneTracker::init() |
| 109 | { |
| 110 | // Register existing scene graph objects. |
| 111 | |
| 112 | SceneContainer* container; |
| 113 | if( isClientTracker() ) |
| 114 | container = &gClientContainer; |
| 115 | else |
| 116 | container = &gServerContainer; |
| 117 | |
| 118 | container->findObjects( getObjectTypeMask(), |
| 119 | ( SceneContainer::FindCallback ) &_containerFindCallback, |
| 120 | this ); |
| 121 | } |
| 122 | |
| 123 | //----------------------------------------------------------------------------- |
| 124 |
no test coverage detected