Problems with Player Momentum
Author: Carlos Reid
Posted on: 03/14/2025
The Problem:
During this week's development on Relicbourne, I encountered a movement issue where the player's movement speed gradually slowed down when rotating the camera. If the player continued turning while holding forward movement, they would eventually lose all momentum and stop moving entirely. This was a major issue because it disrupted gameplay, making movement feel unresponsive and inconsistent. If left unfixed, players would become frustrated as they would lose control over their character just by rotating the camera. Given that Relicbourne is an isometric roguelike, maintaining smooth and predictable movement is critical for overall game feel.
The Solution:
After debugging the issue, I found out that movement direction was being calculated using the full camera rotation, which includes Yaw, Pitch, and Roll. Using the full rotation caused forward movement to weaken as the camera pitched up or down. So instead of using the full rotation, I extracted only the Yaw component to prevent movement vectors from tilting up/down. This fix eliminated movement slowdown when rotating the camera. The player can now move consistently in all directions, no matter how much they rotate their view.
Get Relicbourne
Relicbourne
A Roguelike of Monsters, Relics, and Survival
Status | Prototype |
Authors | FarForgottenProductions, fralopor, creid42091, LatentQuirks, JacobMosser |
Tags | Monsters, Roguelike, Turn-Based Combat, Unreal Engine |
More posts
- DevLog - Prototype V0.0.3 Release8 days ago
- DevLog: Turn-Based Combat and the Struggles With Scope8 days ago
- Problem with Creating relics(Part 2)8 days ago
- Problems with Procedural Mesh8 days ago
- Widget Placement Problems: Anchor Confusion & UI Overlap8 days ago
- Problem with creating relics14 days ago
- Tackling Procedural Mesh Generation14 days ago
- Problems with CombatLevel not being able to access the PauseMenu input.14 days ago
- DevLog: Active Unit Switching and Dynamic Camera Sync14 days ago
Leave a comment
Log in with itch.io to leave a comment.