





I was watching a guy play the Nummels demo on Twitch a couple weeks ago when I saw him run into a bug that I had already fixed in the non-demo version of the game.
This would happen if you held the jump button while you respawned after dying. It was something weird where the jump animation would get stuck on the first frame. I fixed it by adding this script to the animator so that it will always reset the playback speed when entering the jump state in the Unity animation state machine thing.
public class AnimatorResetSpeedOnEnter : StateMachineBehaviour
{
public override void OnStateEnter(Animator animator, AnimatorStateInfo stateInfo, int layerIndex)
{
animator.speed = 1;
}
}
There was one other bug that was way worse than being shorter and fatter than the average Nummel. If you restarted the level just wrong, it would load a second instance of the level at the same time, leading to all sorts of badness.
Here you can see one copy of the player is stuck doing his best impression of a blood fountain. The whole game would be broken at this point and the only way to fix it was to quit the entire game and restart. I fixed this one by just making sure that you're not allowed to restart the level while it's in the middle of restarting the level.
One other feature that sneaked its way into this update was an update to the screen resolution menu. It used to have pages and pages that you would have to click through in order to find the resolution that you wanted. The best resolutions are all the way at the end, so it wasn't a great user experience. I got some columns going in there.
That's better! And now you know why there's an update to the Nummels demo a month after the big Next Fest event.
[ 2021-07-19 19:06:04 CET ] [ Original post ]
🎮 Full Controller Support
- Nummels Content Linux [263.53 M]
Consistent stupidity
Nummels may be dumb, but they're predictable. When they see a ladder, they will always climb it. If they find some gum on the ground, they'll stop and chew it. If they fall in the water, they will stop breathing. It's up to you to move things around so that your litter of Nummels can make it through each level to the exit.Go fast for the best score
On most levels you can take your time and set everything up before letting them loose, but to get good scores and unlock all the things, you'll need to go fast. Each level has a leaderboard that's ranked on saving all the Nummels the as fast as possible.A few Nummels may have been harmed during the production of this game.
- OS: Ubuntu 16.04 and Ubuntu 18.04
- Processor: x64 architecture with SSE2 instruction set support
- Graphics: OpenGL 3.2+. Vulkan capable
[ 5974 ]
[ 1554 ]
[ 1808 ]