Hi,
I have a weird problem with director 1.3
All of the screens are loading perfectly, except for this one:
It’s shows a Loading picture, and tries to change the screen, thats all.
It doesn’t give any errors, and in the terminal ‘Before load’ and ‘after load’ are visible, so the changeScene command is executed.
All i see is the Loading screen.
UPDATE: When i add a button to it, and click that’it loads the screen without problems.
[code]
module(…, package.seeall)
new = function ( )
– Params
– Groups
local levelGroup = display.newGroup()
– Your code here
local background = display.newImage( “loading.png” )
levelGroup:insert( background )
print (“Before load”)
director:changeScene( “menu”, “moveFromLeft” )
print (“After load”)
– MUST return a display.newGroup()
return levelGroup
end
[/code] [import]uid: 50459 topic_id: 12706 reply_id: 312706[/import]