@@ -14,6 +14,8 @@ function CubeTextureLoader( manager ) {
Object.assign( CubeTextureLoader.prototype, {
+ crossOrigin: 'Anonymous',
+
load: function ( urls, onLoad, onProgress, onError ) {
var texture = new CubeTexture();
@@ -14,6 +14,8 @@ function ImageLoader( manager ) {
Object.assign( ImageLoader.prototype, {
load: function ( url, onLoad, onProgress, onError ) {
if ( url === undefined ) url = '';
@@ -16,6 +16,8 @@ function TextureLoader( manager ) {
Object.assign( TextureLoader.prototype, {
var loader = new ImageLoader( this.manager );