mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 11:45:36 +02:00
enabled Low Res sending while moving by default
This commit is contained in:
parent
b5e2bc2093
commit
8e2fcffd5c
3 changed files with 5 additions and 5 deletions
|
@ -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);
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue