コード例 #1
0
ファイル: CCAnimation.cs プロジェクト: eickegao/cocos2d-xna
        public static CCAnimation Create(List<CCSpriteFrame> frames, float delay)
        {
            var pAnimation = new CCAnimation();
            pAnimation.InitWithSpriteFrames(frames, delay);

            return pAnimation;
        }