|
@@ -28,6 +28,8 @@ THREE.TDSLoader.prototype = {
|
|
|
|
|
|
constructor: THREE.TDSLoader,
|
|
constructor: THREE.TDSLoader,
|
|
|
|
|
|
|
|
+ crossOrigin: 'anonymous',
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Load 3ds file from url.
|
|
* Load 3ds file from url.
|
|
*
|
|
*
|
|
@@ -44,7 +46,7 @@ THREE.TDSLoader.prototype = {
|
|
var path = this.path !== undefined ? this.path : THREE.LoaderUtils.extractUrlBase( url );
|
|
var path = this.path !== undefined ? this.path : THREE.LoaderUtils.extractUrlBase( url );
|
|
|
|
|
|
var loader = new THREE.FileLoader( this.manager );
|
|
var loader = new THREE.FileLoader( this.manager );
|
|
-
|
|
|
|
|
|
+ loader.setPath( this.path );
|
|
loader.setResponseType( 'arraybuffer' );
|
|
loader.setResponseType( 'arraybuffer' );
|
|
|
|
|
|
loader.load( url, function ( data ) {
|
|
loader.load( url, function ( data ) {
|
|
@@ -520,7 +522,7 @@ THREE.TDSLoader.prototype = {
|
|
var texture = {};
|
|
var texture = {};
|
|
|
|
|
|
var loader = new THREE.TextureLoader( this.manager );
|
|
var loader = new THREE.TextureLoader( this.manager );
|
|
- loader.setPath( path );
|
|
|
|
|
|
+ loader.setPath( this.resourcePath || path ).setCrossOrigin( this.crossOrigin );
|
|
|
|
|
|
while ( next !== 0 ) {
|
|
while ( next !== 0 ) {
|
|
|
|
|
|
@@ -842,10 +844,10 @@ THREE.TDSLoader.prototype = {
|
|
},
|
|
},
|
|
|
|
|
|
/**
|
|
/**
|
|
- * Set resource path used to determine the file path to attached resources.
|
|
|
|
|
|
+ * Set path to adjust the path to the original 3ds file.
|
|
*
|
|
*
|
|
* @method setPath
|
|
* @method setPath
|
|
- * @param {String} path Path to resources.
|
|
|
|
|
|
+ * @param {String} path Path to file.
|
|
* @return Self for chaining.
|
|
* @return Self for chaining.
|
|
*/
|
|
*/
|
|
setPath: function ( path ) {
|
|
setPath: function ( path ) {
|
|
@@ -856,6 +858,37 @@ THREE.TDSLoader.prototype = {
|
|
|
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Set resource path used to determine the path to attached resources like textures.
|
|
|
|
+ *
|
|
|
|
+ * @method setResourcePath
|
|
|
|
+ * @param {String} resourcePath Path to resources.
|
|
|
|
+ * @return Self for chaining.
|
|
|
|
+ */
|
|
|
|
+ setResourcePath: function ( resourcePath ) {
|
|
|
|
+
|
|
|
|
+ this.resourcePath = resourcePath;
|
|
|
|
+
|
|
|
|
+ return this;
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Set crossOrigin value to configure CORS settings
|
|
|
|
+ * for the image loading process.
|
|
|
|
+ *
|
|
|
|
+ * @method setCrossOrigin
|
|
|
|
+ * @param {String} crossOrigin crossOrigin string.
|
|
|
|
+ * @return Self for chaining.
|
|
|
|
+ */
|
|
|
|
+ setCrossOrigin: function ( crossOrigin ) {
|
|
|
|
+
|
|
|
|
+ this.crossOrigin = crossOrigin;
|
|
|
|
+
|
|
|
|
+ return this;
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Print debug message to the console.
|
|
* Print debug message to the console.
|
|
*
|
|
*
|