function restartLvl() for i = 1,#balloonTexts do display.remove(balloonTexts[i]) print ("restart level") end score.text = '0' ballRemain.text = '3' balloonText = {} createBalloons(1,3) if (askUser.isVisible = true) then --this is the line where the error occured askUser.isVisible = false end if (yesBtn.isVisible = true) then yesBtn.isVisible = false end if (noBtn.isVisible = true) then noBtn.isVisible = false endend解决方法 =是赋值运算符,==是测试相等的运算符.将其更改为:
if (askUser.isVisible == true) then askUser.isVisible = falseend
还有其他所有人.为简单起见,可以省略括号():
if askUser.isVisible == true then askUser.isVisible = falseend
如果值是布尔值,您也可以这样做,因为所有非nil或false的值都被视为true.
if askUser.isVisible then askUser.isVisible = falseend总结
以上是内存溢出为你收集整理的lua – 如何在此代码中找到缺少的括号?全部内容,希望文章能够帮你解决lua – 如何在此代码中找到缺少的括号?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)