Exemplo n.º 1
0
        public static CozyDelayTime Create(float time)
        {
            var act = new CozyDelayTime();

            act.InitWithDuraction(time);
            return(act);
        }
Exemplo n.º 2
0
        public override object Clone()
        {
            var act = new CozyDelayTime();

            act.InitWithDuraction(Duration);
            return(act);
        }
Exemplo n.º 3
0
 public static CozyDelayTime Create(float time)
 {
     var act = new CozyDelayTime();
     act.InitWithDuraction(time);
     return act;
 }
Exemplo n.º 4
0
 public override object Clone()
 {
     var act = new CozyDelayTime();
     act.InitWithDuraction(Duration);
     return act;
 }