Change Proxy Menu/Level (SOLVED)

Yes, that looks about right.

Sounds good. Unless the collection contains a huge amount of assets that need to be loaded it should be very fast to unload and load it.

There are multiple ways to create transitions. @Mathias_Westerdahl made a post about screen transitions using stencil buffers here: Screen fade using stencil buffers

A quick and dirty solution would be to add a fullscreen/stretched sprite and animate it’s alpha value:

-- start by setting alpha to 0
go.set("#sprite", "tint.w", 0)
-- animate alpha once from it's current value of 0 to the value of 1.0 over a period of 1.5 seconds
go.animate("#sprite", "tint.w", go.PLAYBACK_ONCE_FORWARD, 1.0, go.EASING_LINEAR, 1.5, 0)
1 Like