File tree 2 files changed +24
-0
lines changed
2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,12 @@ THREE.GLTFLoader = ( function () {
68
68
loader . setPath ( this . path ) ;
69
69
loader . setResponseType ( 'arraybuffer' ) ;
70
70
71
+ if ( scope . crossOrigin === 'use-credentials' ) {
72
+
73
+ loader . setWithCredentials ( true ) ;
74
+
75
+ }
76
+
71
77
loader . load ( url , function ( data ) {
72
78
73
79
try {
@@ -1609,6 +1615,12 @@ THREE.GLTFLoader = ( function () {
1609
1615
this . fileLoader = new THREE . FileLoader ( this . options . manager ) ;
1610
1616
this . fileLoader . setResponseType ( 'arraybuffer' ) ;
1611
1617
1618
+ if ( this . options . crossOrigin === 'use-credentials' ) {
1619
+
1620
+ this . fileLoader . setWithCredentials ( true ) ;
1621
+
1622
+ }
1623
+
1612
1624
}
1613
1625
1614
1626
GLTFParser . prototype . parse = function ( onLoad , onError ) {
Original file line number Diff line number Diff line change @@ -160,6 +160,12 @@ var GLTFLoader = ( function () {
160
160
loader . setPath ( this . path ) ;
161
161
loader . setResponseType ( 'arraybuffer' ) ;
162
162
163
+ if ( this . options . crossOrigin === 'use-credentials' ) {
164
+
165
+ this . fileLoader . setWithCredentials ( true ) ;
166
+
167
+ }
168
+
163
169
loader . load ( url , function ( data ) {
164
170
165
171
try {
@@ -1701,6 +1707,12 @@ var GLTFLoader = ( function () {
1701
1707
this . fileLoader = new FileLoader ( this . options . manager ) ;
1702
1708
this . fileLoader . setResponseType ( 'arraybuffer' ) ;
1703
1709
1710
+ if ( this . options . crossOrigin === 'use-credentials' ) {
1711
+
1712
+ this . fileLoader . setWithCredentials ( true ) ;
1713
+
1714
+ }
1715
+
1704
1716
}
1705
1717
1706
1718
GLTFParser . prototype . parse = function ( onLoad , onError ) {
You can’t perform that action at this time.
0 commit comments