OpenMetaverse.AgentManager.AnimationStop C# (CSharp) 메소드

AnimationStop() 공개 메소드

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
리턴 void
        public void AnimationStop(UUID animation, bool reliable)
        {
            Dictionary<UUID, bool> animations = new Dictionary<UUID, bool>();
            animations[animation] = false;

            Animate(animations, reliable);
        }