aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleModule
diff options
context:
space:
mode:
authorMelanie Thielker2008-11-11 19:08:59 +0000
committerMelanie Thielker2008-11-11 19:08:59 +0000
commit47a5d71b7e7e8a354bd5640055cf4efdb881b954 (patch)
treeaaea097d01d36e826f9596bcb4139f445b919888 /OpenSim/Region/Examples/SimpleModule
parentminor: refactor some SceneTests code for future tests (diff)
downloadopensim-SC_OLD-47a5d71b7e7e8a354bd5640055cf4efdb881b954.zip
opensim-SC_OLD-47a5d71b7e7e8a354bd5640055cf4efdb881b954.tar.gz
opensim-SC_OLD-47a5d71b7e7e8a354bd5640055cf4efdb881b954.tar.bz2
opensim-SC_OLD-47a5d71b7e7e8a354bd5640055cf4efdb881b954.tar.xz
Prevent pieces from other people's HUDs from displaying at the center of
every user's HUD
Diffstat (limited to 'OpenSim/Region/Examples/SimpleModule')
-rw-r--r--OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
index 66fb6d8..44ad400 100644
--- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
+++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
@@ -473,7 +473,7 @@ namespace OpenSim.Region.Examples.SimpleModule
473 { 473 {
474 } 474 }
475 475
476 public virtual void AttachObject(uint localID, Quaternion rotation, byte attachPoint) 476 public virtual void AttachObject(uint localID, Quaternion rotation, byte attachPoint, UUID ownerID)
477 { 477 {
478 } 478 }
479 479
@@ -500,7 +500,8 @@ namespace OpenSim.Region.Examples.SimpleModule
500 } 500 }
501 public virtual void SendPrimTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, 501 public virtual void SendPrimTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID,
502 Vector3 position, Quaternion rotation, Vector3 velocity, 502 Vector3 position, Quaternion rotation, Vector3 velocity,
503 Vector3 rotationalvelocity, byte state, UUID AssetId) 503 Vector3 rotationalvelocity, byte state, UUID AssetId,
504 UUID ownerID, int attachPoint)
504 { 505 {
505 } 506 }
506 507