Skip to content

Commit

Permalink
Updated builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Feb 7, 2016
1 parent e8e1a71 commit b3ceeb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/three.js
Original file line number Diff line number Diff line change
Expand Up @@ -20061,7 +20061,7 @@ THREE.Material.prototype = {
if ( this.color instanceof THREE.Color ) data.color = this.color.getHex();

if ( this.roughness !== 0.5 ) data.roughness = this.roughness;
if ( this.metalness > 0 ) data.metalness = this.metalness;
if ( this.metalness !== 0.5 ) data.metalness = this.metalness;

if ( this.emissive instanceof THREE.Color ) data.emissive = this.emissive.getHex();
if ( this.specular instanceof THREE.Color ) data.specular = this.specular.getHex();
Expand Down
2 changes: 1 addition & 1 deletion build/three.min.js

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

0 comments on commit b3ceeb5

Please sign in to comment.