aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleModule
diff options
context:
space:
mode:
authorMelanie Thielker2008-10-18 05:51:36 +0000
committerMelanie Thielker2008-10-18 05:51:36 +0000
commitefe3f3eb2a0a31b1da474974c7d8193c2b28e13f (patch)
treedf1d30ad2f9230ea4e8fbfd1e6368d539600c785 /OpenSim/Region/Examples/SimpleModule
parent* Fix an over compensation for bounciness on flat Primitive (diff)
downloadopensim-SC_OLD-efe3f3eb2a0a31b1da474974c7d8193c2b28e13f.zip
opensim-SC_OLD-efe3f3eb2a0a31b1da474974c7d8193c2b28e13f.tar.gz
opensim-SC_OLD-efe3f3eb2a0a31b1da474974c7d8193c2b28e13f.tar.bz2
opensim-SC_OLD-efe3f3eb2a0a31b1da474974c7d8193c2b28e13f.tar.xz
Megapatch. :) Fix skull attachment editing. Streamline Object terse updates.
Add rezzing time to objects. Add Object return and traffic fields to land database. Add plumbing for auto return. Implement auto return. Contains a migration. May contain nuts.
Diffstat (limited to 'OpenSim/Region/Examples/SimpleModule')
-rw-r--r--OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs9
1 files changed, 2 insertions, 7 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
index cc49072..af60323 100644
--- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
+++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
@@ -79,7 +79,7 @@ namespace OpenSim.Region.Examples.SimpleModule
79 public event RequestAvatarProperties OnRequestAvatarProperties; 79 public event RequestAvatarProperties OnRequestAvatarProperties;
80 public event SetAlwaysRun OnSetAlwaysRun; 80 public event SetAlwaysRun OnSetAlwaysRun;
81 81
82 public event GenericCall4 OnDeRezObject; 82 public event DeRezObject OnDeRezObject;
83 public event Action<IClientAPI> OnRegionHandShakeReply; 83 public event Action<IClientAPI> OnRegionHandShakeReply;
84 public event GenericCall2 OnRequestWearables; 84 public event GenericCall2 OnRequestWearables;
85 public event GenericCall2 OnCompleteMovementToRegion; 85 public event GenericCall2 OnCompleteMovementToRegion;
@@ -225,6 +225,7 @@ namespace OpenSim.Region.Examples.SimpleModule
225 public event DirPopularQuery OnDirPopularQuery; 225 public event DirPopularQuery OnDirPopularQuery;
226 public event DirClassifiedQuery OnDirClassifiedQuery; 226 public event DirClassifiedQuery OnDirClassifiedQuery;
227 public event EventInfoRequest OnEventInfoRequest; 227 public event EventInfoRequest OnEventInfoRequest;
228 public event ParcelSetOtherCleanTime OnParcelSetOtherCleanTime;
228 229
229 public event MapItemRequest OnMapItemRequest; 230 public event MapItemRequest OnMapItemRequest;
230 231
@@ -499,12 +500,6 @@ namespace OpenSim.Region.Examples.SimpleModule
499 { 500 {
500 } 501 }
501 502
502 public virtual void SendPrimTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID,
503 Vector3 position, Quaternion rotation, Vector3 velocity,
504 Vector3 rotationalvelocity)
505 {
506 }
507
508 public virtual void SendInventoryFolderDetails(UUID ownerID, UUID folderID, 503 public virtual void SendInventoryFolderDetails(UUID ownerID, UUID folderID,
509 List<InventoryItemBase> items, 504 List<InventoryItemBase> items,
510 List<InventoryFolderBase> folders, 505 List<InventoryFolderBase> folders,