Exemplo n.º 1
0
        public static MTRepeatForever Create(params MTFiniteTimeAction[] actions)
        {
            var action = new MTRepeatForever(actions);

            return(action);
        }
Exemplo n.º 2
0
 public MTRepeatForeverState(MTRepeatForever action, GameObject target)
     : base(action, target)
 {
     InnerAction      = action.InnerAction;
     InnerActionState = (MTFiniteTimeActionState)InnerAction.StartAction(target);
 }
Exemplo n.º 3
0
 public MTRepeatForeverState(MTRepeatForever action, GameObject target)
     : base(action, target)
 {
     InnerAction = action.InnerAction;
     InnerActionState = (MTFiniteTimeActionState)InnerAction.StartAction (target);
 }