Community Tutorial: 3D Character Movement for 2D Sprite

Learn how to implement Beat 'em Up style 3d movement with a 2D sprite character.

https://dev.epicgames.com/community/learning/tutorials/5n1b/unreal-engine-3d-character-movement-for-2d-sprite

1 Like

I am pretty sure you won’t read this but if you by any chance read this please help me because, during the up and down animations my Sprite is playing idle animation instead of running animation.

Hey.
This is probably related to what condition you have set up for switching between idle and run.
I assume you’re probably checking for:
Velocity.X > 0.0

But instead you can check for:
Velocity.X OR Velocity.Y > 0.0

Or

Velocity->Vector Length > 0.0