for i=1,8 do
for j=1,4 do
print("World "..i.."-"..j)
end
end
Dusted off this project again. Using Lua, I used the basic structure of the code above to generate all the level data needed for the project. Final, bare-bones file size was 16KB. Deconstructing the level data is going to be much more simple than I thought.
The overall design of the level data will allow anyone to easily create their own levels and share them. The only difference between the data used by the final build and user data will be where the files are stored.
Furthermore, the methods used to pull all the data together for my external tools are very likely to be used to create a file browser all for of the end-user's custom content.
|