Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,我的游戏中有一个关卡的背景图片。这是我到目前为止所做的第二个级别。在每台模拟设备上一切看起来都很好,但是当我为 Android 构建应用程序并将其安装在我的 Nexus 7 上时,背景图像大约是它应该大小的三分之一。其他一切都很好,但只有一张背景图片!我之前使用其他应用程序也遇到过这个问题。有想法该怎么解决这个吗?
这是代码
local bg = display.newImage("backyard.png") bg.x=350 bg.y=400 game:insert( bg )
我不完全知道你是如何编码的。但我可以就背景图像的此类问题给你一个建议。只需按如下方式创建背景图像:
local bg = display.newImageRect("bg.png",display.contentWidth,display.contentHeight) bg.x = display.contentWidth/2 bg.y = display.contentHeight/2
继续编码......