From 1adeb8ad7781beecbf1f23817eb9047e57f12027 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Fri, 19 Jun 2009 12:21:20 +0000 Subject: From: Chris Yeoh This patch ensures that the touch positions are set during touch_end events (currently only working for touch_start and touch events). --- OpenSim/Framework/IClientAPI.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'OpenSim/Framework') diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 5d169cf..2a81d5c 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs @@ -155,6 +155,9 @@ namespace OpenSim.Framework public delegate void GrabObject( uint localID, Vector3 pos, IClientAPI remoteClient, List surfaceArgs); + public delegate void DeGrabObject( + uint localID, IClientAPI remoteClient, List surfaceArgs); + public delegate void MoveObject( UUID objectID, Vector3 offset, Vector3 grapPos, IClientAPI remoteClient, List surfaceArgs ); @@ -609,7 +612,7 @@ namespace OpenSim.Framework event ObjectDuplicate OnObjectDuplicate; event ObjectDuplicateOnRay OnObjectDuplicateOnRay; event GrabObject OnGrabObject; - event ObjectSelect OnDeGrabObject; + event DeGrabObject OnDeGrabObject; event MoveObject OnGrabUpdate; event SpinStart OnSpinStart; event SpinObject OnSpinUpdate; -- cgit v1.1