Re: What program can I use to import or export RoomMesh files aka rmesh files?

#2
RMesh files are created from B3D meshes with a converter tool: https://github.com/Regalis11/scpcb/blob ... nverter.bb. Note that not any B3D mesh will work properly with this converter; it was designed for files exported by 3D World Studio, which to my knowledge isn't easily obtainable anymore.

Since I created this file format only to suit Containment Breach's needs (at the time, the game would load from very inefficient B3D files), only the game and a few tools created to develop it are available to read and create files in this format.

It should be possible to take the RMesh viewer (https://github.com/Regalis11/scpcb/blob ... _Viewer.bb) and export the loaded mesh into some other format with one of the various snippets on the Blitz3D forums (here's a basic OBJ exporter that could work https://www.blitzbasic.com/codearcs/cod ... ?code=2801).

Edit: as it turns out, there's already a writemesh function in the RMesh viewer. Calling it right after line 726 should be enough to have a copy of the file in .X format.