aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorMW2008-10-10 17:05:43 +0000
committerMW2008-10-10 17:05:43 +0000
commit0644977819c1704c9d7417984a6366ceefe04c4c (patch)
tree924abff130d5a3b6948f40990c27becb83ab869e /OpenSim/Framework/IClientAPI.cs
parentadded a list of SurfaceTouchEventArgs to the IClientAPI.OnGrabUpdate event, f... (diff)
downloadopensim-SC_OLD-0644977819c1704c9d7417984a6366ceefe04c4c.zip
opensim-SC_OLD-0644977819c1704c9d7417984a6366ceefe04c4c.tar.gz
opensim-SC_OLD-0644977819c1704c9d7417984a6366ceefe04c4c.tar.bz2
opensim-SC_OLD-0644977819c1704c9d7417984a6366ceefe04c4c.tar.xz
added a list of SurfaceTouchEventArgs to the IClientAPI.OnGrab event, for the new surface touch parameters in 1.21 viewers.
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 26ab586..dd905c9 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -144,6 +144,8 @@ namespace OpenSim.Framework
144 public delegate void AvatarPickerRequest(IClientAPI remoteClient, UUID agentdata, UUID queryID, string UserQuery 144 public delegate void AvatarPickerRequest(IClientAPI remoteClient, UUID agentdata, UUID queryID, string UserQuery
145 ); 145 );
146 146
147 public delegate void GrabObject(uint localID, Vector3 pos, IClientAPI remoteClient, List<SurfaceTouchEventArgs> surfaceArgs);
148
147 public delegate void MoveObject(UUID objectID, Vector3 offset, Vector3 grapPos, IClientAPI remoteClient, List<SurfaceTouchEventArgs> surfaceArgs); 149 public delegate void MoveObject(UUID objectID, Vector3 offset, Vector3 grapPos, IClientAPI remoteClient, List<SurfaceTouchEventArgs> surfaceArgs);
148 150
149 public delegate void ParcelAccessListRequest( 151 public delegate void ParcelAccessListRequest(
@@ -426,7 +428,7 @@ namespace OpenSim.Framework
426 428
427 event ObjectDuplicate OnObjectDuplicate; 429 event ObjectDuplicate OnObjectDuplicate;
428 event ObjectDuplicateOnRay OnObjectDuplicateOnRay; 430 event ObjectDuplicateOnRay OnObjectDuplicateOnRay;
429 event UpdateVector OnGrabObject; 431 event GrabObject OnGrabObject;
430 event ObjectSelect OnDeGrabObject; 432 event ObjectSelect OnDeGrabObject;
431 event MoveObject OnGrabUpdate; 433 event MoveObject OnGrabUpdate;
432 434