Cinders of Exile
My current WIP
Development
The development of Sid’s Adventure took place over a 4 month period, with the following schedule:
Week 1 - Character Controller
Rollin’ Rollin’ Rollin’…
For this project I’ve decided to take one core component per week. The first week I decided to tackle the character controller. It’s the most crucial part of the experience and I wanted to ensure that no matter what the character felt right. The first thing I did was boot up Demon’s Souls on PS5. I spent a lot of time really paying attention to the character movement, animations and what actions were allowed at the same time. I hopped into Unreal Engine and started working on the character controller.
I added two state sets. One for general character states like Guarding and Dodging and another state set for actions like Walking, Running, Attacking and Unoccupied. I had no problem getting the general movement working. The character was now walking, running, turning, attacking and blocking and all was good! Except... when I had to implement the dodging…
Dodging took up a significant amount of time to figure out. The first idea to implement this was to simply use the characters rotation when dodging. However, this resulted in the character dodging in the correct direction when the camera was forward, but the wrong direction when the camera was in any other orientation. This was because the rotation was being calculated in world space rather than local. My next thought was to use the characters forward vector. That would work, right? I mean after all the character rolls in the direction they are facing. Welp, that didn’t work as a final solution because while it did work in practice it meant that the character wanted to dodge forward and then immediately dodge backwards, they would have to dodge, wait, and then slowly rotate all the way around. This isn’t how it is in Demons Souls. To counter this I tried to increase the rotation speed but then the character was snapping more to a direction rather than turning. It just felt wrong. This approach was extra slow because I had to disable the character movement during the dodge so they character wouldn’t be able to slide around while in the animation.
After a full day of experimenting and testing my various ideas, I finally came up with a great solution. While the character is dodging, I enable the character movement, but I don’t apply it to the character. I capture the final input as the dodge-end notify goes off, and if the player presses the dodge button again the character will dodge in the correct direction! I’m happy with this solution because it enables me to avoid things like artificially trying to change the rotation speed and prevents me from waiting until the character is fully turned around before they can dodge again. You can see the debug vectors below. I’ll update again next week.