Class DebugUI.Panel
Root panel class.
Inherited Members
Namespace: UnityEngine.Rendering
Assembly: Unity.RenderPipelines.Core.Runtime.dll
Syntax
public class DebugUI.Panel : DebugUI.IContainer, IComparable<DebugUI.Panel>
Constructors
Panel()
Constructor.
Declaration
public Panel()
Properties
children
List of children.
Declaration
public ObservableList<DebugUI.Widget> children { get; }
Property Value
Type | Description |
---|---|
ObservableList<DebugUI.Widget> |
displayName
Display name of the panel.
Declaration
public string displayName { get; set; }
Property Value
Type | Description |
---|---|
string |
editorForceUpdate
Returns true if the panel should always be updated.
Declaration
public bool editorForceUpdate { get; }
Property Value
Type | Description |
---|---|
bool |
flags
Widget flags for this panel.
Declaration
public DebugUI.Flags flags { get; set; }
Property Value
Type | Description |
---|---|
DebugUI.Flags |
groupIndex
Group index of the panel.
Declaration
public int groupIndex { get; set; }
Property Value
Type | Description |
---|---|
int |
isEditorOnly
Specify if the panel is editor only.
Declaration
public bool isEditorOnly { get; }
Property Value
Type | Description |
---|---|
bool |
isInactiveInEditor
Returns true if the panel is inactive in the editor.
Declaration
public bool isInactiveInEditor { get; }
Property Value
Type | Description |
---|---|
bool |
isRuntimeOnly
Specify if the panel is runtime only.
Declaration
public bool isRuntimeOnly { get; }
Property Value
Type | Description |
---|---|
bool |
queryPath
Path of the panel.
Declaration
public string queryPath { get; }
Property Value
Type | Description |
---|---|
string |
Methods
GetHashCode()
Returns the hash code of the panel.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
int | Hash code of the panel. |
Overrides
OnItemAdded(ObservableList<Widget>, ListChangedEventArgs<Widget>)
Callback used when a child is added.
Declaration
protected virtual void OnItemAdded(ObservableList<DebugUI.Widget> sender, ListChangedEventArgs<DebugUI.Widget> e)
Parameters
Type | Name | Description |
---|---|---|
ObservableList<DebugUI.Widget> | sender | Sender widget. |
ListChangedEventArgs<DebugUI.Widget> | e | List of added children. |
OnItemRemoved(ObservableList<Widget>, ListChangedEventArgs<Widget>)
Callback used when a child is removed.
Declaration
protected virtual void OnItemRemoved(ObservableList<DebugUI.Widget> sender, ListChangedEventArgs<DebugUI.Widget> e)
Parameters
Type | Name | Description |
---|---|---|
ObservableList<DebugUI.Widget> | sender | Sender widget. |
ListChangedEventArgs<DebugUI.Widget> | e | List of removed children. |
SetDirty()
Set the panel dirty.
Declaration
public void SetDirty()
Events
onSetDirty
Callback used when the panel is set dirty.
Declaration
public event Action<DebugUI.Panel> onSetDirty
Event Type
Type | Description |
---|---|
Action<DebugUI.Panel> |