Class DebugUI.HistoryEnumField
Enumerator field with history.
Inheritance
DebugUI.HistoryEnumField
Implements
Inherited Members
Namespace: UnityEngine.Rendering
Assembly: Unity.RenderPipelines.Core.Runtime.dll
Syntax
public class DebugUI.HistoryEnumField : DebugUI.EnumField, DebugUI.IValueField
Properties
historyDepth
Depth of the field's history.
Declaration
public int historyDepth { get; }
Property Value
Type | Description |
---|---|
int |
historyIndexGetter
History getter for this field.
Declaration
public Func<int>[] historyIndexGetter { get; set; }
Property Value
Type | Description |
---|---|
Func<int>[] |
Methods
GetHistoryValue(int)
Get the value of the field at a certain history index.
Declaration
public int GetHistoryValue(int historyIndex)
Parameters
Type | Name | Description |
---|---|---|
int | historyIndex | Index of the history to query. |
Returns
Type | Description |
---|---|
int | Value of the field at the provided history index. |