Buckets:
ktongue/docker_container / simsite /frontend /node_modules /three /src /loaders /CubeTextureLoader.js
| import { ImageLoader } from './ImageLoader.js'; | |
| import { CubeTexture } from '../textures/CubeTexture.js'; | |
| import { Loader } from './Loader.js'; | |
| import { SRGBColorSpace } from '../constants.js'; | |
| class CubeTextureLoader extends Loader { | |
| constructor( manager ) { | |
| super( manager ); | |
| } | |
| load( urls, onLoad, onProgress, onError ) { | |
| const texture = new CubeTexture(); | |
| texture.colorSpace = SRGBColorSpace; | |
| const loader = new ImageLoader( this.manager ); | |
| loader.setCrossOrigin( this.crossOrigin ); | |
| loader.setPath( this.path ); | |
| let loaded = 0; | |
| function loadTexture( i ) { | |
| loader.load( urls[ i ], function ( image ) { | |
| texture.images[ i ] = image; | |
| loaded ++; | |
| if ( loaded === 6 ) { | |
| texture.needsUpdate = true; | |
| if ( onLoad ) onLoad( texture ); | |
| } | |
| }, undefined, onError ); | |
| } | |
| for ( let i = 0; i < urls.length; ++ i ) { | |
| loadTexture( i ); | |
| } | |
| return texture; | |
| } | |
| } | |
| export { CubeTextureLoader }; | |
Xet Storage Details
- Size:
- 959 Bytes
- Xet hash:
- 991c1c848b7ca13f49200b220e0d7ddbfcc3f34a0af24a1154cd363cba78363b
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.