aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorMW2007-11-04 14:06:41 +0000
committerMW2007-11-04 14:06:41 +0000
commite50a2e2ce21d74f7d575f97201c246c1cd00bee5 (patch)
tree7508b7adc0c125fcbe327d4d4cacd1bbfe412180 /OpenSim/Framework
parentAdded support for OpenSim application plugins (as requested by Adam), which u... (diff)
downloadopensim-SC_OLD-e50a2e2ce21d74f7d575f97201c246c1cd00bee5.zip
opensim-SC_OLD-e50a2e2ce21d74f7d575f97201c246c1cd00bee5.tar.gz
opensim-SC_OLD-e50a2e2ce21d74f7d575f97201c246c1cd00bee5.tar.bz2
opensim-SC_OLD-e50a2e2ce21d74f7d575f97201c246c1cd00bee5.tar.xz
Applying Teravus patch # 557. Some glue code for the updating of prim's velocity.
Diffstat (limited to '')
-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 62c50d5..7fcbe9e 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -414,6 +414,8 @@ namespace OpenSim.Framework
414 414
415 void SendPrimTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, LLVector3 position, 415 void SendPrimTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, LLVector3 position,
416 LLQuaternion rotation); 416 LLQuaternion rotation);
417 void SendPrimTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, LLVector3 position,
418 LLQuaternion rotation,LLVector3 velocity);
417 419
418 void SendInventoryFolderDetails(LLUUID ownerID, LLUUID folderID, List<InventoryItemBase> items); 420 void SendInventoryFolderDetails(LLUUID ownerID, LLUUID folderID, List<InventoryItemBase> items);
419 void SendInventoryItemDetails(LLUUID ownerID, InventoryItemBase item); 421 void SendInventoryItemDetails(LLUUID ownerID, InventoryItemBase item);
@@ -444,4 +446,4 @@ namespace OpenSim.Framework
444 event Action<IClientAPI> OnConnectionClosed; 446 event Action<IClientAPI> OnConnectionClosed;
445 void SendLogoutPacket(); 447 void SendLogoutPacket();
446 } 448 }
447} \ No newline at end of file 449}