Play game
Fifty Two Card Pickup's itch.io pageResults
Criteria | Rank | Score* | Raw Score |
Fun | #43 | 2.693 | 2.867 |
Overall | #50 | 2.735 | 2.911 |
Presentation | #52 | 2.755 | 2.933 |
Theme interpretation | #57 | 2.755 | 2.933 |
Ranked from 15 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
So almost a 2048 on a hexagon but everything's trying to kill you situation? Interesting. I don't know if I'm missing some strategy or if death is just extremely inevitable.
I found the mouse clicking input to be very unreliable -- only every other click or so would actually "register" and cause me to move. I'm on macos with a high dpi / 120hz display.
Moving your move_player_system out of FixedUpdate and into Update seemed to resolve this. In FixedUpdate, you're potentially missing input events. This was a bit confusing for me since I thought https://github.com/bevyengine/bevy/pull/10077 in bevy 0.12.1 would have covered this, but I don't think that PR did anything with Res<Input>. Just EventReader<MouseButtonInput>.
The game over screen is really cool, but I accidentally immediately clicked past it and missed it like 5 times in a row.
I try to put gameplay/simulation in FixedUpdate, and UI/rendering in Update, which implies that the "Correct" approach is to listen for inputs in Update, then use an EventWriter to inform the gameplay systems.
I was not aware that there was already a way to use EventReader for inputs, since the tutorials I saw only mentioned probing the input resource.
Clicking past the end screen is a known issue. It also allows people to keep a bunch of the "state" from the previous play through, which is unintended. I should have added a lock-out until at least the enemies are all cleared.
Really fun! I loved the animations, how the tiles spawn and how the ones from the previous level remain, so there is some strategy in replayability. My max enemy was 95! I think this has a lot of potential and would be great with some variety of enemy/movement types, but great entry for the jam! ^^
Clicking past the end screen is actually an unintended bug, but now I can call it a speedrunner tech instead!
I liked it. Nice presentation and so on - but I didn't really get into it, maybe the type of game just isn't my jam!