It looks like you're new here. If you want to get involved, click one of these buttons!
function SceneManager.moveFromRight(scene1, scene2, t) local width = application:getContentWidth() scene1:setX(-t * width) scene2:setX((1 - t) * width) end
--Arguments: --start - provided key to reference scene --1 - duration of transition in seconds --SceneManager.moveFromRight - scene transition --optional - easing sceneManager:changeScene("start", 1, SceneManager.moveFromRight)
sceneManager:changeScene("name of scene", .25 --This is very fast and smooth, SceneManager.(type of transition))
Likes: marbolec
Comments
when changing the scene, you can provide a duration of transition, as:
http://appcodingeasy.com/Gideros-Mobile/Manage-Scenes-in-Gideros-Mobile
Thanks @ar2rsawseen !
I use:
-Landon
Likes: marbolec
Lead Coder and Designer