Socket
Socket
Sign inDemoInstall

three-engine

Package Overview
Dependencies
1
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    three-engine

Engine/framework for three.js


Version published
Weekly downloads
1
Maintainers
1
Created
Weekly downloads
 

Readme

Source

three-engine


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)

Creator: Artur Brytkowski
  • Fiverr
  • GitHub

Keywords

FAQs

Last updated on 19 Jan 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc