The bit-blit tag has no wiki summary.
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 ...
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 ...
1
vote
1answer
6k views
How to update off screen bitmap in a surfaceview thread
I have a Surfaceview thread and an off canvas texture bitmap that is being generated (changed), first row (line), every frame and then copied one position (line) down on regular surfaceview bitmap to ...
0
votes
1answer
491 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 ...