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

AnimationStart() 공개 메소드

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

            Animate(animations, reliable);
        }