diff options
author | Justin Clarke Casey | 2008-10-23 20:06:23 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-10-23 20:06:23 +0000 |
commit | 5c2d4002352324d138979f0700d01a86a727a6be (patch) | |
tree | 7da7ee6bd9e41a0991322cd18866922e760bdcd9 /OpenSim/Region/Environment | |
parent | * Reenable assert for the add circuit test (diff) | |
download | opensim-SC_OLD-5c2d4002352324d138979f0700d01a86a727a6be.zip opensim-SC_OLD-5c2d4002352324d138979f0700d01a86a727a6be.tar.gz opensim-SC_OLD-5c2d4002352324d138979f0700d01a86a727a6be.tar.bz2 opensim-SC_OLD-5c2d4002352324d138979f0700d01a86a727a6be.tar.xz |
* Apply http://opensimulator.org/mantis/view.php?id=2459
* Implements the rest of llGetAgentInfo() with the exception of AGENT_BUSY.
* Thanks nlin
Diffstat (limited to 'OpenSim/Region/Environment')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/AnimationSet.cs | 4 | ||||
-rw-r--r-- | OpenSim/Region/Environment/Scenes/ScenePresence.cs | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/AnimationSet.cs b/OpenSim/Region/Environment/Scenes/AnimationSet.cs index 0b7188a..df25173 100644 --- a/OpenSim/Region/Environment/Scenes/AnimationSet.cs +++ b/OpenSim/Region/Environment/Scenes/AnimationSet.cs | |||
@@ -38,6 +38,10 @@ namespace OpenSim.Region.Environment.Scenes | |||
38 | private Animation m_defaultAnimation = new Animation(); | 38 | private Animation m_defaultAnimation = new Animation(); |
39 | private List<Animation> m_animations = new List<Animation>(); | 39 | private List<Animation> m_animations = new List<Animation>(); |
40 | 40 | ||
41 | public Animation DefaultAnimation | ||
42 | { | ||
43 | get { return m_defaultAnimation; } | ||
44 | } | ||
41 | public AnimationSet() | 45 | public AnimationSet() |
42 | { | 46 | { |
43 | ResetDefaultAnimation(); | 47 | ResetDefaultAnimation(); |
diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs index 321e164..f36e3aa 100644 --- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs | |||
@@ -462,6 +462,11 @@ namespace OpenSim.Region.Environment.Scenes | |||
462 | get { return m_knownChildRegions; } | 462 | get { return m_knownChildRegions; } |
463 | } | 463 | } |
464 | 464 | ||
465 | public AnimationSet Animations | ||
466 | { | ||
467 | get { return m_animations; } | ||
468 | } | ||
469 | |||
465 | #endregion | 470 | #endregion |
466 | 471 | ||
467 | #region Constructor(s) | 472 | #region Constructor(s) |