-
Scroll text with scale if/else
I am breaking my mind to find how and I research here and can’t find the solution. I hope be clear here. ☺
I have a comp with 700px width, and 5 words align in x. But I want when that words pass between 270px and 400px of this comp scale to 100 them back to 75% when out this position. Ok I did for wich one separately(in this expression I put here), my question is: Can I put a Null and then this 5 words follow this null then they pass between this values they scale?
My doubt is the value of x position the word is replace of de null, so the null will pass just one time in 270 and 400px.Thank you!
Gusp = transform.position[0];if(p > 270 && p< 400){
[100,100];
}else{
[75,75];
}
