mirror of
https://github.com/lubosz/overte.git
synced 2025-04-11 08:55:04 +02:00
WL21423 Changing order of camera setup steps
This commit is contained in:
parent
24718e2424
commit
dff4e6e32c
1 changed files with 1 additions and 1 deletions
|
@ -4193,9 +4193,9 @@ void Application::loadSettings() {
|
|||
|
||||
// finish initializing the camera, based on everything we checked above. Third person camera will be used if no settings
|
||||
// dictated that we should be in first person
|
||||
_myCamera.setMode((isFirstPerson) ? CAMERA_MODE_FIRST_PERSON : CAMERA_MODE_THIRD_PERSON);
|
||||
Menu::getInstance()->setIsOptionChecked(MenuOption::FirstPerson, isFirstPerson);
|
||||
Menu::getInstance()->setIsOptionChecked(MenuOption::ThirdPerson, !isFirstPerson);
|
||||
_myCamera.setMode((isFirstPerson) ? CAMERA_MODE_FIRST_PERSON : CAMERA_MODE_THIRD_PERSON);
|
||||
cameraMenuChanged();
|
||||
|
||||
auto inputs = pluginManager->getInputPlugins();
|
||||
|
|
Loading…
Reference in a new issue