4.0.3 • Published 5 years ago
complex-threejs v4.0.3
complex-threejs
Install
npm i complex-threejs --save
Usage
Add THREESystem
to your world instance and add the THREEComponent
to your entity
and you are good to go
import { THREESystem, THREEComponent } from 'complex-threejs';
...
// Simple three.js setups
this.camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000);
this.camera.position.z = 5;
// Register all required systems and managers and so on
this.world.addVoidSystem(new THREESystem(this.camera));
// Create components
const geometry = new THREE.BoxGeometry(1, 1, 1);
const material = new THREE.MeshBasicMaterial({ color: 0x00ff00 });
const cube = new THREE.Mesh(geometry, material);
this.world.createEntity([
new THREEComponent(cube)
]);
4.0.3
5 years ago
4.0.2
6 years ago
4.0.1
6 years ago
4.0.0
6 years ago
3.0.1
9 years ago
3.0.0
9 years ago
2.1.0
9 years ago
2.0.2
9 years ago
2.0.1
9 years ago
2.0.0
9 years ago
1.3.1
9 years ago
1.3.0
9 years ago
1.2.2
9 years ago
1.2.1
9 years ago
1.2.0
9 years ago
1.1.6
9 years ago
1.1.5
9 years ago
1.1.4
9 years ago
1.1.3
9 years ago
1.1.2
9 years ago
1.1.1
9 years ago
1.1.0
9 years ago
1.0.0
9 years ago