mirror of
https://github.com/overte-org/overte.git
synced 2025-04-16 13:56:24 +02:00
update
This commit is contained in:
parent
653b1acc4a
commit
3922192cfc
1 changed files with 1 additions and 4 deletions
|
@ -15,7 +15,7 @@ var TURN_RATE = 1000;
|
|||
var MENU_ITEM_NAME = "Advanced Movement For Hand Controllers";
|
||||
var SETTINGS_KEY = 'advancedMovementForHandControllersIsChecked';
|
||||
var previousSetting = Settings.getValue(SETTINGS_KEY);
|
||||
if (previousSetting === '') {
|
||||
if (previousSetting === '' || previousSetting === false) {
|
||||
previousSetting = false;
|
||||
isChecked = false;
|
||||
}
|
||||
|
@ -23,9 +23,6 @@ if (previousSetting === '') {
|
|||
if (previousSetting === true) {
|
||||
isChecked = true;
|
||||
}
|
||||
if (previousSetting === false) {
|
||||
isChecked = false;
|
||||
}
|
||||
|
||||
function addAdvancedMovementItemToSettingsMenu() {
|
||||
Menu.addMenuItem({
|
||||
|
|
Loading…
Reference in a new issue