WatchReference
WatchReference<T>
is a struct type returned by most Watch methods, providing straightforward access to common operations for watch variables.
ChildCount
Returns the number of child variables. Returns 0 if there are none.GetChildNames
Retrieves a collection containing the names of all child variables.GetOrAdd
Retrieves an existing child variable or adds a new one with the specified namepath
and type V
.
This method is similar to GetOrAdd()
.
SetAlwaysCollapsable
Configures the variable columns to always be collapsable. If Collapse button is enabled in the Watch window, values from these variables will behave as if they haven't changed. This is useful for constantly changing values, to prevent cluttering.SetSortOrder
Assigns a sorting order to the variable, determined by the specifiedvalue
.
This functions similarly to scripting execution order in Unity: a higher value places the variable lower in the display order and vice versa.
If no sorting order is specified, it defaults to the creation order of the variables, with a float value expected between 0
and 1
.
SetDecimalPlaces
Sets the number of decimal places for numeric values. The default is2
. If applied to a non-numeric variable, it has no effect.
SetTitleFormat
Overridesformat
for the variable's display area.
SetDefaultValueFormat
Overrides the defaultformat
for the variable's values.
AddConditionalValueFormat
public WatchReference<T> AddConditionalValueFormat(Func<T, bool> condition, WatchValueFormat format)
format
based on a condition.
condition
is a delegate that takes a value of type T
and returns whether the condition is met.
If multiple conditions are true
for the same value
If multiple positive conditions are present, only the last one will take effect.
public WatchReference<T> AddConditionalValueFormat(Func<T, bool> condition, Func<T, WatchValueFormat> dynamicFormat)
dynamicFormat
that determines the format based on the value.
PushValueFormat
Directly pushes valueformat
to the variable. Pushing formats functions like pushing values and must be done before calling Watch.UpdateAll()
.
PushExtraText
Pushes additional textextraText
to the variable. Similar to pushing values, this must also be done before Watch.UpdateAll()
is called.
PushEmptyValue
Pushes an empty value to the variable and all of its children recursively, constrained bymaxRecursionDepth
. If withRoot
is set to false
, the empty value will not be pushed to the target variable itself, only to its children.
SetTraceable
Marks variable as Traceable, automatically capturing the stack trace whenever its value is pushed.Why I don't see the stack trace?
Note that SetTraceable()
has no effect on auto-updating variables, as it would only capture the internal Watch.UpdateAll
call. In such cases, you can manually push the stack trace using PushStackTrace()
(or it's direct version) whenever you're certain the variable value has been changed.
PushStackTrace
Captures and attaches the current invocation stack trace to the variable. Works regardless of whetherSetTraceable()
is enabled. Like pushing values, this must be called before Watch.UpdateAll()
.
SetMinMaxModeAsGlobal
Sets the variable's min/max calculation mode to global, meaning the values min/max will be determined based on the entire history. By default, it's local, meaning the min/max is calculated only from the values currently visible on screen.SetMinMaxModeAsCustom
Sets the variable's min/max calculation mode to custom, meaning the min/max values are manually set to the specifiedminValue
and maxValue
. By default, it's local, where min/max is calculated only from the values currently visible on screen.
What is min/max mode?
Min/max values are calculated for every variable to determine the fill level of the value cell's progress bar. It doesn't affect anything except the displayed cell visuals.
SetCustomAction
Adds a custom button to the variable info area.name
defines the button's text, and action
specifies the function to execute when the button is clicked.