Tagged Questions
0
votes
1answer
492 views
Animating Tile with Blitting taking up Memory
I am trying to animate a specific tile in my 2d Array, using blitting. The animation consists of three different 16x16 sprites in a tilesheet. Now that works perfect with the code below. BUT it's ...
2
votes
2answers
423 views
TileBased Game: Blitting Hero or Sprite?
So my environment is all set up and now I'm working on the movement physics of my character. I used blitting to copy over my tiles from a tilesheet. But since they are static, they are only copied ...
6
votes
5answers
1k views
Fastest bit-blit in C#?
I know there is Unity, and XNA that both use C#, but I am don't know what else I could use.
The reason I say C# is that the syntax and style is similar to AS3, which I am familiar with, and I want to ...