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