Esempio n. 1
0
 public static DisposableGroup RegisterFixedUpdate(this DisposableGroup dg, Action fixedupdateAction, int order = 0)
 => dg.Register(
     TimeMachine.RegisterFixedUpdate(fixedupdateAction, order));
Esempio n. 2
0
 public static DisposableGroup RegisterLateUpdate(this DisposableGroup dg, Action lateupdateAction, int order = 0)
 => dg.Register(
     TimeMachine.RegisterLateUpdate(lateupdateAction, order));