0
私は画像のテーブルをシャッフルしようとしていますが、私はそれらの画像の座標も保存したいのですがどうすればいいですか?それを行うための他の方法はありますか?私が行っている一つは、それはあなたが達成しようとしているものを完全には明らかではありません。このテーブル内の画像をシャッフルする
local alpha = {{"alpha_a"} , {"alpha_b"} , {"alpha_c"} , {"alpha_d"} ,
{"alpha_e"} , {"alpha_f"} , {"alpha_g"} , {"alpha_h"}}
local coordinates ={{x=092, y=470}, {x=197, y=470}, {x=302, y=470},
{x=407, y=470}, {x=512, y=470}, {x=617, y=470} }
for i=1, #alpha do
local selection = table.remove(coordinates, math.random(#coordinates))
print(selection.x,selection.y, #coordinates)
images = display.newImage(alpha[i][1]..".png")
images.x = selection.x
images.y = selection.y
images:addEventListener("touch",swapping)
end