Try it here: icefish-software.itch.io/monkeying-ar...
Can you get to 10 points?
Try it here: icefish-software.itch.io/monkeying-ar...
Can you get to 10 points?
Instead of hard-coding numbers in your program, you should have those values tuneable via a debug UI. This massively speeds up design iteration and will get your character feeling dialed in.
Here I am using ImGui.NET with some reflection to create sliders from fields in a struct.
Instead of hard-coding numbers in your program, you should have those values tuneable via a debug UI. This massively speeds up design iteration and will get your character feeling dialed in.
Here I am using ImGui.NET with some reflection to create sliders from fields in a struct.
1) Standing
2) RunBegin
3) Running
4) RunEnd
5) JumpSquat
6) InAir
A game like Smash Bros melee has over 100 states for their character controller. (rukaidata.com/PM3.6/Captai...)
1) Standing
2) RunBegin
3) Running
4) RunEnd
5) JumpSquat
6) InAir
A game like Smash Bros melee has over 100 states for their character controller. (rukaidata.com/PM3.6/Captai...)
Play in browser: icefish-software.itch.io/whack-a-key
#indiedev #rust
Play in browser: icefish-software.itch.io/whack-a-key
#indiedev #rust
Last time it would generate a tree structure. Once a branch was created it would never re-join the rest of the cave.
I've now improved it by adding a system so the branches connect and create loops. It's a more natural cave that's better to explore.
#indiedev #monogame
On the bottom I am zooming in and out of my game. On the top we have a live profiler measuring how long it takes to render the game(yellow bar).
As I zoom out it will grow from <1ms all the way to 10ms.
On the bottom I am zooming in and out of my game. On the top we have a live profiler measuring how long it takes to render the game(yellow bar).
As I zoom out it will grow from <1ms all the way to 10ms.
This was inspired by Masahiro Sakurai's video on camera controllers. The basic principle is that the camera shouldn't stay locked on the player's position exactly, but rather it should detach a little bit when jumping.
#gamedev #monogame
A familiar face from my previous game has found himself in my new engine. I managed to get an animation controller working for him.
The workflow is with #aseprite which exports a sprite sheet + data. That data is then used to create the animations in-engine.
A familiar face from my previous game has found himself in my new engine. I managed to get an animation controller working for him.
The workflow is with #aseprite which exports a sprite sheet + data. That data is then used to create the animations in-engine.
Finally got moving platforms working with a basic character controller. I've got one-way platforms as well as rectangles working.
Based off this blog post by Maddy Thorson: maddythorson.medium.com/celeste-and-...
#monogame #gamedev
Finally got moving platforms working with a basic character controller. I've got one-way platforms as well as rectangles working.
Based off this blog post by Maddy Thorson: maddythorson.medium.com/celeste-and-...
#monogame #gamedev
I'm the green square and the purple square is a moving part of the level.
This is for a new engine I'm making based off of #monogame
I'm the green square and the purple square is a moving part of the level.
This is for a new engine I'm making based off of #monogame