The original author (Pandaroo) updated it already :)
razveck
Creator of
Recent community posts
Day 4.5 (yesterday): Added enemies, pathfinding, line of sight and a simple AI. Enemy (white) will patrol a room (path is yellow) until it sees the player (red), upon which it will pursue the player. Breaking line of sight sends the enemy back to patrol. I realised after the fact that the enemy initially saw the player through the wall... back to work I guess
Day 2
Rewrote the whole generator algorithm, which now produces much cleaner-looking corridors and ensures all rooms are connected. It was incredibly frustrating because I kept encountering off-by-1 errors and slight misalignments of the grid, etc. Next step is to add a player, a movement system and some walls.
Started late, but here I am. Got some basic dungeons working, although some rooms are still left unconnected sometimes. Not the best implementation of a dungeon generator since it was my first time doing a room+corridor setup and I'm figuring it out as I go. Going to call it a day and work on the wonky corridors tomorrow.
Movement is way too slow compared to the projectiles/beams. You're not actually dodging anything because it's almost impossible to tell where a beam is going to hit and because the hitbox is unclear. Even if you can see the beam coming, there's rarely enough time to move out of the way. Also I think the movement vector is not normalized (?)