Problema al mostrar fondo de una escena

Hola apenas empece con corona, estoy tratando de usar escenas pero al momento de poner una imagen para que se muestre de fondo y correr el proyecto, está no se muestra, la pantalla queda negra.

local composer = require( "composer" ) local scene = composer.newScene() -- ----------------------------------------------------------------------------------- -- Code outside of the scene event functions below will only be executed ONCE unless -- the scene is removed entirely (not recycled) via "composer.removeScene()" -- ----------------------------------------------------------------------------------- -- ----------------------------------------------------------------------------------- -- Scene event functions -- ----------------------------------------------------------------------------------- -- create() function scene:create( event ) local sceneGroup = self.view local fondo=display.newImage("image.png") fondo.x=display.contentCenterX fondo.y=display.contentCenterY -- Code here runs when the scene is first created but has not yet appeanred on screen end -- show() function scene:show( event ) local sceneGroup = self.view local phase = event.phase if ( phase == "will" ) then -- Code here runs when the scene is still off screen (but is about to come on screen) elseif ( phase == "did" ) then -- Code here runs when the scene is entirely on screen end end -- hide() function scene:hide( event ) local sceneGroup = self.view local phase = event.phase if ( phase == "will" ) then -- Code here runs when the scene is on screen (but is about to go off screen) elseif ( phase == "did" ) then -- Code here runs immediately after the scene goes entirely off screen end end -- destroy() function scene:destroy( event ) local sceneGroup = self.view -- Code here runs prior to the removal of scene's view end -- ----------------------------------------------------------------------------------- -- Scene event function listeners -- ----------------------------------------------------------------------------------- scene:addEventListener( "create", scene ) scene:addEventListener( "show", scene ) scene:addEventListener( "hide", scene ) scene:addEventListener( "destroy", scene ) -- ----------------------------------------------------------------------------------- return scene

El código esta bien, entiendo que lo tienes en un fichero que por ejemplo se llama pantalla y lo llamas desde el main con

Esto seria el fichero main.lua

local composer = require “composer”

composer.gotoScene ( “pantalla”, “fade”, 10 )

Saludos

Tienes que poner la imagen dentro de function scene:show( event )

El código esta bien, entiendo que lo tienes en un fichero que por ejemplo se llama pantalla y lo llamas desde el main con

Esto seria el fichero main.lua

local composer = require “composer”

composer.gotoScene ( “pantalla”, “fade”, 10 )

Saludos

Tienes que poner la imagen dentro de function scene:show( event )