I'm trying to do a layout zoom in while keeping the UI layer normal. I have tons of layers and every stage has different layers, so to avoid zooming in on 200 layers simultaneously I'm trying to do the following:
Zoom in Layout : LayoutScale+0.1*dt
Zoom out Layer "UI" : LayerScale("UI")-0.1*dt
if LayoutScale > 1.2
Set LayoutScale 1.2
Set Layer "UI" Scale to 0.8
While this looks...okay, sometimes it doesn't match up exactly at the end. Can anyone think of a better way to do this?