Hi,
I am preparing a module, It includes a lot of sub scenes.
Classic method for definition of scenes.
local pages = {"Al4page1","Al4page2","Al4page3","Al4page4","Al4page5","Al4page6"}
scen["Al4page1"] =Al4page1
scen["Al4page2"] =Al4page2
.... etc.
That's boring, you must define each scene using scen["Al4page1"] =Al4page1 format.
My question is simple. Can you suggest an alternative solution to define scens like pages table format instead of scen["Al4page1"] =Al4page1 format?
Is it possible to declare using an while or repat programmatic logic?
Comments