OpenMetaverse.AgentManager.AnimationStop C# (CSharp) Method

AnimationStop() public method

Send an AgentAnimation packet that toggles a single animation off
public AnimationStop ( UUID animation, bool reliable ) : void
animation UUID The of a /// currently playing animation to stop playing
reliable bool Whether to ensure delivery of this packet or not
return void
        public void AnimationStop(UUID animation, bool reliable)
        {
            Dictionary<UUID, bool> animations = new Dictionary<UUID, bool>();
            animations[animation] = false;

            Animate(animations, reliable);
        }