0

我来自 Java 并尝试使用 lua 和 love2d 对 iPad 应用程序进行编程。我很新,我总是得到这个错误:

Syntax error: main.lua:18: 'end' expected (to close 'function' at line 12) near 'elseif'

这是我的代码:

function setup()
i = 0
end

function draw()
if i == 0
then
background(0, 0, 0, 0)
i = i + 1
end
elseif i == 1
then
background(255, 0, 0, 0)
i = i + 1

elseif i == 2
then
background(0, 255, 0, 0)
i = i + 1

elseif i == 3
then
background(0, 0, 255, 0)
i = i + 1

elseif i == 4
then
background(255, 255, 0, 0)
i = i + 1

elseif i == 5
then
background(255, 255, 255, 0)
i = i + 1

elseif i == 6
then
background(0, 255, 255, 0)
i = i + 1

elseif i == 7
then
background(255, 0, 255, 0)
i = 0
end

有什么问题,我该怎么做才能解决它并在将来避免它?谢谢。

4

2 回答 2

6

你有 if...then...end...elseif.... “end”不属于那里。

于 2013-02-20T12:56:48.047 回答
4

John 的答案是正确的,但是既然你刚开始,我不禁给你一些建议:以数据驱动的方式编写这种代码要好得多。这意味着例如像这样重写你的draw()函数:

backgrounds = {
  {  0,   0,   0, 0},
  {255,   0,   0, 0},
  {  0, 255,   0, 0},
  {  0,   0, 255, 0},
  {255, 255,   0, 0},
  {255, 255, 255, 0},
  {  0, 255, 255, 0},
  {255,   0, 255, 0}
}

function draw()
  background(unpack(backgrounds[i+1]))
  i = (i+1) % 8
end

和 Lua 一起玩吧!

于 2013-02-20T14:03:38.680 回答