diff options
| author | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2023-05-31 12:45:22 +0200 |
|---|---|---|
| committer | Guru <alexandrgproductengine@lindenlab.com> | 2023-06-02 23:10:46 +0200 |
| commit | bbd0a09fbaaa354f522bf77241b9039288f10479 (patch) | |
| tree | 52be14b510cb10b2245dd050702f9b3c4e987b94 /indra/newview/llcontrolavatar.cpp | |
| parent | 0a342cfe7cc92cdfe308bc75753750c99b0327e6 (diff) | |
SL-18251 Expand extents to include the Control Avatar bounds
Diffstat (limited to 'indra/newview/llcontrolavatar.cpp')
| -rw-r--r-- | indra/newview/llcontrolavatar.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llcontrolavatar.cpp b/indra/newview/llcontrolavatar.cpp index 4a87273372..91031034c6 100644 --- a/indra/newview/llcontrolavatar.cpp +++ b/indra/newview/llcontrolavatar.cpp @@ -47,6 +47,7 @@ LLControlAvatar::LLControlAvatar(const LLUUID& id, const LLPCode pcode, LLViewer mGlobalScale(1.0f), mMarkedForDeath(false), mRootVolp(NULL), + mControlAVBridge(NULL), mScaleConstraintFixup(1.0), mRegionChanged(false) { @@ -376,6 +377,12 @@ void LLControlAvatar::idleUpdate(LLAgent &agent, const F64 &time) } } +void LLControlAvatar::markDead() +{ + super::markDead(); + mControlAVBridge = NULL; +} + bool LLControlAvatar::computeNeedsUpdate() { computeUpdatePeriod(); |
