New Tutorial Question/suggestion


skate2live92

Member
Joined
Sep 6, 2005
Messages
145
I went through all of EDs tutorials and set up Fenix. I made the hello world, the multiple scrolling texts, etc. and also looked at the source code for shoot. I think there's a big gap between Chapter 2 (the final chapter, which is scrolling text) to a shooting game.

Does anyone know any tutorials that could help ease me into making games, or even just drawing simple objects on the screen?

I tried using draw_box to draw a rectangle but have no idea what the hell im doing.

Code:
  PROGRAM box;
  Begin              
  DRAWING_COLOR(200);
  DRAW_BOX (50,200,90,250);
FRAME;
end
I have no clue if thats even close to what im supposed to do for a box..any help?
 
well, drawing things like boxes isn't really useful...

check fenix on fire, lots of useful things there.
 
thanks

EDIT:just would like to say thanks also to devlkor for releasing the source to shoot. I think im onto something here! :)
 
Back
Top