0
私は、ポートレートモードでコロナとゲームをしました。すべてが素晴らしいですが、configはすべての異なる画面サイズに適応できません。これは私のコードです:例えば画面サイズの設定(iOS、Android)
local aspectRatio = display.pixelHeight/display.pixelWidth
application = {
content = {
width = aspectRatio > 1.5 and 320 or math.floor(480/aspectRatio),
height = aspectRatio < 1.5 and 480 or math.floor(320 * aspectRatio),
scale = "letterBox",
fps = 60,
imageSuffix = {
["@2x"] = 1.5,
["@4x"] = 3.0,
},
},
}
:すべてのiPhoneモデル(ゲームの要素が画面の上にある)このコードではなく、iPhone 4のための罰金です。 「普遍的な」コードがありますか?
誰かが私を助けてくれることを願っています。
おかげで、よろしく