Hi ,
I'm still playing around with the engine, and i was wondering...
Is it possible to load a 2d map. I mean from what i know (2d tutorial on this site ) u have to make a map and save it as a project or at least as source code. Well i might want to write a small map editor wich can save the maps with a certain extension, lets say .MAP , and then i would want to load these map's with the irrlicht engine. Is it possible , or am i completely off?
sorry for my noobness
tnx in advance..
when saving the map using std::ofstream the file would look like this ...
10 40 grass.bmp
50 30 brick.bmp
etc.
before loading the map you should load all textures and keep their filenames as well. then when loading the map you can search this list and create the objects which are described in your file you saved.
i have some source code for a 2d map editor, just ask if you would like to see some of it.