#Make player movement frame independent
7 messages · Page 1 of 1 (latest)
I'm presuming that the delta parameter to useFrame() is a time elapsed since previous frame; if so, then you need to move the player by an amount proportional to delta. (Essentially, by speed * delta, in the right units).