| 191 | } |
| 192 | |
| 193 | void GameEditorModeBase::onFrameStarted(const Ogre::FrameEvent& evt) |
| 194 | { |
| 195 | updateMessages(evt.timeSinceLastFrame); |
| 196 | |
| 197 | Ogre::Camera* cam = ODFrameListener::getSingleton().getCameraManager()->getActiveCamera(); |
| 198 | mMainCullingManager->computeIntersectionPoints(cam, mCameraTilesIntersections); |
| 199 | mMainCullingManager->update(cam, mCameraTilesIntersections); |
| 200 | |
| 201 | mMiniMap->update(evt.timeSinceLastFrame, mCameraTilesIntersections); |
| 202 | } |
| 203 | |
| 204 | void GameEditorModeBase::receiveChat(const ChatMessage& chat) |
| 205 | { |
nothing calls this directly
no test coverage detected