diff options
author | Sean Dague | 2008-05-07 18:40:18 +0000 |
---|---|---|
committer | Sean Dague | 2008-05-07 18:40:18 +0000 |
commit | 5ff3c03c122b9a1df4080aeaad5ece1574d2aea3 (patch) | |
tree | d92c8b2b98d31f95eada910b561e8a0da9accc43 /OpenSim/Region/Examples | |
parent | * Theoretically, everything is in place for scripted take controls... Theo... (diff) | |
download | opensim-SC_OLD-5ff3c03c122b9a1df4080aeaad5ece1574d2aea3.zip opensim-SC_OLD-5ff3c03c122b9a1df4080aeaad5ece1574d2aea3.tar.gz opensim-SC_OLD-5ff3c03c122b9a1df4080aeaad5ece1574d2aea3.tar.bz2 opensim-SC_OLD-5ff3c03c122b9a1df4080aeaad5ece1574d2aea3.tar.xz |
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).
Diffstat (limited to 'OpenSim/Region/Examples')
-rw-r--r-- | OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs | 10 |
1 files changed, 6 insertions, 4 deletions
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 | |||
394 | } | 394 | } |
395 | 395 | ||
396 | public virtual void SendPrimitiveToClient(ulong regionHandle, ushort timeDilation, uint localID, | 396 | public virtual void SendPrimitiveToClient(ulong regionHandle, ushort timeDilation, uint localID, |
397 | PrimitiveBaseShape primShape, LLVector3 pos, uint flags, | 397 | PrimitiveBaseShape primShape, LLVector3 pos, LLVector3 vel, |
398 | LLVector3 acc, LLQuaternion rotation, LLVector3 rvel, uint flags, | ||
398 | LLUUID objectID, LLUUID ownerID, string text, byte[] color, | 399 | LLUUID objectID, LLUUID ownerID, string text, byte[] color, |
399 | uint parentID, | 400 | uint parentID, |
400 | byte[] particleSystem, LLQuaternion rotation, byte clickAction) | 401 | byte[] particleSystem, byte clickAction) |
401 | { | 402 | { |
402 | } | 403 | } |
403 | public virtual void SendPrimitiveToClient(ulong regionHandle, ushort timeDilation, uint localID, | 404 | public virtual void SendPrimitiveToClient(ulong regionHandle, ushort timeDilation, uint localID, |
404 | PrimitiveBaseShape primShape, LLVector3 pos, uint flags, | 405 | PrimitiveBaseShape primShape, LLVector3 pos, LLVector3 vel, |
406 | LLVector3 acc, LLQuaternion rotation, LLVector3 rvel, uint flags, | ||
405 | LLUUID objectID, LLUUID ownerID, string text, byte[] color, | 407 | LLUUID objectID, LLUUID ownerID, string text, byte[] color, |
406 | uint parentID, | 408 | uint parentID, |
407 | byte[] particleSystem, LLQuaternion rotation, byte clickAction, byte[] textureanimation, | 409 | byte[] particleSystem, byte clickAction, byte[] textureanimation, |
408 | bool attachment, uint AttachmentPoint, LLUUID AssetId) | 410 | bool attachment, uint AttachmentPoint, LLUUID AssetId) |
409 | { | 411 | { |
410 | } | 412 | } |