Hi,
I am trying to create a transition where the next scene comes “fromTop” while at the same time I would like the current scene to go down at the same speed, creating an effect of an infinite canvas.
So I have something like this in my scene code when I want to trigger loading the next scene:
transition.moveBy(scene.view,{y = display.contentHeight,time=400})
composer.gotoScene("nextScene",{effect = "fromTop",time = 400})
But this doesn’t work. The current scene doesn’t seem to move and the next scene just comes from the top and covers it up.
Any suggestions or things I can try out to create this effect would be greatly helpful.
Thanks.