diff options
author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2024-07-31 14:27:07 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-31 14:27:07 +0300 |
commit | 2390b0d623a09c0ec4f46fa10567bb02b7d49cfe (patch) | |
tree | abb7c18c70b56d85870d6a3e5a0f515ee0bf96ec /indra/newview/llagentlistener.h | |
parent | ed388f61bad7f6873ee3a2e4d673c9b991b4ef88 (diff) | |
parent | ffeb738afda99fca98a9c1ba7704d7f6144da70c (diff) |
Merge pull request #2118 from secondlife/lua-camera
Lua api for Follow Camera control
Diffstat (limited to 'indra/newview/llagentlistener.h')
-rw-r--r-- | indra/newview/llagentlistener.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llagentlistener.h b/indra/newview/llagentlistener.h index c544d089ce..2a24de3f52 100644 --- a/indra/newview/llagentlistener.h +++ b/indra/newview/llagentlistener.h @@ -48,7 +48,6 @@ private: void requestStand(LLSD const & event_data) const; void requestTouch(LLSD const & event_data) const; void resetAxes(const LLSD& event_data) const; - void getAxes(const LLSD& event_data) const; void getGroups(const LLSD& event) const; void getPosition(const LLSD& event_data) const; void startAutoPilot(const LLSD& event_data); @@ -58,6 +57,10 @@ private: void stopAutoPilot(const LLSD& event_data) const; void lookAt(LLSD const & event_data) const; + void setFollowCamParams(LLSD const & event_data) const; + void setFollowCamActive(LLSD const & event_data) const; + void removeFollowCamParams(LLSD const & event_data) const; + LLViewerObject * findObjectClosestTo( const LLVector3 & position ) const; private: |