コード例 #1
0
ファイル: CozyAnimationFrame.cs プロジェクト: xxy1991/cozy
 public static CozyAnimationFrame Create(string path, float delayUnits)
 {
     var texture = CozyDirector.Instance.TextureCacheInstance.AddImage(path);
     var animate = new CozyAnimationFrame();
     animate.InitWithTexture(texture, delayUnits);
     return animate;
 }
コード例 #2
0
        public static CozyAnimationFrame Create(CozyTexture texture, float delayUnits)
        {
            var animate = new CozyAnimationFrame();

            animate.InitWithTexture(texture, delayUnits);
            return(animate);
        }
コード例 #3
0
        public static CozyAnimationFrame Create(string path, float delayUnits)
        {
            var texture = CozyDirector.Instance.TextureCacheInstance.AddImage(path);
            var animate = new CozyAnimationFrame();

            animate.InitWithTexture(texture, delayUnits);
            return(animate);
        }
コード例 #4
0
ファイル: CozyAnimationFrame.cs プロジェクト: xxy1991/cozy
 public static CozyAnimationFrame Create(CozyTexture texture, float delayUnits)
 {
     var animate = new CozyAnimationFrame();
     animate.InitWithTexture(texture, delayUnits);
     return animate;
 }