Quick Links: Download Gideros Studio | Gideros Documentation | Gideros community chat | DONATE
Some problems / questions with sceneManager — Gideros Forum

Some problems / questions with sceneManager

Tom2012Tom2012 Guru
edited November 2012 in General questions
Hi

1) Is there a way to not have any transition?

2) There seems to be a glitch where if I set sceneManager:changeScene(changeTo, 0, SceneManager.flip)
(the time to zero)
The result is that sometimes the app loads with a white screen.

3) The links to scene manager from this page - http://www.giderosmobile.com/blog/2011/11/17/gideros-scene-manager/ - are broken (found through google searching for 'gideros scenemanager' :-)

Thanks

Tom

Comments

  • talistalis Guru
    edited November 2012
    @tom2012 What about adding new function to scenemanager class like:
    function SceneManager.NoTrans(scene1, scene2, t)
    	local width = application:getContentWidth()
     
    	scene1:setX(-width)
    	scene2:setX(width)
    end
    I didn't try this one just pops in in my mind now:D

    Likes: Tom2012

    +1 -1 (+1 / -0 )Share on Facebook
  • atilimatilim Maintainer
    Accepted Answer
    @tom2012 - also can you try with a number a little bigger then 0 (e.g. 0.0001).

    Likes: Tom2012

    +1 -1 (+1 / -0 )Share on Facebook
  • Thanks Guys.

    Going to try those out now.
Sign In or Register to comment.