Пример #1
0
        public static RepeatForever Create(ActionInterval action)
        {
            RepeatForever ret = new RepeatForever();

            if (ret != null && ret.InitWithAction(action))
            {
                return(ret);
            }
            return(null);
        }
Пример #2
0
 public override Action Reverse()
 {
     return(RepeatForever.Create(innerAction.Reverse() as ActionInterval));
 }