Match
The Match check compares two values of any type and determines whether they are exactly equal. Unlike the String Check or Math Check which are specialized for specific data types, Match works with any type of data. If the two values are equal, the flow continues down the True path; otherwise, it goes down the False path.
This is a simple but powerful node for exact equality comparisons when you do not need the more advanced operations offered by String Check or Math Check.
Inputs
| Name | Type | Description |
|---|---|---|
A | any | The first value. |
B | any | The second value to compare against. |
Outputs
| Name | Type | Description |
|---|---|---|
True | pulse | Fires if A and B are exactly equal. |
False | pulse | Fires if A and B are not equal. |
Example
Use the Match check after an OBS Mute Changed trigger to compare the Input Name against your microphone's name. When the muted audio source matches your mic, continue down the True path to toggle a "Mic Muted" overlay indicator. Other audio sources go down the False path and are ignored.