Do you think a
function in C++ exported to Lua is faster then
in Lua?
1 2 | cBlockArea:DoWithEveryBlock( -- Code here) |
1 2 3 4 5 6 7 | for X=0, BlockAreaWidthX do for Y=0, BlockAreaWidthY do for Z=0, BlockAreaWidthZ do -- Code here end end end |