Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

Very nice game, I LOVED the 3d effect (kinda like toy story's effect?).
A little unoriginal levels, I guess you could step away from Mario (a little) and make some creative levels yourself, but overall very nice game.
Liked it!

(+1)

Thanks!

The game actually runs in 3d space - I'm pretty sure I never commented out zooming the camera in and out with the Q and E keys. When a level loads up, a vertex buffer gets populated with textured cubes. I put the whole game together in about a day and a half - so, there's still a ton of room for optimization. I'd like to add a bitmasking function to optimize the level geometry and right now entire levels get loaded into the vertex buffer all at once (the original intention was to only have a playable area worth of level chunks live at any given time). The included levels are just familiar test levels that I could mock up quickly, but new levels can be made in a text editor and the game should load them in on startup, if anyone wants to try. The long term goal with this would be add an option to load custom textures (internally the game already has support for high res textures, I just didn't have a chance to setup loading external .png files) and a visual level editor.

(+1)

Wow, sounds amazing!

What is it, David's engine from his Car Crime series, or something by yourself?

Amazing anyway!

(+1)

I wrote it in GameMaker Studio 2.3 with GML code, not in the PGE - but after skimming through the first episode of the Car Crime series, it looks like there's actually a lot of similar concepts in how the camera, geometry, and collisions and stuff are being handled.