Translations: Japanese

Change speed of movement and rotation

To change the speed of movement and rotation, adjust the properties of the playerControlleropen in new window contained in the return value of VerseThree.startopen in new window.

const res = await VerseThree.start(...);

const { playerController } = res;
playerController.moveController.rotationSpeed *= 3;
playerController.touchController.rotationSpeed *= 3;
playerController.moveController.moveSpeed *= 3;
playerController.touchController.moveSpeed *= 3;
Last Updated: