Tonight (26th March 2016) I will be entering the one hour game jam using DIV of course and live streaming the creation process in real time via twitch.
Anybody else interested in giving it a go?
This will be my second entry to the jam, hopefully i will make something worth playing this week!MikeDX - 26-3-2016 at 09:38 PM
Well, once again I succeeded in flying the DIV flag high.
You can see the game being created from scratch on youtube
I will post the code on github for you. It's not very good
Just to ask, Mikey - I do notice that with your game if you go sideways while climbing a ladder you can get stuck in platforms. However if you were to
put a hardness colour at the sides, then you could fall through the edge of the platforms and get stuck horizontally - I've had the same incident
myself happen before when testing out platforming mechanics. How would you suggest guarding against that? MikeDX - 28-3-2016 at 03:00 PM
you can't really get stuck on a platform, you can just press jump.
There's plenty of issues with this game, but with only an hour (including drawing the crappy graphics) it was a little rushed to say the least.
In the past I have just prevented left/right/jump when on a ladder and that solves the issue (see pitfall for a "good" example)BreadCaster - 28-3-2016 at 03:45 PM
you can't really get stuck on a platform, you can just press jump.
There's plenty of issues with this game, but with only an hour (including drawing the crappy graphics) it was a little rushed to say the least.
In the past I have just prevented left/right/jump when on a ladder and that solves the issue (see pitfall for a "good" example)
That really is not very much time at all
Well what about when falling? Disabling left and right while falling would end up with a game where you can't run and jump simultanously. I know some
platform games do this but a lot of them don't :pMikeDX - 28-3-2016 at 04:02 PM
One hour isnt a lot, but you can do a lot in DIV in an hour
Whilst falling, you can keep the falling = TRUE flag going until you hit the platform at the bottom, whereby you can then re-enable left/right/jump
and up (if on a ladder)
humildadever - 30-3-2016 at 10:45 PM
i dont see the code in githubMikeDX - 30-3-2016 at 10:59 PM
The code is on a laptop that is not working at the moment.BreadCaster - 31-3-2016 at 01:31 PM
One hour isnt a lot, but you can do a lot in DIV in an hour
Whilst falling, you can keep the falling = TRUE flag going until you hit the platform at the bottom, whereby you can then re-enable left/right/jump
and up (if on a ladder)
Yes but surely this means you wouldn't be able to move *and* jump simultanously? I mean that's fairly easy to do but my point is it'll make lots of
areas in your game unreachable and essentially make the controls quite restrictive. Players are used to running and jumping.MikeDX - 31-3-2016 at 02:13 PM