| 28 | } |
| 29 | |
| 30 | void CameraInputSystem::setMouseEnabled(bool enabled) |
| 31 | { |
| 32 | for (InputDevicePtr device : mInputPlatform->getInputDevicesOfType(InputDeviceTypeMouse)) |
| 33 | { |
| 34 | device->setEnabled(enabled); |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | void CameraInputSystem::setKeyboardEnabled(bool enabled) |
| 39 | { |
no test coverage detected