Type String Event create Revision Current Public Release (2018.3326) Keywords composer, scene, create, event
For the create event, event.name
is the string value "create"
. It can be accessed from the event listener for create events that are dispatched to scene objects.
-------------------------- -- From "scene1.lua" -------------------------- composer.gotoScene( "scene2" , { effect= "fade" , time=800 } ) -------------------------- -- In "scene2.lua" -------------------------- local composer = require ( "composer" ) local scene = composer.newScene() function scene:create( event ) print ( event.name ) end scene:addEventListener( "create" ) |