Buckets:
ktongue/docker_container / simsite /frontend /node_modules /three /src /materials /MeshBasicMaterial.js
| import { Material } from './Material.js'; | |
| import { MultiplyOperation } from '../constants.js'; | |
| import { Color } from '../math/Color.js'; | |
| class MeshBasicMaterial extends Material { | |
| constructor( parameters ) { | |
| super(); | |
| this.isMeshBasicMaterial = true; | |
| this.type = 'MeshBasicMaterial'; | |
| this.color = new Color( 0xffffff ); // emissive | |
| this.map = null; | |
| this.lightMap = null; | |
| this.lightMapIntensity = 1.0; | |
| this.aoMap = null; | |
| this.aoMapIntensity = 1.0; | |
| this.specularMap = null; | |
| this.alphaMap = null; | |
| this.envMap = null; | |
| this.combine = MultiplyOperation; | |
| this.reflectivity = 1; | |
| this.refractionRatio = 0.98; | |
| this.wireframe = false; | |
| this.wireframeLinewidth = 1; | |
| this.wireframeLinecap = 'round'; | |
| this.wireframeLinejoin = 'round'; | |
| this.fog = true; | |
| this.setValues( parameters ); | |
| } | |
| copy( source ) { | |
| super.copy( source ); | |
| this.color.copy( source.color ); | |
| this.map = source.map; | |
| this.lightMap = source.lightMap; | |
| this.lightMapIntensity = source.lightMapIntensity; | |
| this.aoMap = source.aoMap; | |
| this.aoMapIntensity = source.aoMapIntensity; | |
| this.specularMap = source.specularMap; | |
| this.alphaMap = source.alphaMap; | |
| this.envMap = source.envMap; | |
| this.combine = source.combine; | |
| this.reflectivity = source.reflectivity; | |
| this.refractionRatio = source.refractionRatio; | |
| this.wireframe = source.wireframe; | |
| this.wireframeLinewidth = source.wireframeLinewidth; | |
| this.wireframeLinecap = source.wireframeLinecap; | |
| this.wireframeLinejoin = source.wireframeLinejoin; | |
| this.fog = source.fog; | |
| return this; | |
| } | |
| } | |
| export { MeshBasicMaterial }; | |
Xet Storage Details
- Size:
- 1.61 kB
- Xet hash:
- dad95d27fd44261a663048e5794361ee7d964bd2fe0125b4f64891d08beacc85
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.