Construcing a bitmap

Superfly1611

Well-known member
Joined
Feb 17, 2004
Messages
66
Location
UK
Hello im building a basic 2D Graphics game as a learning exercise for Graphics programing. Im using VB.Net and GDI+ (until i feel confident to move onto DirectDraw)
My Problem.
I can user GDI to draw a single bitmap on the screen and get it to move around the screen.
What im now looking to do is build a bitmap from a collection of bitmap files on my computer which between them will represent the current state of the level (level, current player state, etc) and then draw that new bitmap to the screen.
How do i do this?

Cheers
 
Dont know if this will help but the way I used to do that in VB6 was to have the sprites arrayed out on a single large bitmap.
You can then blit from the appropriate point on your bitmap to your target destination.
Im sure you could apply the same thing to GDI+.
 
Back
Top