私のコロナ シミュレーター (ビルド 2016.2992 ) では、コードは期待どおりに動作します。
main.lua
---------------------------------------------
local rect = display.newRect( 0, 0, 100, 100)
rect.anchorX = 0
rect.anchorY = 0
まず、config.lua ファイルを確認してください。ディスプレイの解像度によると思います。たとえば、letterbox
モードでは、コンテンツの縦横比とは異なる縦横比のデバイスに「黒いバー」が表示される場合があります。詳しくは、コロナ のドキュメントをご覧ください。
以下は、私が使用しているconfig.luaファイルのコードです
config.lua
---------------------------------------------
--calculate the aspect ratio of the device
local aspectRatio = display.pixelHeight / display.pixelWidth
application = {
content = {
width = aspectRatio >= 1.5 and 800 or math.floor( 1200 / aspectRatio ),
height = aspectRatio <= 1.5 and 1200 or math.floor( 800 * aspectRatio ),
scale = "letterBox",
fps = 30,
imageSuffix = {
["@2x"] = 1.3,
},
},
}