|
@@ -1,5 +1,5 @@
|
|
|
import { EventDispatcher } from '../core/EventDispatcher.js';
|
|
|
-import { NoColors, FrontSide, FlatShading, NormalBlending, LessEqualDepth, AddEquation, OneMinusSrcAlphaFactor, SrcAlphaFactor, AutoTangents } from '../constants.js';
|
|
|
+import { NoColors, FrontSide, FlatShading, NormalBlending, LessEqualDepth, AddEquation, OneMinusSrcAlphaFactor, SrcAlphaFactor } from '../constants.js';
|
|
|
import { _Math } from '../math/Math.js';
|
|
|
|
|
|
/**
|
|
@@ -24,7 +24,7 @@ function Material() {
|
|
|
this.blending = NormalBlending;
|
|
|
this.side = FrontSide;
|
|
|
this.flatShading = false;
|
|
|
- this.vertexTangents = AutoTangents; // THREE.AutoTangents, THREE.VertexTangents
|
|
|
+ this.vertexTangents = false;
|
|
|
this.vertexColors = NoColors; // THREE.NoColors, THREE.VertexColors, THREE.FaceColors
|
|
|
|
|
|
this.opacity = 1;
|