這是我的game.lua的一部分,但我不斷收到此錯誤。嘗試索引全局'自我'(一個零值)
function scene:createScene(event)
end
screenGroup = self.view
background = display.newImage("Space-Background-Image.gif")
screenGroup:insert(background)
local background1 = display.newImage("Space-Background-Image.gif")
background.x = 90
screenGroup:insert(background1)
function scrollBackground(self,event)
if self.x < -480 then
self.x = 480
else
self.x = self.x - 3
end
end
Lua解釋器應該告訴你嘗試發生什麼行號?如果是這樣,請在代碼中指向它(通過像***或評論這樣的標籤)。 – Schollii