Example #1
0
 public static MGRepeatForever Actions(MGAction action)
 {
     return new MGRepeatForever
                {
                    Action = action
                };
 }
Example #2
0
 public static MGRepeat Actions(MGAction action, int t)
 {
     return new MGRepeat
                {
                    Action = action,
                    _duration = t*action.Duration
                };
 }