Skip to content

Commit 282062a

Browse files
authored
Merge pull request mrdoob#16601 from mrschofield/dev-gltf-file-loader-with-credentials
Changing the example GLTFLoader to honour the crossOrigin option by
2 parents b11e46a + f37df99 commit 282062a

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

examples/js/loaders/GLTFLoader.js

+12
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@ THREE.GLTFLoader = ( function () {
6868
loader.setPath( this.path );
6969
loader.setResponseType( 'arraybuffer' );
7070

71+
if ( scope.crossOrigin === 'use-credentials' ) {
72+
73+
loader.setWithCredentials( true );
74+
75+
}
76+
7177
loader.load( url, function ( data ) {
7278

7379
try {
@@ -1609,6 +1615,12 @@ THREE.GLTFLoader = ( function () {
16091615
this.fileLoader = new THREE.FileLoader( this.options.manager );
16101616
this.fileLoader.setResponseType( 'arraybuffer' );
16111617

1618+
if ( this.options.crossOrigin === 'use-credentials' ) {
1619+
1620+
this.fileLoader.setWithCredentials( true );
1621+
1622+
}
1623+
16121624
}
16131625

16141626
GLTFParser.prototype.parse = function ( onLoad, onError ) {

examples/jsm/loaders/GLTFLoader.js

+12
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,12 @@ var GLTFLoader = ( function () {
160160
loader.setPath( this.path );
161161
loader.setResponseType( 'arraybuffer' );
162162

163+
if ( this.options.crossOrigin === 'use-credentials' ) {
164+
165+
this.fileLoader.setWithCredentials( true );
166+
167+
}
168+
163169
loader.load( url, function ( data ) {
164170

165171
try {
@@ -1701,6 +1707,12 @@ var GLTFLoader = ( function () {
17011707
this.fileLoader = new FileLoader( this.options.manager );
17021708
this.fileLoader.setResponseType( 'arraybuffer' );
17031709

1710+
if ( this.options.crossOrigin === 'use-credentials' ) {
1711+
1712+
this.fileLoader.setWithCredentials( true );
1713+
1714+
}
1715+
17041716
}
17051717

17061718
GLTFParser.prototype.parse = function ( onLoad, onError ) {

0 commit comments

Comments
 (0)