123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import { Material } from './Material.js';
- import { BasicDepthPacking } from '../constants.js';
- class MeshDepthMaterial extends Material {
- constructor( parameters ) {
- super();
- this.type = 'MeshDepthMaterial';
- this.depthPacking = BasicDepthPacking;
- this.map = null;
- this.alphaMap = null;
- this.displacementMap = null;
- this.displacementScale = 1;
- this.displacementBias = 0;
- this.wireframe = false;
- this.wireframeLinewidth = 1;
- this.setValues( parameters );
- }
- copy( source ) {
- super.copy( source );
- this.depthPacking = source.depthPacking;
- this.map = source.map;
- this.alphaMap = source.alphaMap;
- this.displacementMap = source.displacementMap;
- this.displacementScale = source.displacementScale;
- this.displacementBias = source.displacementBias;
- this.wireframe = source.wireframe;
- this.wireframeLinewidth = source.wireframeLinewidth;
- return this;
- }
- }
- MeshDepthMaterial.prototype.isMeshDepthMaterial = true;
- export { MeshDepthMaterial };
|