Hi everyone,
I’m working on a multiplayer game using Unreal Engine 5.5, and I’ve run into a problem with a moving platform and client movement replication.
When the client character jumps on top of the moving platform, it experiences micro stutters or hitching during the jump.
However, if I disable “Replicate Movement” on the platform, the jumping becomes completely smooth — but then the characters’ movements are no longer visible to other players.
Currently, I’m handling the platform’s movement on the server side (in GameMode) and broadcasting its location to all clients, so the platform itself looks synchronized for everyone.
That part works fine — both players see the same platform position.
It seems like this issue might be caused by a conflict between the engine’s replicated movement updates and the character’s actual jump position — but I’m not sure how to properly fix it.
**How can I make the client’s jumping smooth while still keeping character movement replication working correctly?
**
**
(**When I enabled the “Stay Based in Air” setting, the stuttering while jumping on top of the platform was fixed, but the stuttering when getting on and off the platform still remains.)