aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples
diff options
context:
space:
mode:
authorTeravus Ovares2008-02-20 09:45:26 +0000
committerTeravus Ovares2008-02-20 09:45:26 +0000
commitac60382599d8a2bfcf431c0eeafd65eebf865e21 (patch)
tree9ea29e29c93e1ce5a3d962f26ed00388c9253315 /OpenSim/Region/Examples
parent* Fixed xml loading bug (the xml was scheduled for update before added to a s... (diff)
downloadopensim-SC_OLD-ac60382599d8a2bfcf431c0eeafd65eebf865e21.zip
opensim-SC_OLD-ac60382599d8a2bfcf431c0eeafd65eebf865e21.tar.gz
opensim-SC_OLD-ac60382599d8a2bfcf431c0eeafd65eebf865e21.tar.bz2
opensim-SC_OLD-ac60382599d8a2bfcf431c0eeafd65eebf865e21.tar.xz
* Added a few more packets to ClientView. Added tendons to the Skeletal Groups Module, made it shared to save on threads.
Diffstat (limited to 'OpenSim/Region/Examples')
-rw-r--r--OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs
index 0258c61..089dee7 100644
--- a/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs
+++ b/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs
@@ -89,6 +89,9 @@ namespace SimpleApp
89 public event MoveObject OnGrabUpdate; 89 public event MoveObject OnGrabUpdate;
90 public event ViewerEffectEventHandler OnViewerEffect; 90 public event ViewerEffectEventHandler OnViewerEffect;
91 91
92 public event FetchInventory OnAgentDataUpdateRequest;
93 public event FetchInventory OnUserInfoRequest;
94 public event TeleportLocationRequest OnSetStartLocationRequest;
92 95
93 public event UpdateShape OnUpdatePrimShape; 96 public event UpdateShape OnUpdatePrimShape;
94 public event ObjectExtraParams OnUpdateExtraParams; 97 public event ObjectExtraParams OnUpdateExtraParams;
@@ -226,6 +229,11 @@ namespace SimpleApp
226 { 229 {
227 } 230 }
228 231
232 public virtual void SendAgentDataUpdate(LLUUID agentid, LLUUID activegroupid, string firstname, string lastname, ulong grouppowers, string groupname, string grouptitle)
233 {
234
235 }
236
229 public virtual void SendKillObject(ulong regionHandle, uint localID) 237 public virtual void SendKillObject(ulong regionHandle, uint localID)
230 { 238 {
231 } 239 }