A simple and lightweight character controller for the three.js library.
- Animation blending
- Customizable movement
- ⚠ More animations and Features will be added in future with Frameworks like Cannon,js
- npm install
- npm run dev
- ⚠ Dont forget to use this project with suitable Webpack for Three.js
- You can customize the movement speed, gravity strength, and jump height by adjusting the corresponding properties on the controller instance. Like:
controller.movementSpeed = 10;
controller.gravity = 9.8;
controller.jumpHeight = 10;