Corona SDK与Graphic 2.0的位置不起作用
我已将Corona SDK版本升级到2013.2076(使用Graphic 2.0)。 但现在我的背景图片无法正常工作,应用程序崩溃。
local background = display.newImageRect("/bg.png", 570, 360 )
background:setReferencePoint( display.CenterReferencePoint )
background.x = display.contentCenterX ; background.y = display.contentCenterY
gameGroup:insert(background)
它在以前版本的Corona SDK中完美运行。 我无法确定问题。 请帮忙
随着Corona Build 2013.2076的发布, setReferencePoint
已被弃用。 您可以使用
background.anchorX = 0.5 ;
background.anchorY = 0.5 ;
有关anchors
更多信息,请参阅
http://docs.coronalabs.com/guide/graphics/transform-anchor.html
看到这里的例子
http://docs.coronalabs.com/api/type/DisplayObject/anchorX.html
和
http://docs.coronalabs.com/api/type/DisplayObject/anchorY.html
链接地址: http://www.djcxy.com/p/25893.html