diff options
Diffstat (limited to 'OpenSim/Services/Interfaces/IGridUserService.cs')
-rw-r--r-- | OpenSim/Services/Interfaces/IGridUserService.cs | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/OpenSim/Services/Interfaces/IGridUserService.cs b/OpenSim/Services/Interfaces/IGridUserService.cs index 95ce5e8..dfb79a4 100644 --- a/OpenSim/Services/Interfaces/IGridUserService.cs +++ b/OpenSim/Services/Interfaces/IGridUserService.cs | |||
@@ -108,8 +108,18 @@ namespace OpenSim.Services.Interfaces | |||
108 | bool LoggedOut(string userID, UUID regionID, Vector3 lastPosition, Vector3 lastLookAt); | 108 | bool LoggedOut(string userID, UUID regionID, Vector3 lastPosition, Vector3 lastLookAt); |
109 | 109 | ||
110 | bool SetHome(string userID, UUID homeID, Vector3 homePosition, Vector3 homeLookAt); | 110 | bool SetHome(string userID, UUID homeID, Vector3 homePosition, Vector3 homeLookAt); |
111 | bool SetLastPosition(string userID, UUID regionID, Vector3 lastPosition, Vector3 lastLookAt); | 111 | |
112 | 112 | /// <summary> | |
113 | /// Stores the last known user position at the grid level | ||
114 | /// </summary> | ||
115 | /// <param name="userID">Ignore if your connector does not use userID for position updates</param> | ||
116 | /// <param name="sessionID">Ignore if your connector does not use sessionID for position updates</param> | ||
117 | /// <param name="regionID">RegionID where the user is currently located</param> | ||
118 | /// <param name="lastPosition">Region-relative position</param> | ||
119 | /// <param name="lastLookAt">Normalized look direction</param> | ||
120 | /// <returns>True if the user's last position was successfully updated, otherwise false</returns> | ||
121 | bool SetLastPosition(string userID, UUID sessionID, UUID regionID, Vector3 lastPosition, Vector3 lastLookAt); | ||
122 | |||
113 | GridUserInfo GetGridUserInfo(string userID); | 123 | GridUserInfo GetGridUserInfo(string userID); |
114 | } | 124 | } |
115 | } \ No newline at end of file | 125 | } \ No newline at end of file |