Skip to content

Commit

Permalink
r79
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Jul 14, 2016
1 parent 3241458 commit 3510fdd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions build/three.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @author mrdoob / http://mrdoob.com/
*/

var THREE = { REVISION: '79dev' };
var THREE = { REVISION: '79' };

//

Expand Down Expand Up @@ -17707,7 +17707,7 @@ THREE.DirectionalLight = function ( color, intensity ) {

this.type = 'DirectionalLight';

this.position.set( 0, 1, 0 );
this.position.copy( THREE.Object3D.DefaultUp );
this.updateMatrix();

this.target = new THREE.Object3D();
Expand Down Expand Up @@ -17766,7 +17766,7 @@ THREE.HemisphereLight = function ( skyColor, groundColor, intensity ) {

this.castShadow = undefined;

this.position.set( 0, 1, 0 );
this.position.copy( THREE.Object3D.DefaultUp );
this.updateMatrix();

this.groundColor = new THREE.Color( groundColor );
Expand Down Expand Up @@ -17854,7 +17854,7 @@ THREE.SpotLight = function ( color, intensity, distance, angle, penumbra, decay

this.type = 'SpotLight';

this.position.set( 0, 1, 0 );
this.position.copy( THREE.Object3D.DefaultUp );
this.updateMatrix();

this.target = new THREE.Object3D();
Expand Down
8 changes: 4 additions & 4 deletions build/three.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "three",
"version": "0.78.0",
"version": "0.79.0",
"description": "JavaScript 3D library",
"main": "build/three.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/Three.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @author mrdoob / http://mrdoob.com/
*/

var THREE = { REVISION: '79dev' };
var THREE = { REVISION: '79' };

//

Expand Down

0 comments on commit 3510fdd

Please sign in to comment.