Missile Command
-
-
@SteveZX81 Steve you absolute legend. Look at that! Looks fantastic dude, you should be very proud.
-
Steve your stuff is excellent man, that’s brilliant
-
Keep up the good work @SteveZX81, it looks amazing :D
-
-
Very nice! Exact copies are overrated in my book. Emulation has been around for years now. I'm more in to seeing people reimplement (simulate maybe?) than create exact copies.
-
Cool! Did you draw it small with 10px each letter and then just upsized it in your code, or did you draw it at the final size?
-
Nope I'm too dumb to think of an easy way to do it, lol. I created it at the full size (which took me quite some time)
-
@SteveZX81 how do you load a title screen before your game like that i can only
do simple text with button press ?
loving your classic reworks btw -
@SteveZX81 this is pragmatic and allows full control. I just asked because I am intrested in all kinds of custom fonts for our game projects.
-
@waldron you could make a function called titleScreen() at the beginning of your main loop and within that function create a loop that continues while you haven't hit "a".
loop titleScreen() // your main game code here repeat function titleScreen() c = controls(0) while !c.a loop printAt("To continue press A ...") // enter all of your code for your title screen here! repeat return void
-
-
What are you stuck on? That looks great!