Good day.
I'm creating a Silverlight game with isometric view rendering to WriteableBitmap.
The game map consists of tiles. All entities in the game have FrameworkElement with it's graphics and animation. Each entity can take few tiles on the map. So it is hard to determine how do they overlap each other to draw them.
The only solution I have found is to render map “column by column”. In this case it is nessesary to render only a region of entity's FrameworkElement but not whole FrameworkElement.
Now I'm using intermediate WriteableBitmap for it. I guess it costs a lot of compution time. Does any different way exist? If no, does any different way exists to render isometric view?