Browse Source

added missing import

Filipp Keks 5 years ago
parent
commit
795de77840
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/renderers/WebGLRenderer.js

+ 1 - 1
src/renderers/WebGLRenderer.js

@@ -13,7 +13,6 @@ import {
 	UnsignedByteType,
 	UnsignedByteType,
 	LinearEncoding,
 	LinearEncoding,
 	NoToneMapping,
 	NoToneMapping,
-	BackSide
 } from '../constants.js';
 } from '../constants.js';
 import { MathUtils } from '../math/MathUtils.js';
 import { MathUtils } from '../math/MathUtils.js';
 import { DataTexture } from '../textures/DataTexture.js';
 import { DataTexture } from '../textures/DataTexture.js';
@@ -46,6 +45,7 @@ import { WebGLTextures } from './webgl/WebGLTextures.js';
 import { WebGLUniforms } from './webgl/WebGLUniforms.js';
 import { WebGLUniforms } from './webgl/WebGLUniforms.js';
 import { WebGLUtils } from './webgl/WebGLUtils.js';
 import { WebGLUtils } from './webgl/WebGLUtils.js';
 import { WebXRManager } from './webxr/WebXRManager.js';
 import { WebXRManager } from './webxr/WebXRManager.js';
+import { WebGLMaterials } from "./webgl/WebGLMaterials.js";
 
 
 function WebGLRenderer( parameters ) {
 function WebGLRenderer( parameters ) {