SubController<enum, uiView>
Last updated
Last updated
namespace: Inherits:
A base class for built ontop SubController<enum>
, ui
will be shown/hidden as this SubController is engaged/disengaged.
See for more info.
public RootController<TAppState> root
: The RootController
this instance is attached to. Useful for updating the applications state.
public uiView UI => ui
protected uiView ui
: An instance of uiView
that is shown/hidden.
public override void Engage()
: enables this.gameObject
and performs ui.ShowRoot()
.
public override void Disengage()
: disables this.gameObject
and performs ui.HideRoot()
.