Branching dialog
Long time no see
Posts explaining why there hasn’t been an update are boring, so I’m not going to do that.
I have added support for LUA, so now I don’t have to go through my own bulky script system.
I have experimented with tile aesthetics, and I’ve run into some problems that you might be able to help me with.
Version 1: Simple

One image per tiletype. Fast and low memory cost.
Version 2: Fancy

47 images per tiletype. Slower and higher memory cost.
Version 3: Fancy tileset.

1 tileset. Relative low memory cost. Zooming causes ugly artefacts (probably due to rounding errors).

When I have inspected the artefacts more closely I can see that it’s not a gap between the tiles, but the tile is drawing parts of the tile next to it in the tileset. So the SourceRectangle must be wrong.
Does anyone know how I can fix the ugly artefacts the tileset is causing? I do not have these problems with the non-tileset versions. Or is the only option to turn off zoom completely?
((I’m using XNA))
Edit:
I found a solution.
Calling spritebatch.Draw() with the SamplerState flag set to PointClamp got rid of most of the “artefacts”. Extending each tile in the .png file with 1px padding with the edge colour got rid of the rest.