Play game
Very Bad Game's itch.io pageResults
Criteria | Rank | Score* | Raw Score |
Adherence to restrictions | #148 | 4.167 | 4.167 |
Enjoyment | #217 | 2.667 | 2.667 |
Overall | #221 | 2.896 | 2.896 |
Design | #244 | 2.667 | 2.667 |
Polish | #268 | 2.083 | 2.083 |
Ranked from 12 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.
Leave a comment
Log in with itch.io to leave a comment.
Comments
The movement takes a bit of getting used to, but once you do it's fun, addictive and challenging
Well the movement was kinda rushed.. but I think i could make a better movement next time since I already have some experience because you guys told me what you dont like and what you do and also how´d you fix it.
And that helped me so much.
Anyways thanks for the review since those really help :)
Anybody completed it? Lol
Cool entry. I don't know if it was intentional, but I love the high movement speed. Due to this highspeed movement I managed to beat some level without even using the gravity feature. ;)
I read that it was your first entry. So congratulation for this great start! :)
thanks and no the speed was not intentional.. i used Time.deltatime for setting the players rigidbodys velocity property which was propably the reason for the high movement speed
Yeah keep practicing and follow some tutorials at how to make better platformer movement.
Thanks for the reply :)
A cute first game, definitely a few things which need ironing out and I would think about allowing gravity switches mid-air for some cool slide-through action. Great job anyhow and good luck on your further endeavors!
thanks for the review :)
Im sure looking into improving myself so every post like this helps me out.
An who knows... maybe ill actually update the game lol
Ill update this game and fix some stuff
For a first game, not too bad. I would definitely slow the player down a bit so you feel more in control of him rather than him rocketing across the screen. Also, you can get caught on the ground or cling to walls which can be a bit weird and break the pace.
I think I shouldnt use time.deltatime when setting the players velocity
also how to you fix the wall sticking when i dont want it?
btw thanks for the reply :)
Yeah, player speed will be easier to control if you have it on a set number like maybe 5 or 6. Also, to keep the player from clinging to walls, the most common solution I find and have used is that you can make a Physics Material 2D and set its friction to 0. Once you have that, you can attach it to the player's collider and rigidbody (if it has one) to keep you from sticking to walls. Unsure if you actually need to do both, but I do it anyways just in case.
i think you do need to put it on the ground and the player tho i did that so i dont know whats the problem..
Great first game, was a little hard to control i found but that might be just me good luck :)
it sure is hard to controll but that is the challenge i guess
Props to you for actually subbmitting to your first game jam. I entered two jams before finally subbmitting a game to my third game jam. Also, the title reminds me of a game I made called Pretty Pathetic Parkour. If you want to try my subbmission its here https://retrorealms.itch.io/nokia-pirate, and if you want to try Pretty Pathetic Parkour its here https://retrorealms.itch.io/pretty-pathetic-parkour
You are sure better at making platformers
How did u make the player feel so smooth tho?
Anyway thanks for the reply :)
I used FixedUpdate instead of Update for my movement. I also used GetAxis.
i did use getaxis but forgot about fixed update.. did u use time.deltatime?
This is what it would look like ish
float Speed = Whatever you want;
float Movex;
FixedUpdate()
{
Movex = Input.GetAxis("Horizontal");
transform.position += new Vector2(Movex * Speed, 0) * Time.deltaTime
}
Don't use normal unity physics in platformer XD but beyond that I enjoyed this slippery platformer. If it's your first Good Job!
thanks for the advice and reply :)
what do u use for platformers?
I'm no expert but in most cases you want to control as much of player movement as possible from script. Acceleration, deceleration, max velocity etc. there is many tutorials here is one I found just now: https://craftgames.co/unity-2d-platformer-movement/
But i believe there are better (and of course worse too) on youtube and maybe even somewhere on itch. Making movement for platformer is a hard to master thing. At first it's good to try to emulate original Mario as it has one of simplest and most intuitive movement schemes, but if you want to get a feel of how good can excellently crafted platformer movement be I recommend playing Celeste or Super Meat Boy.
Lovely, I think it shouldn't open fullscreen every 5 seconds
thx :) but why does it open fullsceen tho...
did not happen to me..
Strange