aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorMelanie2013-02-07 22:25:28 +0000
committerMelanie2013-02-07 22:25:28 +0000
commit7bf33d333af6e7393a05940d1ab436f5dce73814 (patch)
tree481c437693114ddccbb48dbe53023c183b015942 /OpenSim/Framework/IClientAPI.cs
parentSend the new physics params to the viewer build dialog (diff)
downloadopensim-SC_OLD-7bf33d333af6e7393a05940d1ab436f5dce73814.zip
opensim-SC_OLD-7bf33d333af6e7393a05940d1ab436f5dce73814.tar.gz
opensim-SC_OLD-7bf33d333af6e7393a05940d1ab436f5dce73814.tar.bz2
opensim-SC_OLD-7bf33d333af6e7393a05940d1ab436f5dce73814.tar.xz
Plumb the path from the client to the extra physics params and back
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 87433cc..f6b7689 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -124,7 +124,7 @@ namespace OpenSim.Framework
124 public delegate void ObjectDrop(uint localID, IClientAPI remoteClient); 124 public delegate void ObjectDrop(uint localID, IClientAPI remoteClient);
125 125
126 public delegate void UpdatePrimFlags( 126 public delegate void UpdatePrimFlags(
127 uint localID, bool UsePhysics, bool IsTemporary, bool IsPhantom, IClientAPI remoteClient); 127 uint localID, bool UsePhysics, bool IsTemporary, bool IsPhantom, ExtraPhysicsData PhysData, IClientAPI remoteClient);
128 128
129 public delegate void UpdatePrimTexture(uint localID, byte[] texture, IClientAPI remoteClient); 129 public delegate void UpdatePrimTexture(uint localID, byte[] texture, IClientAPI remoteClient);
130 130
@@ -1356,6 +1356,8 @@ namespace OpenSim.Framework
1356 1356
1357 void SendObjectPropertiesReply(ISceneEntity Entity); 1357 void SendObjectPropertiesReply(ISceneEntity Entity);
1358 1358
1359 void SendPartPhysicsProprieties(ISceneEntity Entity);
1360
1359 void SendAgentOffline(UUID[] agentIDs); 1361 void SendAgentOffline(UUID[] agentIDs);
1360 1362
1361 void SendAgentOnline(UUID[] agentIDs); 1363 void SendAgentOnline(UUID[] agentIDs);