1.0.36 • Published 1 year ago

three-engine v1.0.36

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

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

1 year ago

1.0.32

1 year ago

1.0.31

1 year ago

1.0.30

1 year ago

1.0.36

1 year ago

1.0.35

1 year ago

1.0.34

1 year ago

1.0.29

1 year ago

1.0.28

1 year ago

1.0.27

1 year ago

1.0.26

1 year ago

1.0.25

1 year ago

1.0.24

1 year ago

1.0.23

1 year ago

1.0.22

1 year ago

1.0.21

1 year ago

1.0.20

1 year ago

1.0.19

1 year ago

1.0.18

1 year ago

1.0.17

1 year ago

1.0.16

1 year ago

1.0.15

1 year ago

1.0.14

1 year ago

1.0.13

1 year ago

1.0.12

1 year ago

1.0.11

1 year ago

1.0.10

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago