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