diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-08-02 06:56:07 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-08-02 06:56:07 +0800 |
commit | 51743334b81e5aa4be59417a80149d5f416b51f3 (patch) | |
tree | 5600f9f58389fe31b71e570bac7867d991408cf1 /indra/newview/llagent.h | |
parent | cb759bf9e0580b0c0799e33b8e7af1ea46a4c336 (diff) | |
parent | 7588afc86a016c00e6263284bc0db6d684c43895 (diff) |
Merge branch 'main' into 2025.05
Diffstat (limited to 'indra/newview/llagent.h')
-rw-r--r-- | indra/newview/llagent.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llagent.h b/indra/newview/llagent.h index b475782946..a2d2ecea9f 100644 --- a/indra/newview/llagent.h +++ b/indra/newview/llagent.h @@ -195,6 +195,8 @@ public: // Call once per frame to update position, angles (radians). void updateAgentPosition(const F32 dt, const F32 yaw, const S32 mouse_x, const S32 mouse_y); void setPositionAgent(const LLVector3 ¢er); + void setAvatarsPositions(const std::map<LLUUID, LLVector3d>& avatarsPositions); + const std::map<LLUUID, LLVector3d>& getAvatarsPositions() const { return mAvatarsPositions;} boost::signals2::connection whenPositionChanged(position_signal_t::slot_type fn); @@ -205,6 +207,7 @@ private: position_signal_t mOnPositionChanged; LLVector3d mLastTestGlobal; + std::map<LLUUID, LLVector3d> mAvatarsPositions; //-------------------------------------------------------------------- // Velocity |