diff options
author | Melanie | 2012-10-26 21:23:20 +0100 |
---|---|---|
committer | Melanie | 2012-10-26 21:23:20 +0100 |
commit | 1c5f6e48b80e15f97c8203f3db0df6745c7a2283 (patch) | |
tree | 8e79a3ab78491cbb87b2e7c9ee2f634fe7c0db9d /OpenSim/Region/ScriptEngine | |
parent | Revert "Fix for Mantis 0006376: Avatar no longer show Walking animation when ... (diff) | |
download | opensim-SC_OLD-1c5f6e48b80e15f97c8203f3db0df6745c7a2283.zip opensim-SC_OLD-1c5f6e48b80e15f97c8203f3db0df6745c7a2283.tar.gz opensim-SC_OLD-1c5f6e48b80e15f97c8203f3db0df6745c7a2283.tar.bz2 opensim-SC_OLD-1c5f6e48b80e15f97c8203f3db0df6745c7a2283.tar.xz |
Separate LSL's notion of the default anim from the actually playing anims.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index dc791d3..fa57845 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -4388,7 +4388,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
4388 | { | 4388 | { |
4389 | AnimationSet currentAnims = presence.Animator.Animations; | 4389 | AnimationSet currentAnims = presence.Animator.Animations; |
4390 | string currentAnimationState = String.Empty; | 4390 | string currentAnimationState = String.Empty; |
4391 | if (animationstateNames.TryGetValue(currentAnims.DefaultAnimation.AnimID, out currentAnimationState)) | 4391 | if (animationstateNames.TryGetValue(currentAnims.ImplicitDefaultAnimation.AnimID, out currentAnimationState)) |
4392 | return currentAnimationState; | 4392 | return currentAnimationState; |
4393 | } | 4393 | } |
4394 | } | 4394 | } |
@@ -5705,7 +5705,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
5705 | flags |= ScriptBaseClass.AGENT_SITTING; | 5705 | flags |= ScriptBaseClass.AGENT_SITTING; |
5706 | } | 5706 | } |
5707 | 5707 | ||
5708 | if (agent.Animator.Animations.DefaultAnimation.AnimID | 5708 | if (agent.Animator.Animations.ImplicitDefaultAnimation.AnimID |
5709 | == DefaultAvatarAnimations.AnimsUUID["SIT_GROUND_CONSTRAINED"]) | 5709 | == DefaultAvatarAnimations.AnimsUUID["SIT_GROUND_CONSTRAINED"]) |
5710 | { | 5710 | { |
5711 | flags |= ScriptBaseClass.AGENT_SITTING; | 5711 | flags |= ScriptBaseClass.AGENT_SITTING; |
@@ -7892,7 +7892,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
7892 | { | 7892 | { |
7893 | LSL_Vector lower; | 7893 | LSL_Vector lower; |
7894 | LSL_Vector upper; | 7894 | LSL_Vector upper; |
7895 | if (presence.Animator.Animations.DefaultAnimation.AnimID | 7895 | if (presence.Animator.Animations.ImplicitDefaultAnimation.AnimID |
7896 | == DefaultAvatarAnimations.AnimsUUID["SIT_GROUND_CONSTRAINED"]) | 7896 | == DefaultAvatarAnimations.AnimsUUID["SIT_GROUND_CONSTRAINED"]) |
7897 | { | 7897 | { |
7898 | // This is for ground sitting avatars | 7898 | // This is for ground sitting avatars |