Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
A jam submission

Grab the Loot BugsView game page

Submitted by MultipleTriangles — 24 minutes, 31 seconds before the deadline
Add to collection

Play game

Grab the Loot Bugs's itch.io page

Results

CriteriaRankScore*Raw Score
Polish#13.3333.333
Art#13.8333.833
Game Design#24.5004.500
Overall#23.8333.833
Overall#33.1943.194
Audio#51.0001.000
Narrative/Mood#62.6672.667

Ranked from 6 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.

Are you part of the Game Dev Field Guide Community?
yes

Leave a comment

Log in with itch.io to leave a comment.

Comments

Submitted

This game is amazing! I was sad when it was over.

I would add a way to pan around the level to make a strategy go into the game.

Maybe a cost to placing items? To add a little more difficulty.

Way more levels and you have a completed fun game that I could sink hours into!

I loved the enemy pathfinding, it put me in mind of Commander Keen (except the slugs are good). I completely avoided the loot bugs/slugs/snails on my first attempt and passed the puzzles, so it kind of created replayability when I realised I was supposed to be collecting them... so I reloaded and got it the second time round lol. Maybe that UI could be clearer, or at least mentioned somewhere other than the title of the game? The other UI features are awesome!

Nice learning curve for the player! The floating head is a little wild as a second room enemy, but you've clearly said 'here's enemy 1, here's enemy 2, now you'll start getting combos in future rooms' and chosen no-nonsense as a feature of the game (and of the jam). I like it!

That floating hair animation is *chef's kiss*

Submitted (1 edit)

First of all, I love the idea of adjusting walls to navigate the game rather than direct action from the player. I think there are a lot of interesting puzzles that you can do with that.

Also, I think the controls work quite well and I like the point-and-click movement with the grid.

If you build upon this, I think I'd suggest introducing the enemy who can move through walls in later levels, and be careful about how you do it. I think there's a lot to explore with setting up walls to avoid enemies before subverting that mechanic. I think it also really shifts the gameplay from a slow-paced puzzle to something closer to action requiring urgency from the player.

A reset button would be a really nice convenience for the player!

I really like this concept and would be interested to see more!

Also, I'm curious - this was made with Godot, right? How did you implement the pathfinding?

Developer (1 edit) (+1)

Thanks for the feedback.


For pathfinding:

At first I had tried to use a `NavigationAgent2D` and a `TileSet` navigation layer, but eventually gave up on it due to getting caught on corners. Since I had already added navigation polygons to the floor tiles I ended up walking the `TileMap.get_used_rect`, checking the `get_cell_tile_data(0,coordinate).get_navigation_polygon(0)`.  Then I build an `AStarGrid2D` with `set_point_solid(id,true)`. Then the `get_*_path` methods did the hard work.  Enemies end up trying to walk in the center of the tiles most of the time, but it's still possible to get them stuck on corners, or if two enemies have opposite paths they get can get stuck on each other.

There is a bit of fun using `TileMap.get_used_rect().position` as the offset difference between a `TileMap` coordinate and an `AStarGrid2D` id. Conversions are also required to global space for moving, or converting screen space to coordinates for mouse clicks.  Not sure I have the screen -> coordinate 100%, but it works in the current camera/viewport setup.

The skeletons also use a `RayCast2D` to the player and check for wall/pit collisions to act like a line of sight mechanic and only recalculate their target path if they can see the player.

When the tile changes due to a user action it also updates the `AStar2DGrid` and enemies recalculate the path to take.

Submitted

Thank you so much for taking the time to explain all of that!

Interesting! I've used the Naviation2D with TileSet navigation layer before, but I think it was somewhat limited and was curious what other approaches there are for pathfinding in Godot. 

Cool stuff!