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.
I have no clue if thats even close to what im supposed to do for a box..any help?
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