GLEED2D as Level Editor

GLEED2D is written in C# and XNA. It uses an XML file format so it was easy to import a Pingus level:

Pingus in GLEED2D

Pingus in GLEED2D

The editor rounds up texture sizes to the next power of two, and scale factors and the rotation origin are relative to this scaled up size. That makes importing and exporting levels slightly more complicated. In most cases I would pack background sprites into an atlas before rendering, so I can’t think of many reasons for expanding individual sprites to power of two.

Level drawing and editing is very fast, and the image browser makes it very fast to add new sprites to a level. You can specify custom properties, but they are attached to a sprite instance and not a sprite definition. It is possible to specify programs to run after a level is saved or to preview a level in a game.

Documentation seems to be only available as videos, which I find more time consuming than reading documentation, especially when I need to look up specific features.

The image browser caused an exception when displaying a large sprite directory. I’m not sure if it ran into a windows resource limit or just failed to load a file, but I think for a proper project you would organise sprites into smaller subdirectories anyway.