Feature Request: Add an option to toggle Animating when going into Appearance Mode, option is in vanity->main preferences

This commit is contained in:
Inusaito Sayori
2014-05-30 06:38:13 -04:00
parent b8c3457644
commit 001e45627b
5 changed files with 23 additions and 3 deletions

View File

@@ -2447,9 +2447,12 @@ void LLAgentCamera::changeCameraToCustomizeAvatar()
at.normalize();
gAgent.resetAxes(at);
gAgent.sendAnimationRequest(ANIM_AGENT_CUSTOMIZE, ANIM_REQUEST_START);
gAgent.setCustomAnim(TRUE);
gAgentAvatarp->startMotion(ANIM_AGENT_CUSTOMIZE);
if (gSavedSettings.getBOOL("LiruCustomizeAnim"))
{
gAgent.sendAnimationRequest(ANIM_AGENT_CUSTOMIZE, ANIM_REQUEST_START);
gAgent.setCustomAnim(TRUE);
gAgentAvatarp->startMotion(ANIM_AGENT_CUSTOMIZE);
}
LLMotion* turn_motion = gAgentAvatarp->findMotion(ANIM_AGENT_CUSTOMIZE);
if (turn_motion)