Comments

Log in with itch.io to leave a comment.

The pseudo-3d visual is amazing. 

Thanks for playing!

You actually created your own first-person plugin just for this jam?! That's just amazing. And I was wondering how you got the controls so smooth. That makes a lot of sense now. While the game is fun, I think the plugin is the real star of the show here. You should consider selling it on itch :)

Thanks for your comment!

Yeah, I have the plugin open sourced as well but it does take a bit of messing around to get it working. My plan is to tidy up the plugin (and also make it a real plugin since right now it just overwrites the point and click scene) to make it more user friendly. I tried to do that as I went but I ended up hacking things up trying to get the game finished.

The smoothness comes from building the background/view from all the pieces off-screen and then doing a big copy from that "buffer" into the VRAM's on-screen space. An even better way would be to draw off-screen and then move the whole background like a swap for an instant update, but I didn't manage to get that working in the GB Studio context during the jam.

(+1)

That's such a smart way of handling things. I'm sure the plugin will become a staple for GB Studio game development once fully released :)