Quick Links: Download Gideros Studio | Gideros Documentation | Gideros community chat | DONATE
Transitions in SceneManager — Gideros Forum

Transitions in SceneManager

JackoJacko Member
edited July 2014 in General questions
HI, Is posible in SceneManager get classic transition, you know without any flips and similars
thanks in advance for responses

Comments

  • Yes it is possible just put this code in scenemanager.lua file
    function SceneManager.changeWithoutAnim(scene1, scene2, t)
    	t=0
    	local width = application:getContentWidth()
     
    	scene1:setX(t * width)
    	scene2:setX(0)
    end

    Likes: Jacko

    +1 -1 (+1 / -0 )Share on Facebook
  • JackoJacko Member
    Thanks man
Sign In or Register to comment.