In a Fisrt Person game, I want to let the player to config the walking and turning speed.
Walking speed is easy. A widget slider modifying the “Max Walking Speed” variable in the Movement component of the FPCharacter.
But, how to do the same with turn and look up speed? There’s no equivalent variable in the CharMoveComponent.
As a dirty workaround, I’m trying to modify that axis scale in the input settings. These two:
I’m trying this:
but it’s not working, it seems modifying hat struct value is not enough and I’m missing a last step. I’ve looked for it but there’s no “Save Input Settings” node to send that modified struct to.
So I have two questions:
-
Can I modify the turn and look up speed of the player in a similar way I change the movement speed?
-
If tweaking the input axis is the only (or the best) way to do this, how to do it?
Thanks in advance!