Help me with VB6 Game [PacMan]
i want to create a VB6 app for a Pacman game. Ihave a prob with the hiding of the food object [consider an image] when the pacman image is trying to get that food. I can't able to makeit out. Pleae help me. I'm a new one to vb6 & don't even know complete Directx Gaming in vb6:wave::wave:
Re: Help me with VB6 Game [PacMan]
http://www.vbforums.com/attachment.p...id=47243&stc=1
I've moved your thread to here which is the proper forum for game-programming questions.
Re: Help me with VB6 Game [PacMan]
Re: Help me with VB6 Game [PacMan]
Quote:
Originally Posted by
007007dinesh
i want to create a VB6 app for a Pacman game. Ihave a prob with the hiding of the food object [consider an image] when the pacman image is trying to get that food. I can't able to makeit out. Pleae help me. I'm a new one to vb6 & don't even know complete Directx Gaming in vb6:wave::wave:
It totally depends how you're rendering it. Direct3D? Just don't put that piece of food in the vertex buffers for the next render.
Or are they being drawn by pixels onto a picturebox or something? Then you can draw some background colored pixels over them.
Or are they controls? Then set their hidden attribute.
I know I'm a bit of a prosthelitizer about this, but why ever use VB6 for a new project? vb.net is free and very easy if you're already familiar with VB6.
Re: Help me with VB6 Game [PacMan]
Just use bitblt. =D Easy. =D