diff options
author | Jonathan "Geenz" Goodman <geenz@geenzo.com> | 2024-01-24 16:22:45 -0800 |
---|---|---|
committer | Jonathan "Geenz" Goodman <geenz@geenzo.com> | 2024-01-24 16:22:45 -0800 |
commit | a888531fd1fbf7de0d71b4d04195d4267c882154 (patch) | |
tree | 73bd6f4e2683ab95d7f49a115a75f3b40851f068 /indra/newview/llviewerobject.h | |
parent | 42b51bfd2cccba1dfdc820a4a033481fd42c1907 (diff) |
https://github.com/secondlife/viewer-issues/issues/23 Make the face selection for mirrors actually reflect what it does
Diffstat (limited to 'indra/newview/llviewerobject.h')
-rw-r--r-- | indra/newview/llviewerobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llviewerobject.h b/indra/newview/llviewerobject.h index 6ed37bf014..f3c00e83dc 100644 --- a/indra/newview/llviewerobject.h +++ b/indra/newview/llviewerobject.h @@ -258,7 +258,7 @@ public: virtual BOOL hasLightTexture() const { return FALSE; } virtual BOOL isReflectionProbe() const { return FALSE; } virtual BOOL isMirror() const { return FALSE; } - virtual U8 mirrorPlacementMode() const { return 0; } + virtual U8 mirrorFace() const { return 0; } // This method returns true if the object is over land owned by // the agent, one of its groups, or it encroaches and @@ -881,7 +881,7 @@ protected: F32 mLinksetPhysicsCost; bool mIsMirror; - U8 mMirrorPlacementMode; + U8 mMirrorFace; // If true, "shrink wrap" this volume in its spatial partition. See "shrinkWrap" bool mShouldShrinkWrap = false; |