migrations of those stuff in v2?

Hi there,

I’d like to know which are the variables/methods I need to replace for v2 on these stuff:

rack::settings::zoom // rack::settings::browserZoom? it seems different meaning...
APP->window->getLastFrameRate() // APP->window->getLastFrameDuration()?

Thanks

Not sure about getLastFrameRate, but for zoom, see this post from Andrew:

got them:

std::pow(2.0f, rack::settings::zoom); become APP->scene->rackScroll->getZoom()

APP->window->getLastFrameRate() become APP->window->getMonitorRefreshRate()

thanks