From 5ff3c03c122b9a1df4080aeaad5ece1574d2aea3 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Wed, 7 May 2008 18:40:18 +0000 Subject: get all the right bits to SendPrimitiveToClient so we can actually set vel, acc, and rvel in the packet (though this isn't done yet). --- OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'OpenSim/Region/Examples/SimpleModule') diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs index e6e47cb..010e65b 100644 --- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs +++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs @@ -394,17 +394,19 @@ namespace OpenSim.Region.Examples.SimpleModule } public virtual void SendPrimitiveToClient(ulong regionHandle, ushort timeDilation, uint localID, - PrimitiveBaseShape primShape, LLVector3 pos, uint flags, + PrimitiveBaseShape primShape, LLVector3 pos, LLVector3 vel, + LLVector3 acc, LLQuaternion rotation, LLVector3 rvel, uint flags, LLUUID objectID, LLUUID ownerID, string text, byte[] color, uint parentID, - byte[] particleSystem, LLQuaternion rotation, byte clickAction) + byte[] particleSystem, byte clickAction) { } public virtual void SendPrimitiveToClient(ulong regionHandle, ushort timeDilation, uint localID, - PrimitiveBaseShape primShape, LLVector3 pos, uint flags, + PrimitiveBaseShape primShape, LLVector3 pos, LLVector3 vel, + LLVector3 acc, LLQuaternion rotation, LLVector3 rvel, uint flags, LLUUID objectID, LLUUID ownerID, string text, byte[] color, uint parentID, - byte[] particleSystem, LLQuaternion rotation, byte clickAction, byte[] textureanimation, + byte[] particleSystem, byte clickAction, byte[] textureanimation, bool attachment, uint AttachmentPoint, LLUUID AssetId) { } -- cgit v1.1