Loading...
0
8 days ago

I've been non-seriously working on Acceleroll II. It's essentially a soft reboot of the game, and definitely a lot less crappy. More info below:


I've only been working on it for a couple days but here's some improvements so far:

  • No more unlit shaders, now there is actual lighting

  • The low res filter is gone

  • Physics have been improved (more weight, no more vertical climbing, overall feels better)

  • Actual 3d models inside the orb

  • Animated backgrounds

  • Replay system

  • Less reliant on UI

  • Much improved code base (hopefully it stays that way)

  • Freely rotatable camera

I've been thinking about an Acceleroll 3.0 for a while, but let this be a lesson in code quality. Due to the game jam scope, pretty much after 2.0 the code base was entirely unmanageable. This is part of why things like target needed a full rewrite. Also adding new features was cumbersome. And I was not using Unity's systems properly, so any update to a shared object in levels, every single level needed to be manually updated any time a change was made. And honestly Acceleroll was always a bit crappy, but I liked the idea behind it.

An example of the code base being terrible is Unity's Input class was referenced basically everywhere instead of one universal class in my project. So when I made the Apple Silicon port, controller support broke. And fixing it would mean manually locating all references to the Input class, and reworking it to use Unity's new input system (which is terrible, but it's sort of built for things like that). This was one of many examples, and for a hobby project it was a tall order. So it's time to start fresh.

There were also some design things I did not like in Acceleroll. I felt like a lot of the levels were boring/too easy, and the hard levels were more fighting against the physics than an actual challenge (good example of that was the tightrope level (Hard mode W1-2). And difficulty was super weird and strange, it wasn't a curve, more like a spaghetti noodle. A hope with Acceleroll II is to bring back some challenge.



1 comment

Loading...

Next up

Working on actual targets. Hitting this at long range feels so good.

Learning a bit about falling sand type games. Really simple algorithm but so fun to tinker with. Very easy to add new behaviors/materials too. It's calling out to me for a sandbox (no pun intended) game.

I threw together this small art test with some audio and a asset set I made. The vibes are on point. Going for a Bloodborne-esque dark fantasy vibe for my archer game. #3D #DarkFantasy #Unity #Archery #Unity3D #GameDev

Prototyping my sand game, liquids and gasses (WIP). I also opted for procedural sand materials. I created a system where I can generate ~4294967294 fake, unique, named periodic table elements deterministically. Interaction is a work in progress. Wow.

I've been prototyping, and I've merged two of my secret-ish prototypes. You have the unit control society simulation (last prototype) and dynamic world painting with reactivity (my sand game). I also made my own update loop to help with time control. WIP

I've been playing this level pretty much all afternoon. The momentum is so fun. I upped the speed just for this (really puts the Accelerate in Acceleroll!) (Also sorry Apple's Emoji keyboard randomly opened)

Working on a semi-secret project. It's currently using some debug assets so it hasn't gotten an art pass yet. It involves procedural generation, fantastical caves, and it takes mechanics from RTS and management games. Here's a generated map it made:

Practicing some of my terrible Blender skills. Here is a really out of season Halloween ghost-like creature I made. It's currently not rigged, made in about 1 and a half hours.

A couple days ago I started this dark fantasy archery mechanic prototype. I'm unsure where I want to take the mechanics but I'm loving the atmosphere. I just retopoligized the entire scene and added some dark post processing. #Unity #GameDev #Archery

Been working more on my dark fantasy archery prototype. I created this target class in which I can invoke any sequence of methods I want. So I made a target in a tower that lifts a magic seal on the big gate. Thoughts on an exploration archery game?