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