I’m telling my script to pan till Zone 1, pause then pan back to Zone 3 but it pauses at zone 2? I’m not sure if it’s a glitch or if something is wrong with my script
@pan to zone 3 in 5 @zoom on 640 248 to 200% in 0 @pan to zone 1 @pause for a beat @pan to zone 3 in 1
When you use zooms, the coordinate number matters. So coordinates from one zone will be diff from other zone. If you’re zoomed in at zone 3 and then pan to zone 1 for example without resetting zoom or using coordinates from there it will not work out in your favor.
Thread:
So cut to each zone, copy coordinates and then pan and zoom.
#It matters mainly along the x-axis (first number in zoom command, left-right direction), here’s an example code:
&cut to zone 1
&zoom on 0 248 to 200% in 0 @pause for 0.3
&zoom on 678 248 to 200% in 5 @pan to zone 3 in 5 @pause for 0.3
&zoom on 0 248 to 200% in 2 @pan to zone 1 in 2 @pause for a beat
&zoom on 678 248 to 200% in 1 @pan to zone 3 in 1
#I’m not on the web previewer atm but try this and change anything around that you’d like to ^^