Beispiel #1
0
 public static AsyncPattern GCRepeat2(GCXF <float> wait, GCXF <float> times, GCXF <V2RV2> rpp, GenCtxProperty[] props, SyncPattern[] target) =>
 GCRepeat(new GenCtxProperties <AsyncPattern>(props.Append(GenCtxProperty.Async(wait, times, rpp))), target);
Beispiel #2
0
 /// <param name="wait">Frames to wait between invocations</param>
 /// <param name="times">Number of invocations</param>
 /// <param name="rpp">Amount to increment rv2 between invocations</param>
 /// <param name="props">Other properties</param>
 /// <param name="target">Child StateMachines to run</param>
 public GTRepeat2(GCXF <float> wait, GCXF <float> times, GCXF <V2RV2> rpp, GenCtxProperty[] props, StateMachine[] target) :
     base(new GenCtxProperties <StateMachine>(props.Append(GenCtxProperty.Async(wait, times, rpp))), target)
 {
 }