Variable Selector in Udon Graph
Sotalo
UE4/UE5 Blueprints have the option to select and switch between multiple variables based on boolean true/false and integer values. Rather than duplicating many, many, many nodes to change the variable based on others in sequence, a list of variables can all be supplied to one node and properly selected.
A good example: a microphone which increases a player's gain, near, far, and radius with 3 different loudness settings, then reverts back to default, will require 3-4 branch nodes and 16 nodes called to change settings. But with the select feature, no branches are needed, 4 variables can each be supplied to a select function on 4 nodes: just 4 nodes and 4 selectors. As the selection becomes more complicated, or more variables are needed, the selectors may become a little bigger, and the math for selection may be bigger, but the code for all that only needs to be made once, and the need for duplicating nodes many, many times goes away.
Log In