Beispiel #1
0
        public TMOAnimItem Dup()
        {
            TMOAnimItem item = new TMOAnimItem();

            item.Length = Length;
            item.Accel  = Accel;
            if (Tmo != null)
            {
                item.Tmo = Tmo.Dup();
                item.Tmo.LoadTransformationMatrixFromFrame(0);
            }

            return(item);
        }