Also check standard anim names
parent
e775e1a317
commit
5376d0a97b
|
@ -13510,12 +13510,24 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
|||
if (presence == null)
|
||||
return;
|
||||
|
||||
UUID animID = ScriptUtils.GetAssetIdFromItemName(m_host, anim, (int)AssetType.Animation);
|
||||
UUID animID;
|
||||
if (animState == anim)
|
||||
{
|
||||
animID = UUID.Zero;
|
||||
}
|
||||
else if (MovementAnimationsForLSL.ContainsKey(anim))
|
||||
{
|
||||
animID = DefaultAvatarAnimations.AnimsUUID[MovementAnimationsForLSL[anim]];
|
||||
}
|
||||
else
|
||||
{
|
||||
animID = ScriptUtils.GetAssetIdFromItemName(m_host, anim, (int)AssetType.Animation);
|
||||
if (animID == UUID.Zero)
|
||||
{
|
||||
llShout(ScriptBaseClass.DEBUG_CHANNEL, "Animation not found");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
presence.SetAnimationOverride(state, animID);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue