From 8e2fcffd5c28c41ba2aa0d48e127fb026bf2ea66 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Sat, 10 Aug 2013 11:58:25 -0700 Subject: [PATCH] enabled Low Res sending while moving by default --- interface/src/Application.cpp | 6 +++--- interface/src/Application.h | 2 +- libraries/avatars/src/AvatarData.cpp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 9a04e4c8ff..174dfc2527 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -1506,8 +1506,8 @@ void Application::doTreeStats() { _voxels.collectStatsForTreesAndVBOs(); } -void Application::setWantsLowResMoving(bool wantsLowResMoving) { - _myAvatar.setWantLowResMoving(wantsLowResMoving); +void Application::disableLowResMoving(bool disableLowResMoving) { + _myAvatar.setWantLowResMoving(!disableLowResMoving); } void Application::setWantsMonochrome(bool wantsMonochrome) { @@ -2102,7 +2102,7 @@ void Application::initMenu() { (_shouldLowPassFilter = debugMenu->addAction("Test: LowPass filter"))->setCheckable(true); debugMenu->addAction("Wants Monochrome", this, SLOT(setWantsMonochrome(bool)))->setCheckable(true); - debugMenu->addAction("Use Lower Resolution While Moving", this, SLOT(setWantsLowResMoving(bool)))->setCheckable(true); + debugMenu->addAction("Disable Lower Resolution While Moving", this, SLOT(disableLowResMoving(bool)))->setCheckable(true); debugMenu->addAction("Disable Delta Sending", this, SLOT(disableDeltaSending(bool)))->setCheckable(true); (_occlusionCulling = debugMenu->addAction("Disable Occlusion Culling", this, SLOT(disableOcclusionCulling(bool)), Qt::SHIFT | Qt::Key_C))->setCheckable(true); diff --git a/interface/src/Application.h b/interface/src/Application.h index 087a17a3ec..29f7e8bea7 100644 --- a/interface/src/Application.h +++ b/interface/src/Application.h @@ -172,7 +172,7 @@ private slots: void doTrueVoxelColors(); void doTreeStats(); void setWantsMonochrome(bool wantsMonochrome); - void setWantsLowResMoving(bool wantsLowResMoving); + void disableLowResMoving(bool disableLowResMoving); void disableDeltaSending(bool disableDeltaSending); void disableOcclusionCulling(bool disableOcclusionCulling); void updateVoxelModeActions(); diff --git a/libraries/avatars/src/AvatarData.cpp b/libraries/avatars/src/AvatarData.cpp index 796e5e5884..d7aae578d5 100644 --- a/libraries/avatars/src/AvatarData.cpp +++ b/libraries/avatars/src/AvatarData.cpp @@ -39,7 +39,7 @@ AvatarData::AvatarData(Node* owningNode) : _keyState(NO_KEY_DOWN), _wantColor(true), _wantDelta(true), - _wantLowResMoving(false), + _wantLowResMoving(true), _wantOcclusionCulling(true), _headData(NULL), _handData(NULL)