I need to add a Constant CHOP value if the Constant CHOP value is negative or
subtract the Constant CHOP value if the Constant CHOP value is positive.
Any expression wizards able to help? Can this be done in an expression or do I need a separate Script DAT?
Ivan
June 2, 2022, 10:08pm
2
should just be: result += constantCHOP[]
But wonder if I’m misunderstanding the question. Where is this value being stored? What are you adding it to? Might be easiest to show your network.
If you’re wanting to test if the value is positive/negative before performing an operation, you should able to just use an if statement in a CHOP execute.
if val == + …
…
elif val == - …
…
Hope this is what you’re looking for!
or without any python, all chops