1.0.36 • Published 2 years ago
three-engine v1.0.36
What is three-engine?
three-engine let's you create a three.js scene with one line of code.
Compatibility
Complatible with three.js r.148
How to install
npm install three-engine
How to use
import * as THREE from 'three';
import ThreeEngine from 'three-engine';
new ThreeEngine({
callbacks: {
init: threeEngine => {
const box = new THREE.Mesh(new THREE.BoxGeometry(0.5, 0.5, 0.5), new THREE.MeshStandardMaterial);
box.setupClickable();
threeEngine.scene.add(box);
box.onClick = function(){console.log('Clicked')};
box.onHover = function(){console.log('Hovered')};
}
},
setup: {
enableControls: true,
enableTestLights: true,
enableAntialias: true,
DEV_MODE: true
}
});
Example
You can find example in /examples/example.js. To run example:
git clone https://github.com/allala0/three-engine.git
cd three-engine
npm install
npm run example
TODO
- Switch to Vite
- Documentation!!!
- Fix FXAA antialias warning
- Export all tools in ThreeEngine
- Axes helper with signed axes
- Screenshots
- Thick lines
- Built in shaders
- Outline shader
- Particle system
- Geometry sprites
- Physics engine
- 3D models
- 3D models animations
- PerspectiveCamera min width
- Builtin custom geometries
- Geometry editor
- Postprocessing pipeline manager
- 3D Editor with UI (adding, moving and rotating, scaling objects, lights, cameras etc. with mouse)
- Material editor
- Zoom to cursor in controls
- First person camera
- Third person camera
- Keyboard and mouse controls
- Multiplayer engine (Colyseus)
- AI
- Helpers for test lights
- Custom loading screens
- Shadow config in gui
- Keyboard input
- UI system
- Sound system
- Settings template
- Mobile touch controls (pinch)
- Fiverr
GitHub
1.0.33
2 years ago
1.0.32
2 years ago
1.0.31
2 years ago
1.0.30
2 years ago
1.0.36
2 years ago
1.0.35
2 years ago
1.0.34
2 years ago
1.0.29
2 years ago
1.0.28
2 years ago
1.0.27
2 years ago
1.0.26
2 years ago
1.0.25
2 years ago
1.0.24
3 years ago
1.0.23
3 years ago
1.0.22
3 years ago
1.0.21
3 years ago
1.0.20
3 years ago
1.0.19
3 years ago
1.0.18
3 years ago
1.0.17
3 years ago
1.0.16
3 years ago
1.0.15
3 years ago
1.0.14
3 years ago
1.0.13
3 years ago
1.0.12
3 years ago
1.0.11
3 years ago
1.0.10
3 years ago
1.0.9
3 years ago
1.0.8
3 years ago
1.0.7
3 years ago
1.0.6
3 years ago
1.0.5
3 years ago
1.0.3
3 years ago
1.0.2
3 years ago
1.0.1
3 years ago
1.0.0
3 years ago