-
statics, constants
hi everyone, I’m helping a friend and have run into a weird problem.
–my test data:
x=toWorld(b); x is [600,600]
t1=linear(c,0,100,0,600);–before
t1=linear(c,0,100,0,600);–after
t1=linear(c,0,100,0,x[0]); -does’t work???but when I put in x[0] instead of 600, it gives a different answer.
Does linear need constants for value2?
but AE doesn’t support Constants or even pulic final statics, so what can I do?