Skip to content

Commit

Permalink
r87
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Aug 18, 2017
1 parent eac8d59 commit 1c36097
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 18 deletions.
7 changes: 2 additions & 5 deletions build/three.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@

} );

var REVISION = '87dev';
var REVISION = '87';
var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2 };
var CullFaceNone = 0;
var CullFaceBack = 1;
Expand Down Expand Up @@ -22682,10 +22682,6 @@

}

} else if ( material.isMeshNormalMaterial ) {

refreshUniformsCommon( m_uniforms, material );

} else if ( material.isMeshDepthMaterial ) {

refreshUniformsCommon( m_uniforms, material );
Expand All @@ -22698,6 +22694,7 @@

} else if ( material.isMeshNormalMaterial ) {

refreshUniformsCommon( m_uniforms, material );
refreshUniformsNormal( m_uniforms, material );

} else if ( material.isLineBasicMaterial ) {
Expand Down
12 changes: 6 additions & 6 deletions build/three.min.js

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

7 changes: 2 additions & 5 deletions build/three.module.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ Object.assign( EventDispatcher.prototype, {

} );

var REVISION = '87dev';
var REVISION = '87';
var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2 };
var CullFaceNone = 0;
var CullFaceBack = 1;
Expand Down Expand Up @@ -22676,10 +22676,6 @@ function WebGLRenderer( parameters ) {

}

} else if ( material.isMeshNormalMaterial ) {

refreshUniformsCommon( m_uniforms, material );

} else if ( material.isMeshDepthMaterial ) {

refreshUniformsCommon( m_uniforms, material );
Expand All @@ -22692,6 +22688,7 @@ function WebGLRenderer( parameters ) {

} else if ( material.isMeshNormalMaterial ) {

refreshUniformsCommon( m_uniforms, material );
refreshUniformsNormal( m_uniforms, material );

} else if ( material.isLineBasicMaterial ) {
Expand Down
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.86.0",
"version": "0.87.0",
"description": "JavaScript 3D library",
"main": "build/three.js",
"repository": "mrdoob/three.js",
Expand Down
2 changes: 1 addition & 1 deletion src/constants.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export var REVISION = '87dev';
export var REVISION = '87';
export var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2 };
export var CullFaceNone = 0;
export var CullFaceBack = 1;
Expand Down

0 comments on commit 1c36097

Please sign in to comment.