UNPKG

three

Version:

JavaScript 3D library

22 lines (11 loc) 289 B
import { ShaderMaterial } from './ShaderMaterial.js'; class RawShaderMaterial extends ShaderMaterial { static get type() { return 'RawShaderMaterial'; } constructor( parameters ) { super( parameters ); this.isRawShaderMaterial = true; } } export { RawShaderMaterial };