Hello. What is there a good advice for adding a scene-changing effect?
[lua]function new()
local introGroup = display.newGroup()
local background = display.newImage (“fake_large.jpg”)
local begin = display.newImage (“button_begin.png”)
begin.x = 160
begin.y = 400
begin.scene = “menu”
introGroup:insert(background)
introGroup:insert(begin)
begin:addEventListener(“touch”, changeScene)
return introGroup
end[/lua] [import]uid: 162639 topic_id: 33170 reply_id: 333170[/import]