Пример #1
0
        public static CCActionRepeat Create(IFiniteTimeAction action, uint times)
        {
            CCActionRepeat repeat = new CCActionRepeat();

            if (repeat.InitWithAction(action, times))
            {
                return(repeat);
            }
            return(null);
        }
Пример #2
0
 internal static object Create(CCActionRepeat repeat)
 {
     throw new NotImplementedException();
 }
Пример #3
0
 public override IAction Reverse()
 {
     return(CCActionRepeat.Create(m_innerAction.Reverse() as IFiniteTimeAction, m_times));
 }
Пример #4
0
 public static ActionInterval CCRepeat(ActionInterval action, uint time)
 {
     return(CCActionRepeat.Create(action, time));
 }