Class DebugState<T>
Generic serialized state of a Debug Item.
Inherited Members
UnityEngine.ScriptableObject.SetDirty()
UnityEngine.ScriptableObject.CreateInstance<T>()
UnityEngine.Object.Equals(System.Object)
UnityEngine.Object.Instantiate<T>(T)
UnityEngine.Object.Instantiate<T>(T, UnityEngine.Vector3, UnityEngine.Quaternion)
UnityEngine.Object.Instantiate<T>(T, UnityEngine.Vector3, UnityEngine.Quaternion, UnityEngine.Transform)
UnityEngine.Object.Instantiate<T>(T, UnityEngine.Transform)
UnityEngine.Object.Instantiate<T>(T, UnityEngine.Transform, System.Boolean)
UnityEngine.Object.DestroyObject(UnityEngine.Object, System.Single)
UnityEngine.Object.DestroyObject(UnityEngine.Object)
UnityEngine.Object.FindSceneObjectsOfType(System.Type)
UnityEngine.Object.FindObjectsOfType<T>()
UnityEngine.Object.FindObjectsByType<T>(UnityEngine.FindObjectsSortMode)
UnityEngine.Object.FindObjectsOfType<T>(System.Boolean)
UnityEngine.Object.FindObjectsByType<T>(UnityEngine.FindObjectsInactive, UnityEngine.FindObjectsSortMode)
UnityEngine.Object.FindObjectOfType<T>()
UnityEngine.Object.FindObjectOfType<T>(System.Boolean)
UnityEngine.Object.FindFirstObjectByType<T>()
UnityEngine.Object.FindAnyObjectByType<T>()
UnityEngine.Object.FindFirstObjectByType<T>(UnityEngine.FindObjectsInactive)
UnityEngine.Object.FindAnyObjectByType<T>(UnityEngine.FindObjectsInactive)
Namespace: UnityEditor.Rendering
Syntax
[Serializable]
public class DebugState<T> : DebugState
Type Parameters
Name | Description |
---|---|
T |
Fields
m_Value
Value of the Debug Item.
Declaration
[SerializeField]
protected T m_Value
Field Value
Type | Description |
---|---|
T |
Properties
value
Value of the Debug Item
Declaration
public virtual T value { get; set; }
Property Value
Type | Description |
---|---|
T |
Methods
GetHashCode()
Returns the hash code of the Debug Item.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
Int32 | Hash code of the Debug Item |
Overrides
UnityEngine.Object.GetHashCode()
GetValue()
Returns the value of the Debug Item.
Declaration
public override object GetValue()
Returns
Type | Description |
---|---|
Object | Value of the Debug Item. |
Overrides
SetValue(Object, DebugUI.IValueField)
Set the value of the Debug Item.
Declaration
public override void SetValue(object value, DebugUI.IValueField field)
Parameters
Type | Name | Description |
---|---|---|
Object | value | Input value. |
DebugUI.IValueField | field | Debug Item field. |