考虑到不同的图像宽度,均匀地排列阵列中的图像

发布于 2024-12-02 19:20:04 字数 1009 浏览 1 评论 0原文

local xOffset = 0

for i = 1, levelPacks[prevCurrentLevelPack][prevCurrentLevel].ammount do

    if i == 1 then --setup first one

        shapesPrevArray[i].x = 30
        shapesPrevArray[i].y = 41
        shapesPrevArray[i].isVisible = true

    end

    if i > 1 then --setup the rest

        --width of previous one plus the x value of the previous one to make them next to eachother.
        xOffset = shapesPrevArray[i - 1].width + shapesPrevArray[i - 1].x
        print("offset: " .. xOffset)
        shapesPrevArray[i].x = xOffset    
        shapesPrevArray[i].y = 41
        shapesPrevArray[i].isVisible = true
        xOffset = 0

    end

    i = i + 1

end


i:2 width:60 x value:30 xoffset:90
i:3 width:40 x value:90 xoffset:130
i:4 width:50 x value:130 xoffset:180
i:5 width:70 x value:180 xoffset:250

有人可以帮我吗?我不明白为什么这一点没有将它们分开。

xOffset = ShapesPrevArray[i - 1].width + ShapesPrevArray[i - 1].x

如果有人可以解释为什么不是这样并为我指出正确的方向,我将不胜感激。

谢谢。

local xOffset = 0

for i = 1, levelPacks[prevCurrentLevelPack][prevCurrentLevel].ammount do

    if i == 1 then --setup first one

        shapesPrevArray[i].x = 30
        shapesPrevArray[i].y = 41
        shapesPrevArray[i].isVisible = true

    end

    if i > 1 then --setup the rest

        --width of previous one plus the x value of the previous one to make them next to eachother.
        xOffset = shapesPrevArray[i - 1].width + shapesPrevArray[i - 1].x
        print("offset: " .. xOffset)
        shapesPrevArray[i].x = xOffset    
        shapesPrevArray[i].y = 41
        shapesPrevArray[i].isVisible = true
        xOffset = 0

    end

    i = i + 1

end


i:2 width:60 x value:30 xoffset:90
i:3 width:40 x value:90 xoffset:130
i:4 width:50 x value:130 xoffset:180
i:5 width:70 x value:180 xoffset:250

Can anyone help me out please? I can't work out why this bit isn't spacing them out.

xOffset = shapesPrevArray[i - 1].width + shapesPrevArray[i - 1].x

If someone could explain why it isn't and point me in the right direction I would be grateful.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怪我太投入 2024-12-09 19:20:04

您应该删除 i = i + 1

数字的语法如下:

对于 var=exp1,exp2,exp3 执行
  某物
结尾

该循环将为 var 从 exp1 到的每个值执行一些操作
exp2,使用exp3作为递增var的步长。这第三个表达式
是可选的;当不存在时,Lua 假定 1 作为步长值。

http://www.lua.org/pil/4.3.4.html

You should remove i = i + 1

A numeric for has the following syntax:

for var=exp1,exp2,exp3 do
  something
end

That loop will execute something for each value of var from exp1 to
exp2, using exp3 as the step to increment var. This third expression
is optional; when absent, Lua assumes one as the step value.

http://www.lua.org/pil/4.3.4.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文