Hi there!
Im hoping to get some help to solve a little problem.
I’m using two expose transform helpers for measuring two angles. Lets just call the angles A and B. A is variable over an animation and B is static.
Then i put the two angles from the expose helpers in to an expression controller like this:
if ( A < B, 1,0)
So: If angle A is less than angle B return 1, or else return 0.
But there is a problem in the expose helper wich measures angle A. When angle A is 0 degrees the helper returns 180 degrees rather than 0. This causes the expression to return the wrong value in one frame or so when angle A passes 0 degrees, because angle B is less than 180 degrees.
Any ideas on how to fix this problem?

