0 votes
by
retagged by
Hello,

How can I increase (above one) the 'movement rate' and 'auto center rate'  in progressive steer mode in the VPStandardInput component?

Thank you!

1 Answer

0 votes
by

The limits in the inspector cannot be modified, but you can modify the values from scripting:

VPStandardInput input = GetComponent<VPStandardInput>();
input.movementRate = 1.3f;
input.autoCenterRate = 1.5f;
...