[Tested on build 1078]
When the player is airborne, the acceleration to their movement speed is tied to framerate.
To break this down: 'Movement speed' is the values that you set in the VRCWorld prefab, so strafeSpeed runSpeed and walkSpeed. 'Acceleration' is the time it takes to reach that speed, specifically when not grounded. Note that when you are grounded there is no acceleration; the transition from a standstill to runSpeed is always instant.
So for example: If you're airborne but not moving laterally, at 90 FPS it takes you about 0.21 seconds to reach your runSpeed. It doesn't matter how big or small, this acceleration is constant with the framerate. So at lower framerates the acceleration takes longer. Here are some benchmarks (approximate):
144 FPS = 0.21 sec
90 FPS = 0.21 sec
72 FPS = 0.26 sec
45 FPS = 0.42 sec
24 FPS = 0.79 sec
11 FPS = 1.73 sec
Video of the benchmarking:
What's going on in this video: The player is floating 1 meter off the ground with a gravity strength of 1e-06 (near 0) which is why the Velocity is going up even though there's no visible movement. The 'Run Speed' is the player's set runSpeed, and 'Time to reach' is how long it took for the player's velocity to reach the Run Speed while running, on desktop, in seconds, starting from 0.01 velocity. After the timer stops I respawn myself and reset the timer then do it again. Note that the time to reach is always slightly different because of the gravity adding a little bit to the velocity. Also not shown in the video but for some reason odd numbers would take ever so slightly longer to reach.
If you want to test for yourself here's my demug world (originally debug but vrchat corrected it):
The world lets you change the runSpeed and enable gravity. You can reset yourself instantly by pressing 'E' on your keyboard.
I understand that this is a REALLY minor issue for the vast majority of worlds, but this is crippling to any kind of momentum based games that require precision strafing. For example: the surf prefab, that I am trying to make, and have hit a brick wall because this issue is incredibly difficult to work-around.
So if you could fix it I would be REALLY REALLY REALLY thankful!!