diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-06-30 20:49:23 +0100 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-06-30 20:49:23 +0100 |
commit | a09cc5f4bb9ccf93db7233d0b1fd0142803b2f23 (patch) | |
tree | 1db80926b08b3b9e11320d5520de73bc952463ca /indra/newview/llcontrolavatar.cpp | |
parent | 999b0b47b59cb6be6f229066825bdec88f00304e (diff) |
SL-731 - added a hook for debug text specific to control avatars. Also renamed resetJointsOnDetach to removeAttachmentOverridesForObject to make the connection to addAttachmentOverridesForObject more obvious.
Diffstat (limited to 'indra/newview/llcontrolavatar.cpp')
-rw-r--r-- | indra/newview/llcontrolavatar.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llcontrolavatar.cpp b/indra/newview/llcontrolavatar.cpp index 6fc3d52fe7..bd99f66459 100644 --- a/indra/newview/llcontrolavatar.cpp +++ b/indra/newview/llcontrolavatar.cpp @@ -183,4 +183,10 @@ void LLControlAvatar::idleUpdate(LLAgent &agent, const F64 &time) } } +//virtual +void LLControlAvatar::updateDebugText() +{ + addDebugText("I'm a control avatar"); + LLVOAvatar::updateDebugText(); +} |