diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-07-03 21:21:58 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-07-03 21:21:58 +0800 |
commit | d32b1c090f396824c5ec2ffbc40b174a55bdbe0b (patch) | |
tree | bdf6f1753b8ec7b37aa0831e6ff0beeffcefd869 /indra/newview/llagent.h | |
parent | b024b356c75528b4d2688016d49a11e1270fb48d (diff) | |
parent | 2283c5c35103dd99b35ca43a09bf8e11e6cd7957 (diff) |
Merge branch 'main' into gltf_mesh_import
Diffstat (limited to 'indra/newview/llagent.h')
-rw-r--r-- | indra/newview/llagent.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/indra/newview/llagent.h b/indra/newview/llagent.h index c1d3c6c14b..b475782946 100644 --- a/indra/newview/llagent.h +++ b/indra/newview/llagent.h @@ -446,6 +446,16 @@ public: void standUp(); /// @brief ground-sit at agent's current position void sitDown(); + bool isAllowedToStand() const { return mAllowedToStand; } + void setAllowedToStand(bool allow) { mAllowedToStand = allow; } + bool isAllowedToSit() const { return mAllowedToSit; } + void setAllowedToSit(bool allow) { mAllowedToSit = allow; } + const LLUUID& getSitObjectID() const { return mSitObjectID; } + void setSitObjectID(const LLUUID& objectID) { mSitObjectID = objectID; } +private: + bool mAllowedToStand; + bool mAllowedToSit; + LLUUID mSitObjectID; //-------------------------------------------------------------------- // Do Not Disturb |