OpenMetaverse.AgentManager.AnimationStart C# (CSharp) Method

AnimationStart() public method

Send an AgentAnimation packet that toggles a single animation on
public AnimationStart ( UUID animation, bool reliable ) : void
animation UUID The of the animation to start playing
reliable bool Whether to ensure delivery of this packet or not
return void
        public void AnimationStart(UUID animation, bool reliable)
        {
            Dictionary<UUID, bool> animations = new Dictionary<UUID, bool>();
            animations[animation] = true;

            Animate(animations, reliable);
        }