mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 04:44:11 +02:00
Fix issue with arrow keys moving objects when edit mode off
This commit is contained in:
parent
26d338f910
commit
e8f7c2c2ae
1 changed files with 1 additions and 1 deletions
|
@ -715,7 +715,7 @@ Controller.keyReleaseEvent.connect(function (event) {
|
|||
if (isActive) {
|
||||
cameraManager.enable();
|
||||
}
|
||||
} else {
|
||||
} else if (isActive) {
|
||||
var delta = null;
|
||||
|
||||
if (event.text == 'UP') {
|
||||
|
|
Loading…
Reference in a new issue