Translations: English

移動と回転の速度を変更する

移動と回転の速度を変更する方法には、VerseThree.startopen in new windowの戻り値に含まれるplayerControlleropen 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: