| 1234567891011121314151617181920212223242526272829 |
- /**
- * @author mrdoob / http://mrdoob.com/
- */
- THREE.CubeTexture = function ( images, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy ) {
- mapping = mapping !== undefined ? mapping : THREE.CubeReflectionMapping;
- THREE.Texture.call( this, images, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy );
- this.images = images;
- this.flipY = false;
- };
- THREE.CubeTexture.prototype = Object.create( THREE.Texture.prototype );
- THREE.CubeTexture.prototype.constructor = THREE.CubeTexture;
- THREE.CubeTexture.clone = function () {
- var texture = new THREE.CubeTexture();
- texture.copy( this );
- texture.images = this.images;
- return texture;
- };
|