| 107 | } |
| 108 | |
| 109 | void PointerManager::notifyFrameStart(float _time) |
| 110 | { |
| 111 | mPoint = InputManager::getInstance().getMousePosition(); |
| 112 | if (mOldPoint != mPoint) |
| 113 | { |
| 114 | mOldPoint = mPoint; |
| 115 | |
| 116 | if (nullptr != mMousePointer && mPointer != nullptr) |
| 117 | mPointer->setPosition(mMousePointer, mPoint); |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | void PointerManager::setVisible(bool _visible) |
| 122 | { |
nothing calls this directly
no test coverage detected