コード例 #1
0
ファイル: CozyDelayTime.cs プロジェクト: shangshen/cozy
        public static CozyDelayTime Create(float time)
        {
            var act = new CozyDelayTime();

            act.InitWithDuraction(time);
            return(act);
        }
コード例 #2
0
ファイル: CozyDelayTime.cs プロジェクト: shangshen/cozy
        public override object Clone()
        {
            var act = new CozyDelayTime();

            act.InitWithDuraction(Duration);
            return(act);
        }
コード例 #3
0
ファイル: CozyDelayTime.cs プロジェクト: xxy1991/cozy
 public static CozyDelayTime Create(float time)
 {
     var act = new CozyDelayTime();
     act.InitWithDuraction(time);
     return act;
 }
コード例 #4
0
ファイル: CozyDelayTime.cs プロジェクト: xxy1991/cozy
 public override object Clone()
 {
     var act = new CozyDelayTime();
     act.InitWithDuraction(Duration);
     return act;
 }