aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
diff options
context:
space:
mode:
authorSean Dague2008-05-06 22:17:00 +0000
committerSean Dague2008-05-06 22:17:00 +0000
commit0b09966c7ef63a6f01c799c13963c91b50140453 (patch)
tree06ced62c58d506e0d85f8d4b84d2878b2d714011 /OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
parentRestored svn:keywords to prebuild.xml. (diff)
downloadopensim-SC_OLD-0b09966c7ef63a6f01c799c13963c91b50140453.zip
opensim-SC_OLD-0b09966c7ef63a6f01c799c13963c91b50140453.tar.gz
opensim-SC_OLD-0b09966c7ef63a6f01c799c13963c91b50140453.tar.bz2
opensim-SC_OLD-0b09966c7ef63a6f01c799c13963c91b50140453.tar.xz
send actual velocity and angular velocity in terse updates
instead of hardcoding to zero when the primitive is non physical. llTargetOmega should work now.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
index 25622d2..f457773 100644
--- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
+++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
@@ -409,7 +409,8 @@ namespace OpenSim.Region.Examples.SimpleModule
409 { 409 {
410 } 410 }
411 public virtual void SendPrimTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, 411 public virtual void SendPrimTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID,
412 LLVector3 position, LLQuaternion rotation, byte state, LLUUID AssetId) 412 LLVector3 position, LLQuaternion rotation, LLVector3 velocity,
413 LLVector3 rotationalvelocity, byte state, LLUUID AssetId)
413 { 414 {
414 } 415 }
415 416