summaryrefslogtreecommitdiff
path: root/indra/newview/llvoavatar.cpp
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2021-09-27 21:23:49 +0100
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2021-09-27 21:23:49 +0100
commit502d37913d3df8abb4e8e103c446e24ded2996a6 (patch)
tree7543bf092b44a4e166f2c2f61a38e93450c0c24f /indra/newview/llvoavatar.cpp
parentec16b30f3b178595cbad0c851a94300fd88afdf2 (diff)
SL-15999 - noninteractive: debugging run issues, suppress AFK/Away pose
Diffstat (limited to 'indra/newview/llvoavatar.cpp')
-rw-r--r--indra/newview/llvoavatar.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index e085a945a8..dad580de70 100644
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -3807,6 +3807,11 @@ LLViewerInventoryItem* recursiveGetObjectInventoryItem(LLViewerObject *vobj, LLU
void LLVOAvatar::updateAnimationDebugText()
{
+ if (isSelf() && gNonInteractive)
+ {
+ LLVector3 vel = getVelocity();
+ addDebugText(llformat("vel %f %f %f\n",vel[0],vel[1],vel[2]));
+ }
for (LLMotionController::motion_list_t::iterator iter = mMotionController.getActiveMotions().begin();
iter != mMotionController.getActiveMotions().end(); ++iter)
{