Skip to content
Snippets Groups Projects
Commit be07694b authored by Ansariel's avatar Ansariel
Browse files

MAINT-2773: Disable texture animation doesn't work

parent 17108920
No related branches found
No related tags found
No related merge requests found
...@@ -176,6 +176,7 @@ Ansariel Hiller ...@@ -176,6 +176,7 @@ Ansariel Hiller
STORM-1713 STORM-1713
STORM-1899 STORM-1899
MAINT-2368 MAINT-2368
MAINT-2773
Aralara Rajal Aralara Rajal
Ardy Lay Ardy Lay
STORM-859 STORM-859
......
...@@ -954,15 +954,17 @@ void LLViewerObjectList::update(LLAgent &agent, LLWorld &world) ...@@ -954,15 +954,17 @@ void LLViewerObjectList::update(LLAgent &agent, LLWorld &world)
objectp = *idle_iter; objectp = *idle_iter;
llassert(objectp->isActive()); llassert(objectp->isActive());
objectp->idleUpdate(agent, world, frame_time); objectp->idleUpdate(agent, world, frame_time);
}
}
//update flexible objects //update flexible objects
LLVolumeImplFlexible::updateClass(); LLVolumeImplFlexible::updateClass();
//update animated textures //update animated textures
LLViewerTextureAnim::updateClass(); if (gAnimateTextures)
} {
LLViewerTextureAnim::updateClass();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment