Class DevToolsUIState
The state of the DevTools UI. Each DevTools window has its own state.
Implements
Inherited Members
Namespace: Unity.AppUI.Redux.DevTools
Assembly: Unity.AppUI.Redux.dll
Syntax
[Serializable]
public record DevToolsUIState : IEquatable<DevToolsUIState>
Fields
actionInspector
The data of the selected action.
Declaration
public ActionInspector actionInspector
Field Value
Type | Description |
---|---|
Action |
isInspectorVisible
Whether the DevTools inspector is visible.
Declaration
public bool isInspectorVisible
Field Value
Type | Description |
---|---|
bool |
isPlaying
Whether the DevTools UI is currently playing back actions.
Declaration
public bool isPlaying
Field Value
Type | Description |
---|---|
bool |
liftedState
The lifted state of the selected store.
Declaration
public LiftedState liftedState
Field Value
Type | Description |
---|---|
Lifted |
selectedStoreId
The ID of the selected store.
Declaration
public string selectedStoreId
Field Value
Type | Description |
---|---|
string |
settings
The settings of the DevTools UI.
Declaration
public UISettings settings
Field Value
Type | Description |
---|---|
UISettings |
stores
The list of stores available for inspection.
Declaration
public StoreData[] stores
Field Value
Type | Description |
---|---|
Store |