From f206ffd5a8cd0ef362e972abf7375eb739f82e5b Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Wed, 20 Aug 2008 01:48:51 +0000 Subject: Mantis #2003 - thank you, SachaMagne, for a patch that implements the first part of gesture persistence. ---------------------------------------------------------- Attachments no longer vanish on walking crossing. Teleport is still problematic, but will now be blocked with message "Inconsistent attachment state" rather than losing the attachment. Detach to be able to TP in that case. --- OpenSim/Framework/IClientAPI.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'OpenSim/Framework/IClientAPI.cs') diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 71b8eb0..8aac9ce 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs @@ -299,7 +299,8 @@ namespace OpenSim.Framework public delegate void ScriptReset(IClientAPI remoteClient, LLUUID objectID, LLUUID itemID); public delegate void GetScriptRunning(IClientAPI remoteClient, LLUUID objectID, LLUUID itemID); public delegate void SetScriptRunning(IClientAPI remoteClient, LLUUID objectID, LLUUID itemID, bool running); - + public delegate void ActivateGesture(IClientAPI client, LLUUID gestureid, LLUUID assetId); + public delegate void DeactivateGesture(IClientAPI client, LLUUID gestureid); public delegate void TerrainUnacked(IClientAPI remoteClient, int patchX, int patchY); @@ -512,6 +513,10 @@ namespace OpenSim.Framework event UpdateVector OnAutoPilotGo; event TerrainUnacked OnUnackedTerrain; + event ActivateGesture OnActivateGesture; + event DeactivateGesture OnDeactivateGesture; + + // void ActivateGesture(LLUUID assetId, LLUUID gestureId); // [Obsolete("IClientAPI.OutPacket SHOULD NOT EXIST outside of LLClientView please refactor appropriately.")] void OutPacket(Packet newPack, ThrottleOutPacketType packType); -- cgit v1.1