diff options
author | MW | 2007-08-13 20:11:35 +0000 |
---|---|---|
committer | MW | 2007-08-13 20:11:35 +0000 |
commit | b3c6920328778c162902d0278848f02e54413978 (patch) | |
tree | ea21b22e728f308914737b876c95432bfb52a75a /OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs | |
parent | Changed ScriptLoader to use Path.combine. (diff) | |
download | opensim-SC-b3c6920328778c162902d0278848f02e54413978.zip opensim-SC-b3c6920328778c162902d0278848f02e54413978.tar.gz opensim-SC-b3c6920328778c162902d0278848f02e54413978.tar.bz2 opensim-SC-b3c6920328778c162902d0278848f02e54413978.tar.xz |
added Sample OnObjectGrab event to SceneEventManager for script engines to subscribe to.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs b/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs index 4ea5f20..72dc9c0 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs | |||
@@ -740,5 +740,10 @@ namespace OpenSim.Region.Environment.Scenes | |||
740 | { | 740 | { |
741 | 741 | ||
742 | } | 742 | } |
743 | |||
744 | public void ProcessObjectGrab(uint localID, LLVector3 offsetPos, IClientAPI remoteClient) | ||
745 | { | ||
746 | this.EventManager.TriggerObjectGrab(localID, offsetPos, remoteClient); | ||
747 | } | ||
743 | } | 748 | } |
744 | } | 749 | } |