In my otl I want to disable a parameter based on two other parameters.
I want to say "disable the parameter if the enableSimulation parameter is zero or if the useCache parameter is one".
I thought this syntax would work but it doesn't...
Am I doing something stupid?
{ enableSimulation == 0 || useCache == 1 }
Cheers!