hi guys, I have a problem with a fade transition on my company image.
Infact, when I start my game, my Default.png image appear and do a fade transition for 5 seconds.
How can I delete this and set the transition without the fade transition? Thanks, here’s the code:
[code]
require(“director”)
local mainGroup = display.newGroup()
function main()
display.setStatusBar( display.HiddenStatusBar )
mainGroup:insert(director.directorView)
local storyboard = require “storyboard”
local compImage = display.newImage(“Default.png”, true)
transition.to(compImage, {time=5000, alpha = 0, onComplete = loadGame })
– director:changeScene(“titleScreen”)
director:changeScene(“titlescreen”)
end
main()
[/code] [import]uid: 129238 topic_id: 22261 reply_id: 322261[/import]
[import]uid: 52491 topic_id: 22261 reply_id: 88810[/import]