Exemple #1
0
        public void PlayQueuedAnimation(Animation_Type type, float speed)
        {
            string name = GetAnimationNameByType(type);

            if (string.IsNullOrEmpty(name))
            {
                return;
            }

            GfxSystem.PlayQueuedAnimation(m_Actor, name);
            GfxSystem.SetAnimationSpeed(m_Actor, name, speed);
        }