event.name

Type String
Event destroy
Revision 2017.3060
Keywords composer, scene, destroy, event

Overview

For the destroy event, event.name is the string value "destroy". It can be accessed from the event listener for destroy events that are dispatched to scene objects.

Example

local composer = require( "composer" )
local scene = composer.newScene()

function scene:destroy( event )
    print( event.name )
end
scene:addEventListener( "destroy" )