1
我剛開始使用Corona SDK。並學習如何使用它製作應用程序。例如我使用:Corona SDK偏移量不好
local myRectangle = display.newRect(0, 0, 150, 50)
myRectangle.strokeWidth = 3
myRectangle:setFillColor(0.7)
myRectangle:setStrokeColor(1, 0, 0)
當我使用這個它看起來像這樣我的手機上
,當我使用此代碼:
local myRectangle = display.newRect(77, 27, 150, 50)
myRectangle.strokeWidth = 3
myRectangle:setFillColor(0.7)
myRectangle:setStrokeColor(1, 0, 0)
然後將在我的手機上看起來像這樣:
它看起來像偏移量不好。有誰知道如何解決這個問題?