Character controller speed
Character controller speed
I have setup the simple character controller so my player can walk on the map using the xbox controller thumbsticks for movement direction but he moves really slow. Is this some sort of physics value causing friction maybe? or is there some way to change his speed?
Re: Character controller speed
The SimpleCharacterController has MaxSpeed and Acceleration fields, amongst others.
If your character is really large, the default values will feel slow. I wouldn't recommend making things too large though since that will cause issues with other systems due to numerical precision.
Also, make sure that the character actually has something to step on. Make sure the IsSupported field is true when you think it should be. If it is false and you think it should be true, the character may be configured incorrectly.
If your character is really large, the default values will feel slow. I wouldn't recommend making things too large though since that will cause issues with other systems due to numerical precision.
Also, make sure that the character actually has something to step on. Make sure the IsSupported field is true when you think it should be. If it is false and you think it should be true, the character may be configured incorrectly.