| 36 | } |
| 37 | |
| 38 | void CameraInputSystem::setKeyboardEnabled(bool enabled) |
| 39 | { |
| 40 | for (InputDevicePtr device : mInputPlatform->getInputDevicesOfType(InputDeviceTypeKeyboard)) |
| 41 | { |
| 42 | device->setEnabled(enabled); |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | static float getAxisValueOrDefault(const CameraInputAxes& axes, CameraInputAxisType type, float defaultValue) |
| 47 | { |
no test coverage detected