gpt4 book ai didi

lua - "attempt to index a nil value"- Lua 中的错误

转载 作者:行者123 更新时间:2023-12-04 13:50:28 24 4
gpt4 key购买 nike

function newImage(Image, posx, posy)
pic = Bitmap.new(Texture.new(Image))
stage:addChild(pic)
pic:setPosition(posx,posy)
end

local birdie = newImage("bird.png", 100, 100)
birdie:setAnchorPoint(0.5,0.5)
birdie:setRotation(45)

如果我打电话 newImage()像上面一样,图像被加载但是当我尝试使用 birdie:setAnchorpoint() 时它给出了错误“尝试索引小鸟,一个零值”。
我怎样才能解决这个问题?

最佳答案

您没有从函数调用中返回任何内容。另外,使用 local函数内部的变量。

function newImage(Image, posx, posy)
local pic = Bitmap.new(Texture.new(Image))
stage: addChild(pic)
pic:setPosition(posx,posy)
return pic
end

关于lua - "attempt to index a nil value"- Lua 中的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23048792/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com