diff options
author | MW | 2008-10-10 16:01:59 +0000 |
---|---|---|
committer | MW | 2008-10-10 16:01:59 +0000 |
commit | 5be74427365c3b712099aba8f8345f5fd92ca2fc (patch) | |
tree | 6bc48aa9326bf1ff4c004d6455ad23fa4a83ca4a /OpenSim/Region/DataSnapshot/ObjectSnapshot.cs | |
parent | very tiny change (diff) | |
download | opensim-SC_OLD-5be74427365c3b712099aba8f8345f5fd92ca2fc.zip opensim-SC_OLD-5be74427365c3b712099aba8f8345f5fd92ca2fc.tar.gz opensim-SC_OLD-5be74427365c3b712099aba8f8345f5fd92ca2fc.tar.bz2 opensim-SC_OLD-5be74427365c3b712099aba8f8345f5fd92ca2fc.tar.xz |
added a list of SurfaceTouchEventArgs to the IClientAPI.OnGrabUpdate event, for the new surface touch parameters in 1.21 viewers.
TODO: add the touch args to OnGrabObject and OnDeGrabObject.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/DataSnapshot/ObjectSnapshot.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs b/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs index 49d9aec..c77de96 100644 --- a/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs +++ b/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs | |||
@@ -68,7 +68,7 @@ namespace OpenSim.Region.DataSnapshot.Providers | |||
68 | { this.Stale = true; }; | 68 | { this.Stale = true; }; |
69 | client.OnDelinkObjects += delegate(List<uint> primIds) { this.Stale = true; }; | 69 | client.OnDelinkObjects += delegate(List<uint> primIds) { this.Stale = true; }; |
70 | client.OnGrabUpdate += delegate(UUID objectID, Vector3 offset, Vector3 grapPos, | 70 | client.OnGrabUpdate += delegate(UUID objectID, Vector3 offset, Vector3 grapPos, |
71 | IClientAPI remoteClient) { this.Stale = true; }; | 71 | IClientAPI remoteClient, List<SurfaceTouchEventArgs> surfaceArgs) { this.Stale = true; }; |
72 | client.OnObjectAttach += delegate(IClientAPI remoteClient, uint objectLocalID, uint AttachmentPt, | 72 | client.OnObjectAttach += delegate(IClientAPI remoteClient, uint objectLocalID, uint AttachmentPt, |
73 | Quaternion rot) { this.Stale = true; }; | 73 | Quaternion rot) { this.Stale = true; }; |
74 | client.OnObjectDuplicate += delegate(uint localID, Vector3 offset, uint dupeFlags, UUID AgentID, | 74 | client.OnObjectDuplicate += delegate(uint localID, Vector3 offset, uint dupeFlags, UUID AgentID, |