The text on my iPad 3 for my game is showing up as white rectangles. Here is a snippet of my code:
[lua]game = require( “beebegames” )
local newRetinaText = game.newRetinaText
function new()
local localGroup = display.newGroup()
local loadingImage
local showLoadingScreen = function()
loadingImage = newRetinaText( ‘Ramp’ ,50 )
loadingImage.x = 240; loadingImage.y = 160
local goToLevel = function()
director:changeScene( “level330” )
end
theTimer = timer.performWithDelay( 3000, goToLevel, 1 )
end
showLoadingScreen()[/lua] [import]uid: 46082 topic_id: 25800 reply_id: 325800[/import]