Checking several variables for a certain value at once would be nice. They could be combined with a list or array.
A sequence of "Variable: Check" Actions would allow for that, but I feel combining them into one Action would be too cumbersome from a UI standpoint.
You can, however, check for variable values in script as well, for example:
if (AC.GlobalVariables.GetVariable ("MyBool").BooleanValue == true && AC.GlobalVariables.GetVariable ("MyInt").IntegerValue == 12) { }
See the Manual's "Variable scripting" chapter for details.
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
A sequence of "Variable: Check" Actions would allow for that, but I feel combining them into one Action would be too cumbersome from a UI standpoint.
You can, however, check for variable values in script as well, for example:
See the Manual's "Variable scripting" chapter for details.