| 1125 | void Object::SimulateHUD(CameraType camType, float deltaT) {} |
| 1126 | |
| 1127 | CursorMode Object::GetCursorRelMode(CameraType camType) const |
| 1128 | { |
| 1129 | auto& input = InputSubsystem::Instance(); |
| 1130 | if (IsVirtual(camType) && !input.IsLookAroundEnabled() && !input.IsMouseTurnActive()) |
| 1131 | { |
| 1132 | return CKeyboard; |
| 1133 | } |
| 1134 | return CMouseAbs; |
| 1135 | } |
| 1136 | |
| 1137 | void Object::LimitVirtual(CameraType camType, float& heading, float& dive, float& fov) const |
| 1138 | { |
no test coverage detected