Hi,
I wrote a Script to get the Type of ERCLink of a Controller
print ("ERCLink (DeltaAdd, DivideInto, DivideBy,Multiply, Substract, Add) -> ", aControls[k].type)
The result for this Controller is the following
ERCLink (DeltaAdd, DivideInto, DivideBy, Multiply, Substract, Add) -> 6
According to the documentation the Enum value provides only 6 values (0 -> 5)
In this case we should have Keyed_TBC. Is this missing in the old enum documentation?
enum | ERCType { ERCDeltaAdd = 0, ERCDivideInto, ERCDivideBy, ERCMultiply, ERCSubtract, ERCAdd } |