我来自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
问题是什么,我该怎么做才能解决它并在将来避免它?感谢。
答案 0 :(得分:6)
你有......如果......结束......其他......“结束”不属于那里。
答案 1 :(得分: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玩得开心!