下面是我正在尝试编写的代码。我正在尝试将对象动态分配给 lua 中的二维数组。它返回一个错误,说尝试在行 grid[i][j]=diceclass.new( ((i+2)/10),((j+2)/10)) 处索引全局 nil 值?有没有办法解决这个问题或我正在尝试做的事情,动态地将一个对象分配给数组的每个元素?
local diceClass = require( "dice" )
grid={}
for i =1,5 do
grid[i]= {}
for j =1,5 do
grid[i][j]=diceclass.new( ((i+2)/10),((j+2)/10))
end
end
--dice class
local dice = {}
local dice_mt = { __index = dice }
function dice.new( posx, posy)
a=math.random(1,6)
local newdice = display.newText(a, display.contentWidth*posx,
display.contentHeight*posy, nil, 60)
return setmetatable( newdice, dice_mt )
end
return dice