This is my first experiance with dynamic sprites, so I need a little nudge to get me started.
All I want to do is draw an image onto the screen, preferbly in front of everything else on screen. I did a quick search and searched through the manual and just can't understand it.
I tried:
Code: ags
But then I couldn't delete it or clear it without the game crashing, plus it draws on the background, behind the characters.
Again, all I need it a push into getting started and for how to delete it when finished.
Example: Draw image to screen, wait for 3 seconds, clear sprite from screen and delete it.
All I want to do is draw an image onto the screen, preferbly in front of everything else on screen. I did a quick search and searched through the manual and just can't understand it.
I tried:
DrawingSurface *surface = Room.GetDrawingSurfaceForBackground();
surface.DrawImage(0, 0, 63);
surface.Release();
But then I couldn't delete it or clear it without the game crashing, plus it draws on the background, behind the characters.
Again, all I need it a push into getting started and for how to delete it when finished.
Example: Draw image to screen, wait for 3 seconds, clear sprite from screen and delete it.