diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index 46b54481b..8a36417f0 100644 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -898,6 +898,17 @@ This should be as low as possible, but too low may break functionality Value 0 + TurnAroundWhenWalkingBackwards + + Comment + Turn your avatar around to face the camera while walking backwards. + Persist + 1 + Type + Boolean + Value + 1 + EmeraldBoobMass Comment diff --git a/indra/newview/ascentprefsvan.cpp b/indra/newview/ascentprefsvan.cpp index 3a9180135..5fdc90bed 100644 --- a/indra/newview/ascentprefsvan.cpp +++ b/indra/newview/ascentprefsvan.cpp @@ -179,6 +179,7 @@ void LLPrefsAscentVan::refreshValues() mShowLogScreens = !gSavedSettings.getBOOL("AscentDisableLogoutScreens"); mDisableChatAnimation = gSavedSettings.getBOOL("SGDisableChatAnimation"); mAddNotReplace = gSavedSettings.getBOOL("LiruAddNotReplace"); + mTurnAround = gSavedSettings.getBOOL("TurnAroundWhenWalkingBackwards"); //Tags\Colors ---------------------------------------------------------------------------- mAscentUseTag = gSavedSettings.getBOOL("AscentUseTag"); @@ -254,6 +255,7 @@ void LLPrefsAscentVan::cancel() gSavedSettings.setBOOL("AscentDisableLogoutScreens", !mShowLogScreens); gSavedSettings.setBOOL("SGDisableChatAnimation", mDisableChatAnimation); gSavedSettings.setBOOL("LiruAddNotReplace", mAddNotReplace); + gSavedSettings.setBOOL("TurnAroundWhenWalkingBackwards", mTurnAround); //Tags\Colors ---------------------------------------------------------------------------- gSavedSettings.setBOOL("AscentUseTag", mAscentUseTag); diff --git a/indra/newview/ascentprefsvan.h b/indra/newview/ascentprefsvan.h index 4dc788979..ec96b8cac 100644 --- a/indra/newview/ascentprefsvan.h +++ b/indra/newview/ascentprefsvan.h @@ -59,6 +59,7 @@ protected: BOOL mShowLogScreens; bool mDisableChatAnimation; bool mAddNotReplace; + bool mTurnAround; //Tags\Colors BOOL mAscentUseTag; std::string mReportClientUUID; diff --git a/indra/newview/skins/default/xui/en-us/panel_preferences_ascent_vanity.xml b/indra/newview/skins/default/xui/en-us/panel_preferences_ascent_vanity.xml index 32c5d9ca1..02c163641 100644 --- a/indra/newview/skins/default/xui/en-us/panel_preferences_ascent_vanity.xml +++ b/indra/newview/skins/default/xui/en-us/panel_preferences_ascent_vanity.xml @@ -8,6 +8,7 @@ +