Translations: Japanese
Change speed of movement and rotation
To change the speed of movement and rotation, adjust the properties of the playerController contained in the return value of VerseThree.start.
const res = await VerseThree.start(...);
const { playerController } = res;
playerController.moveController.rotationSpeed *= 3;
playerController.touchController.rotationSpeed *= 3;
playerController.moveController.moveSpeed *= 3;
playerController.touchController.moveSpeed *= 3;