Skip to content
This repository has been archived by the owner on Mar 28, 2019. It is now read-only.

ndugger-archive/babylonjs-editcontrol-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Originally written by ssatguru in Java: BabylonJS-EditControl

Translated to modern JavaScript by ndugger for use in a modular environment (via webpack, browserify, or in an electron app).


Prerequisites

  • Node 4.x+
  • NPM 3.x+

BabylonJS-EditControl

An edit control for use in BabylonJS (a 3D HTML Webgl framework) applications

About

All 3d editors provide a widget to translate, rotate or scale 3d objects in the editor.

This EditControl is similar to those widgets.

You can embed this in your BabylonJS application to provide those same capabilities.

Currently has the following features

  • Translate
  • Snap Translate
  • Rotate
  • Snap Rotate
  • Scale
  • Local or Global Translation, Rotation. (Scaling only in local axis)
  • Create multiple instances in the same scene with each instance attached to a different mesh
  • Scale size of control
  • undo, redo

For a demo head on over to http://ssatguru.appspot.com/BabylonJS-EditControl/webapp/index.html

Quick start

1) run npm init to generate a package.json file, and then add the following snippet:

"dependencies": {
    "babylonjs-editcontrol": "git://github.com/ndugger/babylonjs-editcontrol-js.git"
}

As you can see, this installs the github repo as a dependency. You must have your github account with your ssh key set up on your computer.

Once you have edited the package.json file, run npm install in your terminal.

2) add the following dependencies to your file

var EditControl = require('babylonjs-editcontrol');

In order to use this code, you must have a module system implemented, either via 'Webpack', 'Browserify', or by running your code on 'Electron'.

3) A small snippet of js code to get you running

//------------------EDIT CONTROL -------------------------------------------------
//create edit control (mesh to attach to, active camera, canvas, scale of editcontrol)
var editControl = new EditControl(box, camera, canvas, 0.75);
//enable translation controls
editControl.enableTranslation();
//set transalation sna value in meters
editControl.setTransSnapValue(0.5);
//set rotational snap value in radians
editControl.setRotSnapValue(3.14 / 18);

API

  1. To Instantiate
var EditControl = require('babylonjs-editcontrol');
var editControl = new EditControl(mesh,camera, canvas, 0.75);

This attaches the edit control to a mesh and displays x,y,z axis.

Takes three params

  • mesh - the mesh to attach the editcontrol
  • camera - active camera
  • canvas - the mesh canvas
  • scale - how small or large the editcontrol should appear
  1. To enable Translation, Rotation or Scaling controls
editControl.enableTranslation();
editControl.enableRotation();
editControl.enableScaling();
  1. To disable Translation, Rotation or Scaling controls (just displays x,y,z axis)
editControl.disableTranslation();
editControl.disableRotation();
editControl.disableScaling();
  1. To check if Translation, Rotation or Scaling is enabled
editControl.isTranslationEnabled();
editControl.isRotationEnabled();
editControl.isScalingEnabled();
  1. To turn on/off local/ global mode
editControl.setLocal(boolean true/false);
  1. To check if local/ global mode
editControl.isLocal();
  1. To turn on/off translation or rotation snapping
editControl.setTransSnap(boolean true/false);
editControl.setRotSnap(boolean true/false);
  1. To set translation or Rotation snap values
editControl.setTransSnapValue(number n in meters);
editControl.setRotSnapValue(number n in radians);
  1. To undo or redo
editControl.undo();
editControl.redo();
  1. To set undo count

By default does up to 10 undos

editControl.setUndoCount(number count);
  1. To check if user editing (moving,translating or scaling object)
editControl.isEditing();
  1. To switch edit control to another mesh
editControl.switchTo(Mesh mesh);

This quickly removes control from one mesh and attaches it to anotehr mesh.

The translation, rotation, scaling mode is maintained.

  1. To detach from the mesh and clean up resources.
editControl.detach();

Releases

No releases published

Packages

No packages published