0

有人可以告诉我在 lua 中使用 getPixel 和 getColor 的正确方法吗?我试过

 pix = 5; piy = 5;
 getPixel(pix, piy) --getColor(pix, piy)

 image:getPixel(pix, piy) --image:getColor(pix, piy)

...而且我只是无法弄清楚 lua 在抱怨什么。

错误尝试调用全局“getPixel”(零值)

4

1 回答 1

0

有人可以告诉我在 lua 中使用 getPixel 和 getColor 的正确方法吗?

Lua 不提供获取像素或颜色的功能。同样,就像您之前的问题一样,这是您可以在 Gideros 手册中找到的内容。

getPixel(pix, piy) --image:getColor(pix, piy)

...而且我只是无法弄清楚 lua 在抱怨什么。

错误:尝试调用全局“getPixel”(零值)

Lua 抱怨你调用了一个 nil 值。在您的全局环境中没有名为 getPixel 的变量。

所以再次打开 Gideros 手册:
http ://docs.giderosmobile.com/reference/gideros

然后例如单击左侧菜单中的像素:
http ://docs.giderosmobile.com/reference/gideros/Pixel#Pixel

于 2018-04-19T17:41:34.167 回答