Пример #1
0
 public static DisposableGroup RegisterFixedUpdate(this DisposableGroup dg, Action fixedupdateAction, int order = 0)
 => dg.Register(
     TimeMachine.RegisterFixedUpdate(fixedupdateAction, order));
Пример #2
0
 public static DisposableGroup RegisterLateUpdate(this DisposableGroup dg, Action lateupdateAction, int order = 0)
 => dg.Register(
     TimeMachine.RegisterLateUpdate(lateupdateAction, order));