mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 18:23:54 +02:00
Use M rather than L, since L is taken by the level display.
This commit is contained in:
parent
0c03f66948
commit
ae02004ef6
1 changed files with 4 additions and 4 deletions
|
@ -552,9 +552,9 @@ void Application::keyPressEvent(QKeyEvent* event) {
|
|||
_audio.startEchoTest();
|
||||
break;
|
||||
|
||||
//case Qt::Key_L:
|
||||
// _displayLevels = !_displayLevels;
|
||||
// break;
|
||||
case Qt::Key_L:
|
||||
_displayLevels = !_displayLevels;
|
||||
break;
|
||||
|
||||
case Qt::Key_E:
|
||||
_myAvatar.setDriveKeys(UP, 1);
|
||||
|
@ -638,7 +638,7 @@ void Application::keyPressEvent(QKeyEvent* event) {
|
|||
resizeGL(_glWidget->width(), _glWidget->height());
|
||||
break;
|
||||
|
||||
case Qt::Key_L:
|
||||
case Qt::Key_M:
|
||||
if (shifted) {
|
||||
_myCamera.setEyeOffsetOrientation(glm::normalize(
|
||||
glm::quat(glm::vec3(0, -0.002f, 0)) * _myCamera.getEyeOffsetOrientation()));
|
||||
|
|
Loading…
Reference in a new issue