GLTFLoader.js 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594
  1. console.warn( "THREE.GLTFLoader: As part of the transition to ES6 Modules, the files in 'examples/js' were deprecated in May 2020 (r117) and will be deleted in December 2020 (r124). You can find more information about developing using ES6 Modules in https://threejs.org/docs/#manual/en/introduction/Installation." );
  2. THREE.GLTFLoader = ( function () {
  3. function GLTFLoader( manager ) {
  4. THREE.Loader.call( this, manager );
  5. this.dracoLoader = null;
  6. this.ddsLoader = null;
  7. this.ktx2Loader = null;
  8. this.pluginCallbacks = [];
  9. this.register( function ( parser ) {
  10. return new GLTFMaterialsClearcoatExtension( parser );
  11. } );
  12. this.register( function ( parser ) {
  13. return new GLTFTextureBasisUExtension( parser );
  14. } );
  15. this.register( function ( parser ) {
  16. return new GLTFMaterialsTransmissionExtension( parser );
  17. } );
  18. }
  19. GLTFLoader.prototype = Object.assign( Object.create( THREE.Loader.prototype ), {
  20. constructor: GLTFLoader,
  21. load: function ( url, onLoad, onProgress, onError ) {
  22. var scope = this;
  23. var resourcePath;
  24. if ( this.resourcePath !== '' ) {
  25. resourcePath = this.resourcePath;
  26. } else if ( this.path !== '' ) {
  27. resourcePath = this.path;
  28. } else {
  29. resourcePath = THREE.LoaderUtils.extractUrlBase( url );
  30. }
  31. // Tells the LoadingManager to track an extra item, which resolves after
  32. // the model is fully loaded. This means the count of items loaded will
  33. // be incorrect, but ensures manager.onLoad() does not fire early.
  34. scope.manager.itemStart( url );
  35. var _onError = function ( e ) {
  36. if ( onError ) {
  37. onError( e );
  38. } else {
  39. console.error( e );
  40. }
  41. scope.manager.itemError( url );
  42. scope.manager.itemEnd( url );
  43. };
  44. var loader = new THREE.FileLoader( scope.manager );
  45. loader.setPath( this.path );
  46. loader.setResponseType( 'arraybuffer' );
  47. loader.setRequestHeader( this.requestHeader );
  48. if ( scope.crossOrigin === 'use-credentials' ) {
  49. loader.setWithCredentials( true );
  50. }
  51. loader.load( url, function ( data ) {
  52. try {
  53. scope.parse( data, resourcePath, function ( gltf ) {
  54. onLoad( gltf );
  55. scope.manager.itemEnd( url );
  56. }, _onError );
  57. } catch ( e ) {
  58. _onError( e );
  59. }
  60. }, onProgress, _onError );
  61. },
  62. setDRACOLoader: function ( dracoLoader ) {
  63. this.dracoLoader = dracoLoader;
  64. return this;
  65. },
  66. setDDSLoader: function ( ddsLoader ) {
  67. this.ddsLoader = ddsLoader;
  68. return this;
  69. },
  70. setKTX2Loader: function ( ktx2Loader ) {
  71. this.ktx2Loader = ktx2Loader;
  72. return this;
  73. },
  74. register: function ( callback ) {
  75. if ( this.pluginCallbacks.indexOf( callback ) === - 1 ) {
  76. this.pluginCallbacks.push( callback );
  77. }
  78. return this;
  79. },
  80. unregister: function ( callback ) {
  81. if ( this.pluginCallbacks.indexOf( callback ) !== - 1 ) {
  82. this.pluginCallbacks.splice( this.pluginCallbacks.indexOf( callback ), 1 );
  83. }
  84. return this;
  85. },
  86. parse: function ( data, path, onLoad, onError ) {
  87. var content;
  88. var extensions = {};
  89. var plugins = {};
  90. if ( typeof data === 'string' ) {
  91. content = data;
  92. } else {
  93. var magic = THREE.LoaderUtils.decodeText( new Uint8Array( data, 0, 4 ) );
  94. if ( magic === BINARY_EXTENSION_HEADER_MAGIC ) {
  95. try {
  96. extensions[ EXTENSIONS.KHR_BINARY_GLTF ] = new GLTFBinaryExtension( data );
  97. } catch ( error ) {
  98. if ( onError ) onError( error );
  99. return;
  100. }
  101. content = extensions[ EXTENSIONS.KHR_BINARY_GLTF ].content;
  102. } else {
  103. content = THREE.LoaderUtils.decodeText( new Uint8Array( data ) );
  104. }
  105. }
  106. var json = JSON.parse( content );
  107. if ( json.asset === undefined || json.asset.version[ 0 ] < 2 ) {
  108. if ( onError ) onError( new Error( 'THREE.GLTFLoader: Unsupported asset. glTF versions >=2.0 are supported.' ) );
  109. return;
  110. }
  111. var parser = new GLTFParser( json, {
  112. path: path || this.resourcePath || '',
  113. crossOrigin: this.crossOrigin,
  114. manager: this.manager,
  115. ktx2Loader: this.ktx2Loader
  116. } );
  117. parser.fileLoader.setRequestHeader( this.requestHeader );
  118. for ( var i = 0; i < this.pluginCallbacks.length; i ++ ) {
  119. var plugin = this.pluginCallbacks[ i ]( parser );
  120. plugins[ plugin.name ] = plugin;
  121. // Workaround to avoid determining as unknown extension
  122. // in addUnknownExtensionsToUserData().
  123. // Remove this workaround if we move all the existing
  124. // extension handlers to plugin system
  125. extensions[ plugin.name ] = true;
  126. }
  127. if ( json.extensionsUsed ) {
  128. for ( var i = 0; i < json.extensionsUsed.length; ++ i ) {
  129. var extensionName = json.extensionsUsed[ i ];
  130. var extensionsRequired = json.extensionsRequired || [];
  131. switch ( extensionName ) {
  132. case EXTENSIONS.KHR_LIGHTS_PUNCTUAL:
  133. extensions[ extensionName ] = new GLTFLightsExtension( json );
  134. break;
  135. case EXTENSIONS.KHR_MATERIALS_UNLIT:
  136. extensions[ extensionName ] = new GLTFMaterialsUnlitExtension();
  137. break;
  138. case EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS:
  139. extensions[ extensionName ] = new GLTFMaterialsPbrSpecularGlossinessExtension();
  140. break;
  141. case EXTENSIONS.KHR_DRACO_MESH_COMPRESSION:
  142. extensions[ extensionName ] = new GLTFDracoMeshCompressionExtension( json, this.dracoLoader );
  143. break;
  144. case EXTENSIONS.MSFT_TEXTURE_DDS:
  145. extensions[ extensionName ] = new GLTFTextureDDSExtension( this.ddsLoader );
  146. break;
  147. case EXTENSIONS.KHR_TEXTURE_TRANSFORM:
  148. extensions[ extensionName ] = new GLTFTextureTransformExtension();
  149. break;
  150. case EXTENSIONS.KHR_MESH_QUANTIZATION:
  151. extensions[ extensionName ] = new GLTFMeshQuantizationExtension();
  152. break;
  153. default:
  154. if ( extensionsRequired.indexOf( extensionName ) >= 0 && plugins[ extensionName ] === undefined ) {
  155. console.warn( 'THREE.GLTFLoader: Unknown extension "' + extensionName + '".' );
  156. }
  157. }
  158. }
  159. }
  160. parser.setExtensions( extensions );
  161. parser.setPlugins( plugins );
  162. parser.parse( onLoad, onError );
  163. }
  164. } );
  165. /* GLTFREGISTRY */
  166. function GLTFRegistry() {
  167. var objects = {};
  168. return {
  169. get: function ( key ) {
  170. return objects[ key ];
  171. },
  172. add: function ( key, object ) {
  173. objects[ key ] = object;
  174. },
  175. remove: function ( key ) {
  176. delete objects[ key ];
  177. },
  178. removeAll: function () {
  179. objects = {};
  180. }
  181. };
  182. }
  183. /*********************************/
  184. /********** EXTENSIONS ***********/
  185. /*********************************/
  186. var EXTENSIONS = {
  187. KHR_BINARY_GLTF: 'KHR_binary_glTF',
  188. KHR_DRACO_MESH_COMPRESSION: 'KHR_draco_mesh_compression',
  189. KHR_LIGHTS_PUNCTUAL: 'KHR_lights_punctual',
  190. KHR_MATERIALS_CLEARCOAT: 'KHR_materials_clearcoat',
  191. KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS: 'KHR_materials_pbrSpecularGlossiness',
  192. KHR_MATERIALS_TRANSMISSION: 'KHR_materials_transmission',
  193. KHR_MATERIALS_UNLIT: 'KHR_materials_unlit',
  194. KHR_TEXTURE_BASISU: 'KHR_texture_basisu',
  195. KHR_TEXTURE_TRANSFORM: 'KHR_texture_transform',
  196. KHR_MESH_QUANTIZATION: 'KHR_mesh_quantization',
  197. MSFT_TEXTURE_DDS: 'MSFT_texture_dds'
  198. };
  199. /**
  200. * DDS Texture Extension
  201. *
  202. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Vendor/MSFT_texture_dds
  203. *
  204. */
  205. function GLTFTextureDDSExtension( ddsLoader ) {
  206. if ( ! ddsLoader ) {
  207. throw new Error( 'THREE.GLTFLoader: Attempting to load .dds texture without importing THREE.DDSLoader' );
  208. }
  209. this.name = EXTENSIONS.MSFT_TEXTURE_DDS;
  210. this.ddsLoader = ddsLoader;
  211. }
  212. /**
  213. * Punctual Lights Extension
  214. *
  215. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_lights_punctual
  216. */
  217. function GLTFLightsExtension( json ) {
  218. this.name = EXTENSIONS.KHR_LIGHTS_PUNCTUAL;
  219. var extension = ( json.extensions && json.extensions[ EXTENSIONS.KHR_LIGHTS_PUNCTUAL ] ) || {};
  220. this.lightDefs = extension.lights || [];
  221. }
  222. GLTFLightsExtension.prototype.loadLight = function ( lightIndex ) {
  223. var lightDef = this.lightDefs[ lightIndex ];
  224. var lightNode;
  225. var color = new THREE.Color( 0xffffff );
  226. if ( lightDef.color !== undefined ) color.fromArray( lightDef.color );
  227. var range = lightDef.range !== undefined ? lightDef.range : 0;
  228. switch ( lightDef.type ) {
  229. case 'directional':
  230. lightNode = new THREE.DirectionalLight( color );
  231. lightNode.target.position.set( 0, 0, - 1 );
  232. lightNode.add( lightNode.target );
  233. break;
  234. case 'point':
  235. lightNode = new THREE.PointLight( color );
  236. lightNode.distance = range;
  237. break;
  238. case 'spot':
  239. lightNode = new THREE.SpotLight( color );
  240. lightNode.distance = range;
  241. // Handle spotlight properties.
  242. lightDef.spot = lightDef.spot || {};
  243. lightDef.spot.innerConeAngle = lightDef.spot.innerConeAngle !== undefined ? lightDef.spot.innerConeAngle : 0;
  244. lightDef.spot.outerConeAngle = lightDef.spot.outerConeAngle !== undefined ? lightDef.spot.outerConeAngle : Math.PI / 4.0;
  245. lightNode.angle = lightDef.spot.outerConeAngle;
  246. lightNode.penumbra = 1.0 - lightDef.spot.innerConeAngle / lightDef.spot.outerConeAngle;
  247. lightNode.target.position.set( 0, 0, - 1 );
  248. lightNode.add( lightNode.target );
  249. break;
  250. default:
  251. throw new Error( 'THREE.GLTFLoader: Unexpected light type, "' + lightDef.type + '".' );
  252. }
  253. // Some lights (e.g. spot) default to a position other than the origin. Reset the position
  254. // here, because node-level parsing will only override position if explicitly specified.
  255. lightNode.position.set( 0, 0, 0 );
  256. lightNode.decay = 2;
  257. if ( lightDef.intensity !== undefined ) lightNode.intensity = lightDef.intensity;
  258. lightNode.name = lightDef.name || ( 'light_' + lightIndex );
  259. return Promise.resolve( lightNode );
  260. };
  261. /**
  262. * Unlit Materials Extension
  263. *
  264. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_materials_unlit
  265. */
  266. function GLTFMaterialsUnlitExtension() {
  267. this.name = EXTENSIONS.KHR_MATERIALS_UNLIT;
  268. }
  269. GLTFMaterialsUnlitExtension.prototype.getMaterialType = function () {
  270. return THREE.MeshBasicMaterial;
  271. };
  272. GLTFMaterialsUnlitExtension.prototype.extendParams = function ( materialParams, materialDef, parser ) {
  273. var pending = [];
  274. materialParams.color = new THREE.Color( 1.0, 1.0, 1.0 );
  275. materialParams.opacity = 1.0;
  276. var metallicRoughness = materialDef.pbrMetallicRoughness;
  277. if ( metallicRoughness ) {
  278. if ( Array.isArray( metallicRoughness.baseColorFactor ) ) {
  279. var array = metallicRoughness.baseColorFactor;
  280. materialParams.color.fromArray( array );
  281. materialParams.opacity = array[ 3 ];
  282. }
  283. if ( metallicRoughness.baseColorTexture !== undefined ) {
  284. pending.push( parser.assignTexture( materialParams, 'map', metallicRoughness.baseColorTexture ) );
  285. }
  286. }
  287. return Promise.all( pending );
  288. };
  289. /**
  290. * Clearcoat Materials Extension
  291. *
  292. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_materials_clearcoat
  293. */
  294. function GLTFMaterialsClearcoatExtension( parser ) {
  295. this.parser = parser;
  296. this.name = EXTENSIONS.KHR_MATERIALS_CLEARCOAT;
  297. }
  298. GLTFMaterialsClearcoatExtension.prototype.getMaterialType = function ( materialIndex ) {
  299. var parser = this.parser;
  300. var materialDef = parser.json.materials[ materialIndex ];
  301. if ( ! materialDef.extensions || ! materialDef.extensions[ this.name ] ) return null;
  302. return THREE.MeshPhysicalMaterial;
  303. };
  304. GLTFMaterialsClearcoatExtension.prototype.extendMaterialParams = function ( materialIndex, materialParams ) {
  305. var parser = this.parser;
  306. var materialDef = parser.json.materials[ materialIndex ];
  307. if ( ! materialDef.extensions || ! materialDef.extensions[ this.name ] ) {
  308. return Promise.resolve();
  309. }
  310. var pending = [];
  311. var extension = materialDef.extensions[ this.name ];
  312. if ( extension.clearcoatFactor !== undefined ) {
  313. materialParams.clearcoat = extension.clearcoatFactor;
  314. }
  315. if ( extension.clearcoatTexture !== undefined ) {
  316. pending.push( parser.assignTexture( materialParams, 'clearcoatMap', extension.clearcoatTexture ) );
  317. }
  318. if ( extension.clearcoatRoughnessFactor !== undefined ) {
  319. materialParams.clearcoatRoughness = extension.clearcoatRoughnessFactor;
  320. }
  321. if ( extension.clearcoatRoughnessTexture !== undefined ) {
  322. pending.push( parser.assignTexture( materialParams, 'clearcoatRoughnessMap', extension.clearcoatRoughnessTexture ) );
  323. }
  324. if ( extension.clearcoatNormalTexture !== undefined ) {
  325. pending.push( parser.assignTexture( materialParams, 'clearcoatNormalMap', extension.clearcoatNormalTexture ) );
  326. if ( extension.clearcoatNormalTexture.scale !== undefined ) {
  327. var scale = extension.clearcoatNormalTexture.scale;
  328. materialParams.clearcoatNormalScale = new THREE.Vector2( scale, scale );
  329. }
  330. }
  331. return Promise.all( pending );
  332. };
  333. /**
  334. * Transmission Materials Extension
  335. *
  336. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_materials_transmission
  337. * Draft: https://github.com/KhronosGroup/glTF/pull/1698
  338. */
  339. function GLTFMaterialsTransmissionExtension( parser ) {
  340. this.parser = parser;
  341. this.name = EXTENSIONS.KHR_MATERIALS_TRANSMISSION;
  342. }
  343. GLTFMaterialsTransmissionExtension.prototype.getMaterialType = function ( materialIndex ) {
  344. var parser = this.parser;
  345. var materialDef = parser.json.materials[ materialIndex ];
  346. if ( ! materialDef.extensions || ! materialDef.extensions[ this.name ] ) return null;
  347. return THREE.MeshPhysicalMaterial;
  348. };
  349. GLTFMaterialsTransmissionExtension.prototype.extendMaterialParams = function ( materialIndex, materialParams ) {
  350. var parser = this.parser;
  351. var materialDef = parser.json.materials[ materialIndex ];
  352. if ( ! materialDef.extensions || ! materialDef.extensions[ this.name ] ) {
  353. return Promise.resolve();
  354. }
  355. var pending = [];
  356. var extension = materialDef.extensions[ this.name ];
  357. if ( extension.transmissionFactor !== undefined ) {
  358. materialParams.transmission = extension.transmissionFactor;
  359. }
  360. if ( extension.transmissionTexture !== undefined ) {
  361. pending.push( parser.assignTexture( materialParams, 'transmissionMap', extension.transmissionTexture ) );
  362. }
  363. return Promise.all( pending );
  364. };
  365. /**
  366. * BasisU Texture Extension
  367. *
  368. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_texture_basisu
  369. * (draft PR https://github.com/KhronosGroup/glTF/pull/1751)
  370. */
  371. function GLTFTextureBasisUExtension( parser ) {
  372. this.parser = parser;
  373. this.name = EXTENSIONS.KHR_TEXTURE_BASISU;
  374. }
  375. GLTFTextureBasisUExtension.prototype.loadTexture = function ( textureIndex ) {
  376. var parser = this.parser;
  377. var json = parser.json;
  378. var textureDef = json.textures[ textureIndex ];
  379. if ( ! textureDef.extensions || ! textureDef.extensions[ this.name ] ) {
  380. return null;
  381. }
  382. var extension = textureDef.extensions[ this.name ];
  383. var source = json.images[ extension.source ];
  384. var loader = parser.options.ktx2Loader;
  385. if ( ! loader ) {
  386. throw new Error( 'THREE.GLTFLoader: setKTX2Loader must be called before loading KTX2 textures' );
  387. }
  388. return parser.loadTextureImage( textureIndex, source, loader );
  389. };
  390. /* BINARY EXTENSION */
  391. var BINARY_EXTENSION_HEADER_MAGIC = 'glTF';
  392. var BINARY_EXTENSION_HEADER_LENGTH = 12;
  393. var BINARY_EXTENSION_CHUNK_TYPES = { JSON: 0x4E4F534A, BIN: 0x004E4942 };
  394. function GLTFBinaryExtension( data ) {
  395. this.name = EXTENSIONS.KHR_BINARY_GLTF;
  396. this.content = null;
  397. this.body = null;
  398. var headerView = new DataView( data, 0, BINARY_EXTENSION_HEADER_LENGTH );
  399. this.header = {
  400. magic: THREE.LoaderUtils.decodeText( new Uint8Array( data.slice( 0, 4 ) ) ),
  401. version: headerView.getUint32( 4, true ),
  402. length: headerView.getUint32( 8, true )
  403. };
  404. if ( this.header.magic !== BINARY_EXTENSION_HEADER_MAGIC ) {
  405. throw new Error( 'THREE.GLTFLoader: Unsupported glTF-Binary header.' );
  406. } else if ( this.header.version < 2.0 ) {
  407. throw new Error( 'THREE.GLTFLoader: Legacy binary file detected.' );
  408. }
  409. var chunkView = new DataView( data, BINARY_EXTENSION_HEADER_LENGTH );
  410. var chunkIndex = 0;
  411. while ( chunkIndex < chunkView.byteLength ) {
  412. var chunkLength = chunkView.getUint32( chunkIndex, true );
  413. chunkIndex += 4;
  414. var chunkType = chunkView.getUint32( chunkIndex, true );
  415. chunkIndex += 4;
  416. if ( chunkType === BINARY_EXTENSION_CHUNK_TYPES.JSON ) {
  417. var contentArray = new Uint8Array( data, BINARY_EXTENSION_HEADER_LENGTH + chunkIndex, chunkLength );
  418. this.content = THREE.LoaderUtils.decodeText( contentArray );
  419. } else if ( chunkType === BINARY_EXTENSION_CHUNK_TYPES.BIN ) {
  420. var byteOffset = BINARY_EXTENSION_HEADER_LENGTH + chunkIndex;
  421. this.body = data.slice( byteOffset, byteOffset + chunkLength );
  422. }
  423. // Clients must ignore chunks with unknown types.
  424. chunkIndex += chunkLength;
  425. }
  426. if ( this.content === null ) {
  427. throw new Error( 'THREE.GLTFLoader: JSON content not found.' );
  428. }
  429. }
  430. /**
  431. * DRACO Mesh Compression Extension
  432. *
  433. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_draco_mesh_compression
  434. */
  435. function GLTFDracoMeshCompressionExtension( json, dracoLoader ) {
  436. if ( ! dracoLoader ) {
  437. throw new Error( 'THREE.GLTFLoader: No DRACOLoader instance provided.' );
  438. }
  439. this.name = EXTENSIONS.KHR_DRACO_MESH_COMPRESSION;
  440. this.json = json;
  441. this.dracoLoader = dracoLoader;
  442. this.dracoLoader.preload();
  443. }
  444. GLTFDracoMeshCompressionExtension.prototype.decodePrimitive = function ( primitive, parser ) {
  445. var json = this.json;
  446. var dracoLoader = this.dracoLoader;
  447. var bufferViewIndex = primitive.extensions[ this.name ].bufferView;
  448. var gltfAttributeMap = primitive.extensions[ this.name ].attributes;
  449. var threeAttributeMap = {};
  450. var attributeNormalizedMap = {};
  451. var attributeTypeMap = {};
  452. for ( var attributeName in gltfAttributeMap ) {
  453. var threeAttributeName = ATTRIBUTES[ attributeName ] || attributeName.toLowerCase();
  454. threeAttributeMap[ threeAttributeName ] = gltfAttributeMap[ attributeName ];
  455. }
  456. for ( attributeName in primitive.attributes ) {
  457. var threeAttributeName = ATTRIBUTES[ attributeName ] || attributeName.toLowerCase();
  458. if ( gltfAttributeMap[ attributeName ] !== undefined ) {
  459. var accessorDef = json.accessors[ primitive.attributes[ attributeName ] ];
  460. var componentType = WEBGL_COMPONENT_TYPES[ accessorDef.componentType ];
  461. attributeTypeMap[ threeAttributeName ] = componentType;
  462. attributeNormalizedMap[ threeAttributeName ] = accessorDef.normalized === true;
  463. }
  464. }
  465. return parser.getDependency( 'bufferView', bufferViewIndex ).then( function ( bufferView ) {
  466. return new Promise( function ( resolve ) {
  467. dracoLoader.decodeDracoFile( bufferView, function ( geometry ) {
  468. for ( var attributeName in geometry.attributes ) {
  469. var attribute = geometry.attributes[ attributeName ];
  470. var normalized = attributeNormalizedMap[ attributeName ];
  471. if ( normalized !== undefined ) attribute.normalized = normalized;
  472. }
  473. resolve( geometry );
  474. }, threeAttributeMap, attributeTypeMap );
  475. } );
  476. } );
  477. };
  478. /**
  479. * Texture Transform Extension
  480. *
  481. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_texture_transform
  482. */
  483. function GLTFTextureTransformExtension() {
  484. this.name = EXTENSIONS.KHR_TEXTURE_TRANSFORM;
  485. }
  486. GLTFTextureTransformExtension.prototype.extendTexture = function ( texture, transform ) {
  487. texture = texture.clone();
  488. if ( transform.offset !== undefined ) {
  489. texture.offset.fromArray( transform.offset );
  490. }
  491. if ( transform.rotation !== undefined ) {
  492. texture.rotation = transform.rotation;
  493. }
  494. if ( transform.scale !== undefined ) {
  495. texture.repeat.fromArray( transform.scale );
  496. }
  497. if ( transform.texCoord !== undefined ) {
  498. console.warn( 'THREE.GLTFLoader: Custom UV sets in "' + this.name + '" extension not yet supported.' );
  499. }
  500. texture.needsUpdate = true;
  501. return texture;
  502. };
  503. /**
  504. * Specular-Glossiness Extension
  505. *
  506. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_materials_pbrSpecularGlossiness
  507. */
  508. /**
  509. * A sub class of THREE.StandardMaterial with some of the functionality
  510. * changed via the `onBeforeCompile` callback
  511. * @pailhead
  512. */
  513. function GLTFMeshStandardSGMaterial( params ) {
  514. THREE.MeshStandardMaterial.call( this );
  515. this.isGLTFSpecularGlossinessMaterial = true;
  516. //various chunks that need replacing
  517. var specularMapParsFragmentChunk = [
  518. '#ifdef USE_SPECULARMAP',
  519. ' uniform sampler2D specularMap;',
  520. '#endif'
  521. ].join( '\n' );
  522. var glossinessMapParsFragmentChunk = [
  523. '#ifdef USE_GLOSSINESSMAP',
  524. ' uniform sampler2D glossinessMap;',
  525. '#endif'
  526. ].join( '\n' );
  527. var specularMapFragmentChunk = [
  528. 'vec3 specularFactor = specular;',
  529. '#ifdef USE_SPECULARMAP',
  530. ' vec4 texelSpecular = texture2D( specularMap, vUv );',
  531. ' texelSpecular = sRGBToLinear( texelSpecular );',
  532. ' // reads channel RGB, compatible with a glTF Specular-Glossiness (RGBA) texture',
  533. ' specularFactor *= texelSpecular.rgb;',
  534. '#endif'
  535. ].join( '\n' );
  536. var glossinessMapFragmentChunk = [
  537. 'float glossinessFactor = glossiness;',
  538. '#ifdef USE_GLOSSINESSMAP',
  539. ' vec4 texelGlossiness = texture2D( glossinessMap, vUv );',
  540. ' // reads channel A, compatible with a glTF Specular-Glossiness (RGBA) texture',
  541. ' glossinessFactor *= texelGlossiness.a;',
  542. '#endif'
  543. ].join( '\n' );
  544. var lightPhysicalFragmentChunk = [
  545. 'PhysicalMaterial material;',
  546. 'material.diffuseColor = diffuseColor.rgb;',
  547. 'vec3 dxy = max( abs( dFdx( geometryNormal ) ), abs( dFdy( geometryNormal ) ) );',
  548. 'float geometryRoughness = max( max( dxy.x, dxy.y ), dxy.z );',
  549. 'material.specularRoughness = max( 1.0 - glossinessFactor, 0.0525 );// 0.0525 corresponds to the base mip of a 256 cubemap.',
  550. 'material.specularRoughness += geometryRoughness;',
  551. 'material.specularRoughness = min( material.specularRoughness, 1.0 );',
  552. 'material.specularColor = specularFactor.rgb;',
  553. ].join( '\n' );
  554. var uniforms = {
  555. specular: { value: new THREE.Color().setHex( 0xffffff ) },
  556. glossiness: { value: 1 },
  557. specularMap: { value: null },
  558. glossinessMap: { value: null }
  559. };
  560. this._extraUniforms = uniforms;
  561. // please see #14031 or #13198 for an alternate approach
  562. this.onBeforeCompile = function ( shader ) {
  563. for ( var uniformName in uniforms ) {
  564. shader.uniforms[ uniformName ] = uniforms[ uniformName ];
  565. }
  566. shader.fragmentShader = shader.fragmentShader.replace( 'uniform float roughness;', 'uniform vec3 specular;' );
  567. shader.fragmentShader = shader.fragmentShader.replace( 'uniform float metalness;', 'uniform float glossiness;' );
  568. shader.fragmentShader = shader.fragmentShader.replace( '#include <roughnessmap_pars_fragment>', specularMapParsFragmentChunk );
  569. shader.fragmentShader = shader.fragmentShader.replace( '#include <metalnessmap_pars_fragment>', glossinessMapParsFragmentChunk );
  570. shader.fragmentShader = shader.fragmentShader.replace( '#include <roughnessmap_fragment>', specularMapFragmentChunk );
  571. shader.fragmentShader = shader.fragmentShader.replace( '#include <metalnessmap_fragment>', glossinessMapFragmentChunk );
  572. shader.fragmentShader = shader.fragmentShader.replace( '#include <lights_physical_fragment>', lightPhysicalFragmentChunk );
  573. };
  574. /*eslint-disable*/
  575. Object.defineProperties(
  576. this,
  577. {
  578. specular: {
  579. get: function () { return uniforms.specular.value; },
  580. set: function ( v ) { uniforms.specular.value = v; }
  581. },
  582. specularMap: {
  583. get: function () { return uniforms.specularMap.value; },
  584. set: function ( v ) { uniforms.specularMap.value = v; }
  585. },
  586. glossiness: {
  587. get: function () { return uniforms.glossiness.value; },
  588. set: function ( v ) { uniforms.glossiness.value = v; }
  589. },
  590. glossinessMap: {
  591. get: function () { return uniforms.glossinessMap.value; },
  592. set: function ( v ) {
  593. uniforms.glossinessMap.value = v;
  594. //how about something like this - @pailhead
  595. if ( v ) {
  596. this.defines.USE_GLOSSINESSMAP = '';
  597. // set USE_ROUGHNESSMAP to enable vUv
  598. this.defines.USE_ROUGHNESSMAP = '';
  599. } else {
  600. delete this.defines.USE_ROUGHNESSMAP;
  601. delete this.defines.USE_GLOSSINESSMAP;
  602. }
  603. }
  604. }
  605. }
  606. );
  607. /*eslint-enable*/
  608. delete this.metalness;
  609. delete this.roughness;
  610. delete this.metalnessMap;
  611. delete this.roughnessMap;
  612. this.setValues( params );
  613. }
  614. GLTFMeshStandardSGMaterial.prototype = Object.create( THREE.MeshStandardMaterial.prototype );
  615. GLTFMeshStandardSGMaterial.prototype.constructor = GLTFMeshStandardSGMaterial;
  616. GLTFMeshStandardSGMaterial.prototype.copy = function ( source ) {
  617. THREE.MeshStandardMaterial.prototype.copy.call( this, source );
  618. this.specularMap = source.specularMap;
  619. this.specular.copy( source.specular );
  620. this.glossinessMap = source.glossinessMap;
  621. this.glossiness = source.glossiness;
  622. delete this.metalness;
  623. delete this.roughness;
  624. delete this.metalnessMap;
  625. delete this.roughnessMap;
  626. return this;
  627. };
  628. function GLTFMaterialsPbrSpecularGlossinessExtension() {
  629. return {
  630. name: EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS,
  631. specularGlossinessParams: [
  632. 'color',
  633. 'map',
  634. 'lightMap',
  635. 'lightMapIntensity',
  636. 'aoMap',
  637. 'aoMapIntensity',
  638. 'emissive',
  639. 'emissiveIntensity',
  640. 'emissiveMap',
  641. 'bumpMap',
  642. 'bumpScale',
  643. 'normalMap',
  644. 'normalMapType',
  645. 'displacementMap',
  646. 'displacementScale',
  647. 'displacementBias',
  648. 'specularMap',
  649. 'specular',
  650. 'glossinessMap',
  651. 'glossiness',
  652. 'alphaMap',
  653. 'envMap',
  654. 'envMapIntensity',
  655. 'refractionRatio',
  656. ],
  657. getMaterialType: function () {
  658. return GLTFMeshStandardSGMaterial;
  659. },
  660. extendParams: function ( materialParams, materialDef, parser ) {
  661. var pbrSpecularGlossiness = materialDef.extensions[ this.name ];
  662. materialParams.color = new THREE.Color( 1.0, 1.0, 1.0 );
  663. materialParams.opacity = 1.0;
  664. var pending = [];
  665. if ( Array.isArray( pbrSpecularGlossiness.diffuseFactor ) ) {
  666. var array = pbrSpecularGlossiness.diffuseFactor;
  667. materialParams.color.fromArray( array );
  668. materialParams.opacity = array[ 3 ];
  669. }
  670. if ( pbrSpecularGlossiness.diffuseTexture !== undefined ) {
  671. pending.push( parser.assignTexture( materialParams, 'map', pbrSpecularGlossiness.diffuseTexture ) );
  672. }
  673. materialParams.emissive = new THREE.Color( 0.0, 0.0, 0.0 );
  674. materialParams.glossiness = pbrSpecularGlossiness.glossinessFactor !== undefined ? pbrSpecularGlossiness.glossinessFactor : 1.0;
  675. materialParams.specular = new THREE.Color( 1.0, 1.0, 1.0 );
  676. if ( Array.isArray( pbrSpecularGlossiness.specularFactor ) ) {
  677. materialParams.specular.fromArray( pbrSpecularGlossiness.specularFactor );
  678. }
  679. if ( pbrSpecularGlossiness.specularGlossinessTexture !== undefined ) {
  680. var specGlossMapDef = pbrSpecularGlossiness.specularGlossinessTexture;
  681. pending.push( parser.assignTexture( materialParams, 'glossinessMap', specGlossMapDef ) );
  682. pending.push( parser.assignTexture( materialParams, 'specularMap', specGlossMapDef ) );
  683. }
  684. return Promise.all( pending );
  685. },
  686. createMaterial: function ( materialParams ) {
  687. var material = new GLTFMeshStandardSGMaterial( materialParams );
  688. material.fog = true;
  689. material.color = materialParams.color;
  690. material.map = materialParams.map === undefined ? null : materialParams.map;
  691. material.lightMap = null;
  692. material.lightMapIntensity = 1.0;
  693. material.aoMap = materialParams.aoMap === undefined ? null : materialParams.aoMap;
  694. material.aoMapIntensity = 1.0;
  695. material.emissive = materialParams.emissive;
  696. material.emissiveIntensity = 1.0;
  697. material.emissiveMap = materialParams.emissiveMap === undefined ? null : materialParams.emissiveMap;
  698. material.bumpMap = materialParams.bumpMap === undefined ? null : materialParams.bumpMap;
  699. material.bumpScale = 1;
  700. material.normalMap = materialParams.normalMap === undefined ? null : materialParams.normalMap;
  701. material.normalMapType = THREE.TangentSpaceNormalMap;
  702. if ( materialParams.normalScale ) material.normalScale = materialParams.normalScale;
  703. material.displacementMap = null;
  704. material.displacementScale = 1;
  705. material.displacementBias = 0;
  706. material.specularMap = materialParams.specularMap === undefined ? null : materialParams.specularMap;
  707. material.specular = materialParams.specular;
  708. material.glossinessMap = materialParams.glossinessMap === undefined ? null : materialParams.glossinessMap;
  709. material.glossiness = materialParams.glossiness;
  710. material.alphaMap = null;
  711. material.envMap = materialParams.envMap === undefined ? null : materialParams.envMap;
  712. material.envMapIntensity = 1.0;
  713. material.refractionRatio = 0.98;
  714. return material;
  715. },
  716. };
  717. }
  718. /**
  719. * Mesh Quantization Extension
  720. *
  721. * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_mesh_quantization
  722. */
  723. function GLTFMeshQuantizationExtension() {
  724. this.name = EXTENSIONS.KHR_MESH_QUANTIZATION;
  725. }
  726. /*********************************/
  727. /********** INTERPOLATION ********/
  728. /*********************************/
  729. // Spline Interpolation
  730. // Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#appendix-c-spline-interpolation
  731. function GLTFCubicSplineInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) {
  732. THREE.Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer );
  733. }
  734. GLTFCubicSplineInterpolant.prototype = Object.create( THREE.Interpolant.prototype );
  735. GLTFCubicSplineInterpolant.prototype.constructor = GLTFCubicSplineInterpolant;
  736. GLTFCubicSplineInterpolant.prototype.copySampleValue_ = function ( index ) {
  737. // Copies a sample value to the result buffer. See description of glTF
  738. // CUBICSPLINE values layout in interpolate_() function below.
  739. var result = this.resultBuffer,
  740. values = this.sampleValues,
  741. valueSize = this.valueSize,
  742. offset = index * valueSize * 3 + valueSize;
  743. for ( var i = 0; i !== valueSize; i ++ ) {
  744. result[ i ] = values[ offset + i ];
  745. }
  746. return result;
  747. };
  748. GLTFCubicSplineInterpolant.prototype.beforeStart_ = GLTFCubicSplineInterpolant.prototype.copySampleValue_;
  749. GLTFCubicSplineInterpolant.prototype.afterEnd_ = GLTFCubicSplineInterpolant.prototype.copySampleValue_;
  750. GLTFCubicSplineInterpolant.prototype.interpolate_ = function ( i1, t0, t, t1 ) {
  751. var result = this.resultBuffer;
  752. var values = this.sampleValues;
  753. var stride = this.valueSize;
  754. var stride2 = stride * 2;
  755. var stride3 = stride * 3;
  756. var td = t1 - t0;
  757. var p = ( t - t0 ) / td;
  758. var pp = p * p;
  759. var ppp = pp * p;
  760. var offset1 = i1 * stride3;
  761. var offset0 = offset1 - stride3;
  762. var s2 = - 2 * ppp + 3 * pp;
  763. var s3 = ppp - pp;
  764. var s0 = 1 - s2;
  765. var s1 = s3 - pp + p;
  766. // Layout of keyframe output values for CUBICSPLINE animations:
  767. // [ inTangent_1, splineVertex_1, outTangent_1, inTangent_2, splineVertex_2, ... ]
  768. for ( var i = 0; i !== stride; i ++ ) {
  769. var p0 = values[ offset0 + i + stride ]; // splineVertex_k
  770. var m0 = values[ offset0 + i + stride2 ] * td; // outTangent_k * (t_k+1 - t_k)
  771. var p1 = values[ offset1 + i + stride ]; // splineVertex_k+1
  772. var m1 = values[ offset1 + i ] * td; // inTangent_k+1 * (t_k+1 - t_k)
  773. result[ i ] = s0 * p0 + s1 * m0 + s2 * p1 + s3 * m1;
  774. }
  775. return result;
  776. };
  777. /*********************************/
  778. /********** INTERNALS ************/
  779. /*********************************/
  780. /* CONSTANTS */
  781. var WEBGL_CONSTANTS = {
  782. FLOAT: 5126,
  783. //FLOAT_MAT2: 35674,
  784. FLOAT_MAT3: 35675,
  785. FLOAT_MAT4: 35676,
  786. FLOAT_VEC2: 35664,
  787. FLOAT_VEC3: 35665,
  788. FLOAT_VEC4: 35666,
  789. LINEAR: 9729,
  790. REPEAT: 10497,
  791. SAMPLER_2D: 35678,
  792. POINTS: 0,
  793. LINES: 1,
  794. LINE_LOOP: 2,
  795. LINE_STRIP: 3,
  796. TRIANGLES: 4,
  797. TRIANGLE_STRIP: 5,
  798. TRIANGLE_FAN: 6,
  799. UNSIGNED_BYTE: 5121,
  800. UNSIGNED_SHORT: 5123
  801. };
  802. var WEBGL_COMPONENT_TYPES = {
  803. 5120: Int8Array,
  804. 5121: Uint8Array,
  805. 5122: Int16Array,
  806. 5123: Uint16Array,
  807. 5125: Uint32Array,
  808. 5126: Float32Array
  809. };
  810. var WEBGL_FILTERS = {
  811. 9728: THREE.NearestFilter,
  812. 9729: THREE.LinearFilter,
  813. 9984: THREE.NearestMipmapNearestFilter,
  814. 9985: THREE.LinearMipmapNearestFilter,
  815. 9986: THREE.NearestMipmapLinearFilter,
  816. 9987: THREE.LinearMipmapLinearFilter
  817. };
  818. var WEBGL_WRAPPINGS = {
  819. 33071: THREE.ClampToEdgeWrapping,
  820. 33648: THREE.MirroredRepeatWrapping,
  821. 10497: THREE.RepeatWrapping
  822. };
  823. var WEBGL_TYPE_SIZES = {
  824. 'SCALAR': 1,
  825. 'VEC2': 2,
  826. 'VEC3': 3,
  827. 'VEC4': 4,
  828. 'MAT2': 4,
  829. 'MAT3': 9,
  830. 'MAT4': 16
  831. };
  832. var ATTRIBUTES = {
  833. POSITION: 'position',
  834. NORMAL: 'normal',
  835. TANGENT: 'tangent',
  836. TEXCOORD_0: 'uv',
  837. TEXCOORD_1: 'uv2',
  838. COLOR_0: 'color',
  839. WEIGHTS_0: 'skinWeight',
  840. JOINTS_0: 'skinIndex',
  841. };
  842. var PATH_PROPERTIES = {
  843. scale: 'scale',
  844. translation: 'position',
  845. rotation: 'quaternion',
  846. weights: 'morphTargetInfluences'
  847. };
  848. var INTERPOLATION = {
  849. CUBICSPLINE: undefined, // We use a custom interpolant (GLTFCubicSplineInterpolation) for CUBICSPLINE tracks. Each
  850. // keyframe track will be initialized with a default interpolation type, then modified.
  851. LINEAR: THREE.InterpolateLinear,
  852. STEP: THREE.InterpolateDiscrete
  853. };
  854. var ALPHA_MODES = {
  855. OPAQUE: 'OPAQUE',
  856. MASK: 'MASK',
  857. BLEND: 'BLEND'
  858. };
  859. /* UTILITY FUNCTIONS */
  860. function resolveURL( url, path ) {
  861. // Invalid URL
  862. if ( typeof url !== 'string' || url === '' ) return '';
  863. // Host Relative URL
  864. if ( /^https?:\/\//i.test( path ) && /^\//.test( url ) ) {
  865. path = path.replace( /(^https?:\/\/[^\/]+).*/i, '$1' );
  866. }
  867. // Absolute URL http://,https://,//
  868. if ( /^(https?:)?\/\//i.test( url ) ) return url;
  869. // Data URI
  870. if ( /^data:.*,.*$/i.test( url ) ) return url;
  871. // Blob URL
  872. if ( /^blob:.*$/i.test( url ) ) return url;
  873. // Relative URL
  874. return path + url;
  875. }
  876. /**
  877. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#default-material
  878. */
  879. function createDefaultMaterial( cache ) {
  880. if ( cache[ 'DefaultMaterial' ] === undefined ) {
  881. cache[ 'DefaultMaterial' ] = new THREE.MeshStandardMaterial( {
  882. color: 0xFFFFFF,
  883. emissive: 0x000000,
  884. metalness: 1,
  885. roughness: 1,
  886. transparent: false,
  887. depthTest: true,
  888. side: THREE.FrontSide
  889. } );
  890. }
  891. return cache[ 'DefaultMaterial' ];
  892. }
  893. function addUnknownExtensionsToUserData( knownExtensions, object, objectDef ) {
  894. // Add unknown glTF extensions to an object's userData.
  895. for ( var name in objectDef.extensions ) {
  896. if ( knownExtensions[ name ] === undefined ) {
  897. object.userData.gltfExtensions = object.userData.gltfExtensions || {};
  898. object.userData.gltfExtensions[ name ] = objectDef.extensions[ name ];
  899. }
  900. }
  901. }
  902. /**
  903. * @param {THREE.Object3D|THREE.Material|THREE.BufferGeometry} object
  904. * @param {GLTF.definition} gltfDef
  905. */
  906. function assignExtrasToUserData( object, gltfDef ) {
  907. if ( gltfDef.extras !== undefined ) {
  908. if ( typeof gltfDef.extras === 'object' ) {
  909. Object.assign( object.userData, gltfDef.extras );
  910. } else {
  911. console.warn( 'THREE.GLTFLoader: Ignoring primitive type .extras, ' + gltfDef.extras );
  912. }
  913. }
  914. }
  915. /**
  916. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#morph-targets
  917. *
  918. * @param {THREE.BufferGeometry} geometry
  919. * @param {Array<GLTF.Target>} targets
  920. * @param {GLTFParser} parser
  921. * @return {Promise<THREE.BufferGeometry>}
  922. */
  923. function addMorphTargets( geometry, targets, parser ) {
  924. var hasMorphPosition = false;
  925. var hasMorphNormal = false;
  926. for ( var i = 0, il = targets.length; i < il; i ++ ) {
  927. var target = targets[ i ];
  928. if ( target.POSITION !== undefined ) hasMorphPosition = true;
  929. if ( target.NORMAL !== undefined ) hasMorphNormal = true;
  930. if ( hasMorphPosition && hasMorphNormal ) break;
  931. }
  932. if ( ! hasMorphPosition && ! hasMorphNormal ) return Promise.resolve( geometry );
  933. var pendingPositionAccessors = [];
  934. var pendingNormalAccessors = [];
  935. for ( var i = 0, il = targets.length; i < il; i ++ ) {
  936. var target = targets[ i ];
  937. if ( hasMorphPosition ) {
  938. var pendingAccessor = target.POSITION !== undefined
  939. ? parser.getDependency( 'accessor', target.POSITION )
  940. : geometry.attributes.position;
  941. pendingPositionAccessors.push( pendingAccessor );
  942. }
  943. if ( hasMorphNormal ) {
  944. var pendingAccessor = target.NORMAL !== undefined
  945. ? parser.getDependency( 'accessor', target.NORMAL )
  946. : geometry.attributes.normal;
  947. pendingNormalAccessors.push( pendingAccessor );
  948. }
  949. }
  950. return Promise.all( [
  951. Promise.all( pendingPositionAccessors ),
  952. Promise.all( pendingNormalAccessors )
  953. ] ).then( function ( accessors ) {
  954. var morphPositions = accessors[ 0 ];
  955. var morphNormals = accessors[ 1 ];
  956. if ( hasMorphPosition ) geometry.morphAttributes.position = morphPositions;
  957. if ( hasMorphNormal ) geometry.morphAttributes.normal = morphNormals;
  958. geometry.morphTargetsRelative = true;
  959. return geometry;
  960. } );
  961. }
  962. /**
  963. * @param {THREE.Mesh} mesh
  964. * @param {GLTF.Mesh} meshDef
  965. */
  966. function updateMorphTargets( mesh, meshDef ) {
  967. mesh.updateMorphTargets();
  968. if ( meshDef.weights !== undefined ) {
  969. for ( var i = 0, il = meshDef.weights.length; i < il; i ++ ) {
  970. mesh.morphTargetInfluences[ i ] = meshDef.weights[ i ];
  971. }
  972. }
  973. // .extras has user-defined data, so check that .extras.targetNames is an array.
  974. if ( meshDef.extras && Array.isArray( meshDef.extras.targetNames ) ) {
  975. var targetNames = meshDef.extras.targetNames;
  976. if ( mesh.morphTargetInfluences.length === targetNames.length ) {
  977. mesh.morphTargetDictionary = {};
  978. for ( var i = 0, il = targetNames.length; i < il; i ++ ) {
  979. mesh.morphTargetDictionary[ targetNames[ i ] ] = i;
  980. }
  981. } else {
  982. console.warn( 'THREE.GLTFLoader: Invalid extras.targetNames length. Ignoring names.' );
  983. }
  984. }
  985. }
  986. function createPrimitiveKey( primitiveDef ) {
  987. var dracoExtension = primitiveDef.extensions && primitiveDef.extensions[ EXTENSIONS.KHR_DRACO_MESH_COMPRESSION ];
  988. var geometryKey;
  989. if ( dracoExtension ) {
  990. geometryKey = 'draco:' + dracoExtension.bufferView
  991. + ':' + dracoExtension.indices
  992. + ':' + createAttributesKey( dracoExtension.attributes );
  993. } else {
  994. geometryKey = primitiveDef.indices + ':' + createAttributesKey( primitiveDef.attributes ) + ':' + primitiveDef.mode;
  995. }
  996. return geometryKey;
  997. }
  998. function createAttributesKey( attributes ) {
  999. var attributesKey = '';
  1000. var keys = Object.keys( attributes ).sort();
  1001. for ( var i = 0, il = keys.length; i < il; i ++ ) {
  1002. attributesKey += keys[ i ] + ':' + attributes[ keys[ i ] ] + ';';
  1003. }
  1004. return attributesKey;
  1005. }
  1006. /* GLTF PARSER */
  1007. function GLTFParser( json, options ) {
  1008. this.json = json || {};
  1009. this.extensions = {};
  1010. this.plugins = {};
  1011. this.options = options || {};
  1012. // loader object cache
  1013. this.cache = new GLTFRegistry();
  1014. // associations between Three.js objects and glTF elements
  1015. this.associations = new Map();
  1016. // BufferGeometry caching
  1017. this.primitiveCache = {};
  1018. // Object3D instance caches
  1019. this.meshCache = { refs: {}, uses: {} };
  1020. this.cameraCache = { refs: {}, uses: {} };
  1021. this.lightCache = { refs: {}, uses: {} };
  1022. // Use an ImageBitmapLoader if imageBitmaps are supported. Moves much of the
  1023. // expensive work of uploading a texture to the GPU off the main thread.
  1024. if ( typeof createImageBitmap !== 'undefined' && /Firefox/.test( navigator.userAgent ) === false ) {
  1025. this.textureLoader = new THREE.ImageBitmapLoader( this.options.manager );
  1026. } else {
  1027. this.textureLoader = new THREE.TextureLoader( this.options.manager );
  1028. }
  1029. this.textureLoader.setCrossOrigin( this.options.crossOrigin );
  1030. this.fileLoader = new THREE.FileLoader( this.options.manager );
  1031. this.fileLoader.setResponseType( 'arraybuffer' );
  1032. if ( this.options.crossOrigin === 'use-credentials' ) {
  1033. this.fileLoader.setWithCredentials( true );
  1034. }
  1035. }
  1036. GLTFParser.prototype.setExtensions = function ( extensions ) {
  1037. this.extensions = extensions;
  1038. };
  1039. GLTFParser.prototype.setPlugins = function ( plugins ) {
  1040. this.plugins = plugins;
  1041. };
  1042. GLTFParser.prototype.parse = function ( onLoad, onError ) {
  1043. var parser = this;
  1044. var json = this.json;
  1045. var extensions = this.extensions;
  1046. // Clear the loader cache
  1047. this.cache.removeAll();
  1048. // Mark the special nodes/meshes in json for efficient parse
  1049. this._markDefs();
  1050. Promise.all( [
  1051. this.getDependencies( 'scene' ),
  1052. this.getDependencies( 'animation' ),
  1053. this.getDependencies( 'camera' ),
  1054. ] ).then( function ( dependencies ) {
  1055. var result = {
  1056. scene: dependencies[ 0 ][ json.scene || 0 ],
  1057. scenes: dependencies[ 0 ],
  1058. animations: dependencies[ 1 ],
  1059. cameras: dependencies[ 2 ],
  1060. asset: json.asset,
  1061. parser: parser,
  1062. userData: {}
  1063. };
  1064. addUnknownExtensionsToUserData( extensions, result, json );
  1065. assignExtrasToUserData( result, json );
  1066. onLoad( result );
  1067. } ).catch( onError );
  1068. };
  1069. /**
  1070. * Marks the special nodes/meshes in json for efficient parse.
  1071. */
  1072. GLTFParser.prototype._markDefs = function () {
  1073. var nodeDefs = this.json.nodes || [];
  1074. var skinDefs = this.json.skins || [];
  1075. var meshDefs = this.json.meshes || [];
  1076. // Nothing in the node definition indicates whether it is a Bone or an
  1077. // Object3D. Use the skins' joint references to mark bones.
  1078. for ( var skinIndex = 0, skinLength = skinDefs.length; skinIndex < skinLength; skinIndex ++ ) {
  1079. var joints = skinDefs[ skinIndex ].joints;
  1080. for ( var i = 0, il = joints.length; i < il; i ++ ) {
  1081. nodeDefs[ joints[ i ] ].isBone = true;
  1082. }
  1083. }
  1084. // Iterate over all nodes, marking references to shared resources,
  1085. // as well as skeleton joints.
  1086. for ( var nodeIndex = 0, nodeLength = nodeDefs.length; nodeIndex < nodeLength; nodeIndex ++ ) {
  1087. var nodeDef = nodeDefs[ nodeIndex ];
  1088. if ( nodeDef.mesh !== undefined ) {
  1089. this._addNodeRef( this.meshCache, nodeDef.mesh );
  1090. // Nothing in the mesh definition indicates whether it is
  1091. // a SkinnedMesh or Mesh. Use the node's mesh reference
  1092. // to mark SkinnedMesh if node has skin.
  1093. if ( nodeDef.skin !== undefined ) {
  1094. meshDefs[ nodeDef.mesh ].isSkinnedMesh = true;
  1095. }
  1096. }
  1097. if ( nodeDef.camera !== undefined ) {
  1098. this._addNodeRef( this.cameraCache, nodeDef.camera );
  1099. }
  1100. if ( nodeDef.extensions
  1101. && nodeDef.extensions[ EXTENSIONS.KHR_LIGHTS_PUNCTUAL ]
  1102. && nodeDef.extensions[ EXTENSIONS.KHR_LIGHTS_PUNCTUAL ].light !== undefined ) {
  1103. this._addNodeRef( this.lightCache, nodeDef.extensions[ EXTENSIONS.KHR_LIGHTS_PUNCTUAL ].light );
  1104. }
  1105. }
  1106. };
  1107. /**
  1108. * Counts references to shared node / Object3D resources. These resources
  1109. * can be reused, or "instantiated", at multiple nodes in the scene
  1110. * hierarchy. Mesh, Camera, and Light instances are instantiated and must
  1111. * be marked. Non-scenegraph resources (like Materials, Geometries, and
  1112. * Textures) can be reused directly and are not marked here.
  1113. *
  1114. * Example: CesiumMilkTruck sample model reuses "Wheel" meshes.
  1115. */
  1116. GLTFParser.prototype._addNodeRef = function ( cache, index ) {
  1117. if ( index === undefined ) return;
  1118. if ( cache.refs[ index ] === undefined ) {
  1119. cache.refs[ index ] = cache.uses[ index ] = 0;
  1120. }
  1121. cache.refs[ index ] ++;
  1122. };
  1123. /** Returns a reference to a shared resource, cloning it if necessary. */
  1124. GLTFParser.prototype._getNodeRef = function ( cache, index, object ) {
  1125. if ( cache.refs[ index ] <= 1 ) return object;
  1126. var ref = object.clone();
  1127. ref.name += '_instance_' + ( cache.uses[ index ] ++ );
  1128. return ref;
  1129. };
  1130. GLTFParser.prototype._invokeOne = function ( func ) {
  1131. var extensions = Object.values( this.plugins );
  1132. extensions.push( this );
  1133. for ( var i = 0; i < extensions.length; i ++ ) {
  1134. var result = func( extensions[ i ] );
  1135. if ( result ) return result;
  1136. }
  1137. };
  1138. GLTFParser.prototype._invokeAll = function ( func ) {
  1139. var extensions = Object.values( this.plugins );
  1140. extensions.unshift( this );
  1141. var pending = [];
  1142. for ( var i = 0; i < extensions.length; i ++ ) {
  1143. pending.push( func( extensions[ i ] ) );
  1144. }
  1145. return Promise.all( pending );
  1146. };
  1147. /**
  1148. * Requests the specified dependency asynchronously, with caching.
  1149. * @param {string} type
  1150. * @param {number} index
  1151. * @return {Promise<THREE.Object3D|THREE.Material|THREE.Texture|THREE.AnimationClip|ArrayBuffer|Object>}
  1152. */
  1153. GLTFParser.prototype.getDependency = function ( type, index ) {
  1154. var cacheKey = type + ':' + index;
  1155. var dependency = this.cache.get( cacheKey );
  1156. if ( ! dependency ) {
  1157. switch ( type ) {
  1158. case 'scene':
  1159. dependency = this.loadScene( index );
  1160. break;
  1161. case 'node':
  1162. dependency = this.loadNode( index );
  1163. break;
  1164. case 'mesh':
  1165. dependency = this._invokeOne( function ( ext ) {
  1166. return ext.loadMesh && ext.loadMesh( index );
  1167. } );
  1168. break;
  1169. case 'accessor':
  1170. dependency = this.loadAccessor( index );
  1171. break;
  1172. case 'bufferView':
  1173. dependency = this._invokeOne( function ( ext ) {
  1174. return ext.loadBufferView && ext.loadBufferView( index );
  1175. } );
  1176. break;
  1177. case 'buffer':
  1178. dependency = this.loadBuffer( index );
  1179. break;
  1180. case 'material':
  1181. dependency = this._invokeOne( function ( ext ) {
  1182. return ext.loadMaterial && ext.loadMaterial( index );
  1183. } );
  1184. break;
  1185. case 'texture':
  1186. dependency = this._invokeOne( function ( ext ) {
  1187. return ext.loadTexture && ext.loadTexture( index );
  1188. } );
  1189. break;
  1190. case 'skin':
  1191. dependency = this.loadSkin( index );
  1192. break;
  1193. case 'animation':
  1194. dependency = this.loadAnimation( index );
  1195. break;
  1196. case 'camera':
  1197. dependency = this.loadCamera( index );
  1198. break;
  1199. case 'light':
  1200. dependency = this.extensions[ EXTENSIONS.KHR_LIGHTS_PUNCTUAL ].loadLight( index );
  1201. break;
  1202. default:
  1203. throw new Error( 'Unknown type: ' + type );
  1204. }
  1205. this.cache.add( cacheKey, dependency );
  1206. }
  1207. return dependency;
  1208. };
  1209. /**
  1210. * Requests all dependencies of the specified type asynchronously, with caching.
  1211. * @param {string} type
  1212. * @return {Promise<Array<Object>>}
  1213. */
  1214. GLTFParser.prototype.getDependencies = function ( type ) {
  1215. var dependencies = this.cache.get( type );
  1216. if ( ! dependencies ) {
  1217. var parser = this;
  1218. var defs = this.json[ type + ( type === 'mesh' ? 'es' : 's' ) ] || [];
  1219. dependencies = Promise.all( defs.map( function ( def, index ) {
  1220. return parser.getDependency( type, index );
  1221. } ) );
  1222. this.cache.add( type, dependencies );
  1223. }
  1224. return dependencies;
  1225. };
  1226. /**
  1227. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#buffers-and-buffer-views
  1228. * @param {number} bufferIndex
  1229. * @return {Promise<ArrayBuffer>}
  1230. */
  1231. GLTFParser.prototype.loadBuffer = function ( bufferIndex ) {
  1232. var bufferDef = this.json.buffers[ bufferIndex ];
  1233. var loader = this.fileLoader;
  1234. if ( bufferDef.type && bufferDef.type !== 'arraybuffer' ) {
  1235. throw new Error( 'THREE.GLTFLoader: ' + bufferDef.type + ' buffer type is not supported.' );
  1236. }
  1237. // If present, GLB container is required to be the first buffer.
  1238. if ( bufferDef.uri === undefined && bufferIndex === 0 ) {
  1239. return Promise.resolve( this.extensions[ EXTENSIONS.KHR_BINARY_GLTF ].body );
  1240. }
  1241. var options = this.options;
  1242. return new Promise( function ( resolve, reject ) {
  1243. loader.load( resolveURL( bufferDef.uri, options.path ), resolve, undefined, function () {
  1244. reject( new Error( 'THREE.GLTFLoader: Failed to load buffer "' + bufferDef.uri + '".' ) );
  1245. } );
  1246. } );
  1247. };
  1248. /**
  1249. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#buffers-and-buffer-views
  1250. * @param {number} bufferViewIndex
  1251. * @return {Promise<ArrayBuffer>}
  1252. */
  1253. GLTFParser.prototype.loadBufferView = function ( bufferViewIndex ) {
  1254. var bufferViewDef = this.json.bufferViews[ bufferViewIndex ];
  1255. return this.getDependency( 'buffer', bufferViewDef.buffer ).then( function ( buffer ) {
  1256. var byteLength = bufferViewDef.byteLength || 0;
  1257. var byteOffset = bufferViewDef.byteOffset || 0;
  1258. return buffer.slice( byteOffset, byteOffset + byteLength );
  1259. } );
  1260. };
  1261. /**
  1262. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#accessors
  1263. * @param {number} accessorIndex
  1264. * @return {Promise<THREE.BufferAttribute|THREE.InterleavedBufferAttribute>}
  1265. */
  1266. GLTFParser.prototype.loadAccessor = function ( accessorIndex ) {
  1267. var parser = this;
  1268. var json = this.json;
  1269. var accessorDef = this.json.accessors[ accessorIndex ];
  1270. if ( accessorDef.bufferView === undefined && accessorDef.sparse === undefined ) {
  1271. // Ignore empty accessors, which may be used to declare runtime
  1272. // information about attributes coming from another source (e.g. Draco
  1273. // compression extension).
  1274. return Promise.resolve( null );
  1275. }
  1276. var pendingBufferViews = [];
  1277. if ( accessorDef.bufferView !== undefined ) {
  1278. pendingBufferViews.push( this.getDependency( 'bufferView', accessorDef.bufferView ) );
  1279. } else {
  1280. pendingBufferViews.push( null );
  1281. }
  1282. if ( accessorDef.sparse !== undefined ) {
  1283. pendingBufferViews.push( this.getDependency( 'bufferView', accessorDef.sparse.indices.bufferView ) );
  1284. pendingBufferViews.push( this.getDependency( 'bufferView', accessorDef.sparse.values.bufferView ) );
  1285. }
  1286. return Promise.all( pendingBufferViews ).then( function ( bufferViews ) {
  1287. var bufferView = bufferViews[ 0 ];
  1288. var itemSize = WEBGL_TYPE_SIZES[ accessorDef.type ];
  1289. var TypedArray = WEBGL_COMPONENT_TYPES[ accessorDef.componentType ];
  1290. // For VEC3: itemSize is 3, elementBytes is 4, itemBytes is 12.
  1291. var elementBytes = TypedArray.BYTES_PER_ELEMENT;
  1292. var itemBytes = elementBytes * itemSize;
  1293. var byteOffset = accessorDef.byteOffset || 0;
  1294. var byteStride = accessorDef.bufferView !== undefined ? json.bufferViews[ accessorDef.bufferView ].byteStride : undefined;
  1295. var normalized = accessorDef.normalized === true;
  1296. var array, bufferAttribute;
  1297. // The buffer is not interleaved if the stride is the item size in bytes.
  1298. if ( byteStride && byteStride !== itemBytes ) {
  1299. // Each "slice" of the buffer, as defined by 'count' elements of 'byteStride' bytes, gets its own InterleavedBuffer
  1300. // This makes sure that IBA.count reflects accessor.count properly
  1301. var ibSlice = Math.floor( byteOffset / byteStride );
  1302. var ibCacheKey = 'InterleavedBuffer:' + accessorDef.bufferView + ':' + accessorDef.componentType + ':' + ibSlice + ':' + accessorDef.count;
  1303. var ib = parser.cache.get( ibCacheKey );
  1304. if ( ! ib ) {
  1305. array = new TypedArray( bufferView, ibSlice * byteStride, accessorDef.count * byteStride / elementBytes );
  1306. // Integer parameters to IB/IBA are in array elements, not bytes.
  1307. ib = new THREE.InterleavedBuffer( array, byteStride / elementBytes );
  1308. parser.cache.add( ibCacheKey, ib );
  1309. }
  1310. bufferAttribute = new THREE.InterleavedBufferAttribute( ib, itemSize, ( byteOffset % byteStride ) / elementBytes, normalized );
  1311. } else {
  1312. if ( bufferView === null ) {
  1313. array = new TypedArray( accessorDef.count * itemSize );
  1314. } else {
  1315. array = new TypedArray( bufferView, byteOffset, accessorDef.count * itemSize );
  1316. }
  1317. bufferAttribute = new THREE.BufferAttribute( array, itemSize, normalized );
  1318. }
  1319. // https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#sparse-accessors
  1320. if ( accessorDef.sparse !== undefined ) {
  1321. var itemSizeIndices = WEBGL_TYPE_SIZES.SCALAR;
  1322. var TypedArrayIndices = WEBGL_COMPONENT_TYPES[ accessorDef.sparse.indices.componentType ];
  1323. var byteOffsetIndices = accessorDef.sparse.indices.byteOffset || 0;
  1324. var byteOffsetValues = accessorDef.sparse.values.byteOffset || 0;
  1325. var sparseIndices = new TypedArrayIndices( bufferViews[ 1 ], byteOffsetIndices, accessorDef.sparse.count * itemSizeIndices );
  1326. var sparseValues = new TypedArray( bufferViews[ 2 ], byteOffsetValues, accessorDef.sparse.count * itemSize );
  1327. if ( bufferView !== null ) {
  1328. // Avoid modifying the original ArrayBuffer, if the bufferView wasn't initialized with zeroes.
  1329. bufferAttribute = new THREE.BufferAttribute( bufferAttribute.array.slice(), bufferAttribute.itemSize, bufferAttribute.normalized );
  1330. }
  1331. for ( var i = 0, il = sparseIndices.length; i < il; i ++ ) {
  1332. var index = sparseIndices[ i ];
  1333. bufferAttribute.setX( index, sparseValues[ i * itemSize ] );
  1334. if ( itemSize >= 2 ) bufferAttribute.setY( index, sparseValues[ i * itemSize + 1 ] );
  1335. if ( itemSize >= 3 ) bufferAttribute.setZ( index, sparseValues[ i * itemSize + 2 ] );
  1336. if ( itemSize >= 4 ) bufferAttribute.setW( index, sparseValues[ i * itemSize + 3 ] );
  1337. if ( itemSize >= 5 ) throw new Error( 'THREE.GLTFLoader: Unsupported itemSize in sparse BufferAttribute.' );
  1338. }
  1339. }
  1340. return bufferAttribute;
  1341. } );
  1342. };
  1343. /**
  1344. * Specification: https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#textures
  1345. * @param {number} textureIndex
  1346. * @return {Promise<THREE.Texture>}
  1347. */
  1348. GLTFParser.prototype.loadTexture = function ( textureIndex ) {
  1349. var parser = this;
  1350. var json = this.json;
  1351. var options = this.options;
  1352. var textureDef = json.textures[ textureIndex ];
  1353. var textureExtensions = textureDef.extensions || {};
  1354. var source;
  1355. if ( textureExtensions[ EXTENSIONS.MSFT_TEXTURE_DDS ] ) {
  1356. source = json.images[ textureExtensions[ EXTENSIONS.MSFT_TEXTURE_DDS ].source ];
  1357. } else {
  1358. source = json.images[ textureDef.source ];
  1359. }
  1360. var loader;
  1361. if ( source.uri ) {
  1362. loader = options.manager.getHandler( source.uri );
  1363. }
  1364. if ( ! loader ) {
  1365. loader = textureExtensions[ EXTENSIONS.MSFT_TEXTURE_DDS ]
  1366. ? parser.extensions[ EXTENSIONS.MSFT_TEXTURE_DDS ].ddsLoader
  1367. : this.textureLoader;
  1368. }
  1369. return this.loadTextureImage( textureIndex, source, loader );
  1370. };
  1371. GLTFParser.prototype.loadTextureImage = function ( textureIndex, source, loader ) {
  1372. var parser = this;
  1373. var json = this.json;
  1374. var options = this.options;
  1375. var textureDef = json.textures[ textureIndex ];
  1376. var URL = self.URL || self.webkitURL;
  1377. var sourceURI = source.uri;
  1378. var isObjectURL = false;
  1379. var hasAlpha = true;
  1380. if ( source.mimeType === 'image/jpeg' ) hasAlpha = false;
  1381. if ( source.bufferView !== undefined ) {
  1382. // Load binary image data from bufferView, if provided.
  1383. sourceURI = parser.getDependency( 'bufferView', source.bufferView ).then( function ( bufferView ) {
  1384. if ( source.mimeType === 'image/png' ) {
  1385. // https://en.wikipedia.org/wiki/Portable_Network_Graphics#File_header
  1386. hasAlpha = new DataView( bufferView, 25, 1 ).getUint8( 0, false ) === 6;
  1387. }
  1388. isObjectURL = true;
  1389. var blob = new Blob( [ bufferView ], { type: source.mimeType } );
  1390. sourceURI = URL.createObjectURL( blob );
  1391. return sourceURI;
  1392. } );
  1393. }
  1394. return Promise.resolve( sourceURI ).then( function ( sourceURI ) {
  1395. return new Promise( function ( resolve, reject ) {
  1396. var onLoad = resolve;
  1397. if ( loader.isImageBitmapLoader === true ) {
  1398. onLoad = function ( imageBitmap ) {
  1399. resolve( new THREE.CanvasTexture( imageBitmap ) );
  1400. };
  1401. }
  1402. loader.load( resolveURL( sourceURI, options.path ), onLoad, undefined, reject );
  1403. } );
  1404. } ).then( function ( texture ) {
  1405. // Clean up resources and configure Texture.
  1406. if ( isObjectURL === true ) {
  1407. URL.revokeObjectURL( sourceURI );
  1408. }
  1409. texture.flipY = false;
  1410. if ( textureDef.name ) texture.name = textureDef.name;
  1411. // When there is definitely no alpha channel in the texture, set RGBFormat to save space.
  1412. if ( ! hasAlpha ) texture.format = THREE.RGBFormat;
  1413. var samplers = json.samplers || {};
  1414. var sampler = samplers[ textureDef.sampler ] || {};
  1415. texture.magFilter = WEBGL_FILTERS[ sampler.magFilter ] || THREE.LinearFilter;
  1416. texture.minFilter = WEBGL_FILTERS[ sampler.minFilter ] || THREE.LinearMipmapLinearFilter;
  1417. texture.wrapS = WEBGL_WRAPPINGS[ sampler.wrapS ] || THREE.RepeatWrapping;
  1418. texture.wrapT = WEBGL_WRAPPINGS[ sampler.wrapT ] || THREE.RepeatWrapping;
  1419. parser.associations.set( texture, {
  1420. type: 'textures',
  1421. index: textureIndex
  1422. } );
  1423. return texture;
  1424. } );
  1425. };
  1426. /**
  1427. * Asynchronously assigns a texture to the given material parameters.
  1428. * @param {Object} materialParams
  1429. * @param {string} mapName
  1430. * @param {Object} mapDef
  1431. * @return {Promise}
  1432. */
  1433. GLTFParser.prototype.assignTexture = function ( materialParams, mapName, mapDef ) {
  1434. var parser = this;
  1435. return this.getDependency( 'texture', mapDef.index ).then( function ( texture ) {
  1436. // Materials sample aoMap from UV set 1 and other maps from UV set 0 - this can't be configured
  1437. // However, we will copy UV set 0 to UV set 1 on demand for aoMap
  1438. if ( mapDef.texCoord !== undefined && mapDef.texCoord != 0 && ! ( mapName === 'aoMap' && mapDef.texCoord == 1 ) ) {
  1439. console.warn( 'THREE.GLTFLoader: Custom UV set ' + mapDef.texCoord + ' for texture ' + mapName + ' not yet supported.' );
  1440. }
  1441. if ( parser.extensions[ EXTENSIONS.KHR_TEXTURE_TRANSFORM ] ) {
  1442. var transform = mapDef.extensions !== undefined ? mapDef.extensions[ EXTENSIONS.KHR_TEXTURE_TRANSFORM ] : undefined;
  1443. if ( transform ) {
  1444. var gltfReference = parser.associations.get( texture );
  1445. texture = parser.extensions[ EXTENSIONS.KHR_TEXTURE_TRANSFORM ].extendTexture( texture, transform );
  1446. parser.associations.set( texture, gltfReference );
  1447. }
  1448. }
  1449. materialParams[ mapName ] = texture;
  1450. } );
  1451. };
  1452. /**
  1453. * Assigns final material to a Mesh, Line, or Points instance. The instance
  1454. * already has a material (generated from the glTF material options alone)
  1455. * but reuse of the same glTF material may require multiple threejs materials
  1456. * to accomodate different primitive types, defines, etc. New materials will
  1457. * be created if necessary, and reused from a cache.
  1458. * @param {THREE.Object3D} mesh Mesh, Line, or Points instance.
  1459. */
  1460. GLTFParser.prototype.assignFinalMaterial = function ( mesh ) {
  1461. var geometry = mesh.geometry;
  1462. var material = mesh.material;
  1463. var useVertexTangents = geometry.attributes.tangent !== undefined;
  1464. var useVertexColors = geometry.attributes.color !== undefined;
  1465. var useFlatShading = geometry.attributes.normal === undefined;
  1466. var useSkinning = mesh.isSkinnedMesh === true;
  1467. var useMorphTargets = Object.keys( geometry.morphAttributes ).length > 0;
  1468. var useMorphNormals = useMorphTargets && geometry.morphAttributes.normal !== undefined;
  1469. if ( mesh.isPoints ) {
  1470. var cacheKey = 'PointsMaterial:' + material.uuid;
  1471. var pointsMaterial = this.cache.get( cacheKey );
  1472. if ( ! pointsMaterial ) {
  1473. pointsMaterial = new THREE.PointsMaterial();
  1474. THREE.Material.prototype.copy.call( pointsMaterial, material );
  1475. pointsMaterial.color.copy( material.color );
  1476. pointsMaterial.map = material.map;
  1477. pointsMaterial.sizeAttenuation = false; // glTF spec says points should be 1px
  1478. this.cache.add( cacheKey, pointsMaterial );
  1479. }
  1480. material = pointsMaterial;
  1481. } else if ( mesh.isLine ) {
  1482. var cacheKey = 'LineBasicMaterial:' + material.uuid;
  1483. var lineMaterial = this.cache.get( cacheKey );
  1484. if ( ! lineMaterial ) {
  1485. lineMaterial = new THREE.LineBasicMaterial();
  1486. THREE.Material.prototype.copy.call( lineMaterial, material );
  1487. lineMaterial.color.copy( material.color );
  1488. this.cache.add( cacheKey, lineMaterial );
  1489. }
  1490. material = lineMaterial;
  1491. }
  1492. // Clone the material if it will be modified
  1493. if ( useVertexTangents || useVertexColors || useFlatShading || useSkinning || useMorphTargets ) {
  1494. var cacheKey = 'ClonedMaterial:' + material.uuid + ':';
  1495. if ( material.isGLTFSpecularGlossinessMaterial ) cacheKey += 'specular-glossiness:';
  1496. if ( useSkinning ) cacheKey += 'skinning:';
  1497. if ( useVertexTangents ) cacheKey += 'vertex-tangents:';
  1498. if ( useVertexColors ) cacheKey += 'vertex-colors:';
  1499. if ( useFlatShading ) cacheKey += 'flat-shading:';
  1500. if ( useMorphTargets ) cacheKey += 'morph-targets:';
  1501. if ( useMorphNormals ) cacheKey += 'morph-normals:';
  1502. var cachedMaterial = this.cache.get( cacheKey );
  1503. if ( ! cachedMaterial ) {
  1504. cachedMaterial = material.clone();
  1505. if ( useSkinning ) cachedMaterial.skinning = true;
  1506. if ( useVertexTangents ) cachedMaterial.vertexTangents = true;
  1507. if ( useVertexColors ) cachedMaterial.vertexColors = true;
  1508. if ( useFlatShading ) cachedMaterial.flatShading = true;
  1509. if ( useMorphTargets ) cachedMaterial.morphTargets = true;
  1510. if ( useMorphNormals ) cachedMaterial.morphNormals = true;
  1511. this.cache.add( cacheKey, cachedMaterial );
  1512. this.associations.set( cachedMaterial, this.associations.get( material ) );
  1513. }
  1514. material = cachedMaterial;
  1515. }
  1516. // workarounds for mesh and geometry
  1517. if ( material.aoMap && geometry.attributes.uv2 === undefined && geometry.attributes.uv !== undefined ) {
  1518. geometry.setAttribute( 'uv2', geometry.attributes.uv );
  1519. }
  1520. // https://github.com/mrdoob/three.js/issues/11438#issuecomment-507003995
  1521. if ( material.normalScale && ! useVertexTangents ) {
  1522. material.normalScale.y = - material.normalScale.y;
  1523. }
  1524. if ( material.clearcoatNormalScale && ! useVertexTangents ) {
  1525. material.clearcoatNormalScale.y = - material.clearcoatNormalScale.y;
  1526. }
  1527. mesh.material = material;
  1528. };
  1529. GLTFParser.prototype.getMaterialType = function ( /* materialIndex */ ) {
  1530. return THREE.MeshStandardMaterial;
  1531. };
  1532. /**
  1533. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#materials
  1534. * @param {number} materialIndex
  1535. * @return {Promise<THREE.Material>}
  1536. */
  1537. GLTFParser.prototype.loadMaterial = function ( materialIndex ) {
  1538. var parser = this;
  1539. var json = this.json;
  1540. var extensions = this.extensions;
  1541. var materialDef = json.materials[ materialIndex ];
  1542. var materialType;
  1543. var materialParams = {};
  1544. var materialExtensions = materialDef.extensions || {};
  1545. var pending = [];
  1546. if ( materialExtensions[ EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS ] ) {
  1547. var sgExtension = extensions[ EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS ];
  1548. materialType = sgExtension.getMaterialType();
  1549. pending.push( sgExtension.extendParams( materialParams, materialDef, parser ) );
  1550. } else if ( materialExtensions[ EXTENSIONS.KHR_MATERIALS_UNLIT ] ) {
  1551. var kmuExtension = extensions[ EXTENSIONS.KHR_MATERIALS_UNLIT ];
  1552. materialType = kmuExtension.getMaterialType();
  1553. pending.push( kmuExtension.extendParams( materialParams, materialDef, parser ) );
  1554. } else {
  1555. // Specification:
  1556. // https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#metallic-roughness-material
  1557. var metallicRoughness = materialDef.pbrMetallicRoughness || {};
  1558. materialParams.color = new THREE.Color( 1.0, 1.0, 1.0 );
  1559. materialParams.opacity = 1.0;
  1560. if ( Array.isArray( metallicRoughness.baseColorFactor ) ) {
  1561. var array = metallicRoughness.baseColorFactor;
  1562. materialParams.color.fromArray( array );
  1563. materialParams.opacity = array[ 3 ];
  1564. }
  1565. if ( metallicRoughness.baseColorTexture !== undefined ) {
  1566. pending.push( parser.assignTexture( materialParams, 'map', metallicRoughness.baseColorTexture ) );
  1567. }
  1568. materialParams.metalness = metallicRoughness.metallicFactor !== undefined ? metallicRoughness.metallicFactor : 1.0;
  1569. materialParams.roughness = metallicRoughness.roughnessFactor !== undefined ? metallicRoughness.roughnessFactor : 1.0;
  1570. if ( metallicRoughness.metallicRoughnessTexture !== undefined ) {
  1571. pending.push( parser.assignTexture( materialParams, 'metalnessMap', metallicRoughness.metallicRoughnessTexture ) );
  1572. pending.push( parser.assignTexture( materialParams, 'roughnessMap', metallicRoughness.metallicRoughnessTexture ) );
  1573. }
  1574. materialType = this._invokeOne( function ( ext ) {
  1575. return ext.getMaterialType && ext.getMaterialType( materialIndex );
  1576. } );
  1577. pending.push( this._invokeAll( function ( ext ) {
  1578. return ext.extendMaterialParams && ext.extendMaterialParams( materialIndex, materialParams );
  1579. } ) );
  1580. }
  1581. if ( materialDef.doubleSided === true ) {
  1582. materialParams.side = THREE.DoubleSide;
  1583. }
  1584. var alphaMode = materialDef.alphaMode || ALPHA_MODES.OPAQUE;
  1585. if ( alphaMode === ALPHA_MODES.BLEND ) {
  1586. materialParams.transparent = true;
  1587. // See: https://github.com/mrdoob/three.js/issues/17706
  1588. materialParams.depthWrite = false;
  1589. } else {
  1590. materialParams.transparent = false;
  1591. if ( alphaMode === ALPHA_MODES.MASK ) {
  1592. materialParams.alphaTest = materialDef.alphaCutoff !== undefined ? materialDef.alphaCutoff : 0.5;
  1593. }
  1594. }
  1595. if ( materialDef.normalTexture !== undefined && materialType !== THREE.MeshBasicMaterial ) {
  1596. pending.push( parser.assignTexture( materialParams, 'normalMap', materialDef.normalTexture ) );
  1597. materialParams.normalScale = new THREE.Vector2( 1, 1 );
  1598. if ( materialDef.normalTexture.scale !== undefined ) {
  1599. materialParams.normalScale.set( materialDef.normalTexture.scale, materialDef.normalTexture.scale );
  1600. }
  1601. }
  1602. if ( materialDef.occlusionTexture !== undefined && materialType !== THREE.MeshBasicMaterial ) {
  1603. pending.push( parser.assignTexture( materialParams, 'aoMap', materialDef.occlusionTexture ) );
  1604. if ( materialDef.occlusionTexture.strength !== undefined ) {
  1605. materialParams.aoMapIntensity = materialDef.occlusionTexture.strength;
  1606. }
  1607. }
  1608. if ( materialDef.emissiveFactor !== undefined && materialType !== THREE.MeshBasicMaterial ) {
  1609. materialParams.emissive = new THREE.Color().fromArray( materialDef.emissiveFactor );
  1610. }
  1611. if ( materialDef.emissiveTexture !== undefined && materialType !== THREE.MeshBasicMaterial ) {
  1612. pending.push( parser.assignTexture( materialParams, 'emissiveMap', materialDef.emissiveTexture ) );
  1613. }
  1614. return Promise.all( pending ).then( function () {
  1615. var material;
  1616. if ( materialType === GLTFMeshStandardSGMaterial ) {
  1617. material = extensions[ EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS ].createMaterial( materialParams );
  1618. } else {
  1619. material = new materialType( materialParams );
  1620. }
  1621. if ( materialDef.name ) material.name = materialDef.name;
  1622. // baseColorTexture, emissiveTexture, and specularGlossinessTexture use sRGB encoding.
  1623. if ( material.map ) material.map.encoding = THREE.sRGBEncoding;
  1624. if ( material.emissiveMap ) material.emissiveMap.encoding = THREE.sRGBEncoding;
  1625. assignExtrasToUserData( material, materialDef );
  1626. parser.associations.set( material, { type: 'materials', index: materialIndex } );
  1627. if ( materialDef.extensions ) addUnknownExtensionsToUserData( extensions, material, materialDef );
  1628. return material;
  1629. } );
  1630. };
  1631. /**
  1632. * @param {THREE.BufferGeometry} geometry
  1633. * @param {GLTF.Primitive} primitiveDef
  1634. * @param {GLTFParser} parser
  1635. */
  1636. function computeBounds( geometry, primitiveDef, parser ) {
  1637. var attributes = primitiveDef.attributes;
  1638. var box = new THREE.Box3();
  1639. if ( attributes.POSITION !== undefined ) {
  1640. var accessor = parser.json.accessors[ attributes.POSITION ];
  1641. var min = accessor.min;
  1642. var max = accessor.max;
  1643. // glTF requires 'min' and 'max', but VRM (which extends glTF) currently ignores that requirement.
  1644. if ( min !== undefined && max !== undefined ) {
  1645. box.set(
  1646. new THREE.Vector3( min[ 0 ], min[ 1 ], min[ 2 ] ),
  1647. new THREE.Vector3( max[ 0 ], max[ 1 ], max[ 2 ] ) );
  1648. } else {
  1649. console.warn( 'THREE.GLTFLoader: Missing min/max properties for accessor POSITION.' );
  1650. return;
  1651. }
  1652. } else {
  1653. return;
  1654. }
  1655. var targets = primitiveDef.targets;
  1656. if ( targets !== undefined ) {
  1657. var maxDisplacement = new THREE.Vector3();
  1658. var vector = new THREE.Vector3();
  1659. for ( var i = 0, il = targets.length; i < il; i ++ ) {
  1660. var target = targets[ i ];
  1661. if ( target.POSITION !== undefined ) {
  1662. var accessor = parser.json.accessors[ target.POSITION ];
  1663. var min = accessor.min;
  1664. var max = accessor.max;
  1665. // glTF requires 'min' and 'max', but VRM (which extends glTF) currently ignores that requirement.
  1666. if ( min !== undefined && max !== undefined ) {
  1667. // we need to get max of absolute components because target weight is [-1,1]
  1668. vector.setX( Math.max( Math.abs( min[ 0 ] ), Math.abs( max[ 0 ] ) ) );
  1669. vector.setY( Math.max( Math.abs( min[ 1 ] ), Math.abs( max[ 1 ] ) ) );
  1670. vector.setZ( Math.max( Math.abs( min[ 2 ] ), Math.abs( max[ 2 ] ) ) );
  1671. // Note: this assumes that the sum of all weights is at most 1. This isn't quite correct - it's more conservative
  1672. // to assume that each target can have a max weight of 1. However, for some use cases - notably, when morph targets
  1673. // are used to implement key-frame animations and as such only two are active at a time - this results in very large
  1674. // boxes. So for now we make a box that's sometimes a touch too small but is hopefully mostly of reasonable size.
  1675. maxDisplacement.max( vector );
  1676. } else {
  1677. console.warn( 'THREE.GLTFLoader: Missing min/max properties for accessor POSITION.' );
  1678. }
  1679. }
  1680. }
  1681. // As per comment above this box isn't conservative, but has a reasonable size for a very large number of morph targets.
  1682. box.expandByVector( maxDisplacement );
  1683. }
  1684. geometry.boundingBox = box;
  1685. var sphere = new THREE.Sphere();
  1686. box.getCenter( sphere.center );
  1687. sphere.radius = box.min.distanceTo( box.max ) / 2;
  1688. geometry.boundingSphere = sphere;
  1689. }
  1690. /**
  1691. * @param {THREE.BufferGeometry} geometry
  1692. * @param {GLTF.Primitive} primitiveDef
  1693. * @param {GLTFParser} parser
  1694. * @return {Promise<THREE.BufferGeometry>}
  1695. */
  1696. function addPrimitiveAttributes( geometry, primitiveDef, parser ) {
  1697. var attributes = primitiveDef.attributes;
  1698. var pending = [];
  1699. function assignAttributeAccessor( accessorIndex, attributeName ) {
  1700. return parser.getDependency( 'accessor', accessorIndex )
  1701. .then( function ( accessor ) {
  1702. geometry.setAttribute( attributeName, accessor );
  1703. } );
  1704. }
  1705. for ( var gltfAttributeName in attributes ) {
  1706. var threeAttributeName = ATTRIBUTES[ gltfAttributeName ] || gltfAttributeName.toLowerCase();
  1707. // Skip attributes already provided by e.g. Draco extension.
  1708. if ( threeAttributeName in geometry.attributes ) continue;
  1709. pending.push( assignAttributeAccessor( attributes[ gltfAttributeName ], threeAttributeName ) );
  1710. }
  1711. if ( primitiveDef.indices !== undefined && ! geometry.index ) {
  1712. var accessor = parser.getDependency( 'accessor', primitiveDef.indices ).then( function ( accessor ) {
  1713. geometry.setIndex( accessor );
  1714. } );
  1715. pending.push( accessor );
  1716. }
  1717. assignExtrasToUserData( geometry, primitiveDef );
  1718. computeBounds( geometry, primitiveDef, parser );
  1719. return Promise.all( pending ).then( function () {
  1720. return primitiveDef.targets !== undefined
  1721. ? addMorphTargets( geometry, primitiveDef.targets, parser )
  1722. : geometry;
  1723. } );
  1724. }
  1725. /**
  1726. * @param {THREE.BufferGeometry} geometry
  1727. * @param {Number} drawMode
  1728. * @return {THREE.BufferGeometry}
  1729. */
  1730. function toTrianglesDrawMode( geometry, drawMode ) {
  1731. var index = geometry.getIndex();
  1732. // generate index if not present
  1733. if ( index === null ) {
  1734. var indices = [];
  1735. var position = geometry.getAttribute( 'position' );
  1736. if ( position !== undefined ) {
  1737. for ( var i = 0; i < position.count; i ++ ) {
  1738. indices.push( i );
  1739. }
  1740. geometry.setIndex( indices );
  1741. index = geometry.getIndex();
  1742. } else {
  1743. console.error( 'THREE.GLTFLoader.toTrianglesDrawMode(): Undefined position attribute. Processing not possible.' );
  1744. return geometry;
  1745. }
  1746. }
  1747. //
  1748. var numberOfTriangles = index.count - 2;
  1749. var newIndices = [];
  1750. if ( drawMode === THREE.TriangleFanDrawMode ) {
  1751. // gl.TRIANGLE_FAN
  1752. for ( var i = 1; i <= numberOfTriangles; i ++ ) {
  1753. newIndices.push( index.getX( 0 ) );
  1754. newIndices.push( index.getX( i ) );
  1755. newIndices.push( index.getX( i + 1 ) );
  1756. }
  1757. } else {
  1758. // gl.TRIANGLE_STRIP
  1759. for ( var i = 0; i < numberOfTriangles; i ++ ) {
  1760. if ( i % 2 === 0 ) {
  1761. newIndices.push( index.getX( i ) );
  1762. newIndices.push( index.getX( i + 1 ) );
  1763. newIndices.push( index.getX( i + 2 ) );
  1764. } else {
  1765. newIndices.push( index.getX( i + 2 ) );
  1766. newIndices.push( index.getX( i + 1 ) );
  1767. newIndices.push( index.getX( i ) );
  1768. }
  1769. }
  1770. }
  1771. if ( ( newIndices.length / 3 ) !== numberOfTriangles ) {
  1772. console.error( 'THREE.GLTFLoader.toTrianglesDrawMode(): Unable to generate correct amount of triangles.' );
  1773. }
  1774. // build final geometry
  1775. var newGeometry = geometry.clone();
  1776. newGeometry.setIndex( newIndices );
  1777. return newGeometry;
  1778. }
  1779. /**
  1780. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#geometry
  1781. *
  1782. * Creates BufferGeometries from primitives.
  1783. *
  1784. * @param {Array<GLTF.Primitive>} primitives
  1785. * @return {Promise<Array<THREE.BufferGeometry>>}
  1786. */
  1787. GLTFParser.prototype.loadGeometries = function ( primitives ) {
  1788. var parser = this;
  1789. var extensions = this.extensions;
  1790. var cache = this.primitiveCache;
  1791. function createDracoPrimitive( primitive ) {
  1792. return extensions[ EXTENSIONS.KHR_DRACO_MESH_COMPRESSION ]
  1793. .decodePrimitive( primitive, parser )
  1794. .then( function ( geometry ) {
  1795. return addPrimitiveAttributes( geometry, primitive, parser );
  1796. } );
  1797. }
  1798. var pending = [];
  1799. for ( var i = 0, il = primitives.length; i < il; i ++ ) {
  1800. var primitive = primitives[ i ];
  1801. var cacheKey = createPrimitiveKey( primitive );
  1802. // See if we've already created this geometry
  1803. var cached = cache[ cacheKey ];
  1804. if ( cached ) {
  1805. // Use the cached geometry if it exists
  1806. pending.push( cached.promise );
  1807. } else {
  1808. var geometryPromise;
  1809. if ( primitive.extensions && primitive.extensions[ EXTENSIONS.KHR_DRACO_MESH_COMPRESSION ] ) {
  1810. // Use DRACO geometry if available
  1811. geometryPromise = createDracoPrimitive( primitive );
  1812. } else {
  1813. // Otherwise create a new geometry
  1814. geometryPromise = addPrimitiveAttributes( new THREE.BufferGeometry(), primitive, parser );
  1815. }
  1816. // Cache this geometry
  1817. cache[ cacheKey ] = { primitive: primitive, promise: geometryPromise };
  1818. pending.push( geometryPromise );
  1819. }
  1820. }
  1821. return Promise.all( pending );
  1822. };
  1823. /**
  1824. * Specification: https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#meshes
  1825. * @param {number} meshIndex
  1826. * @return {Promise<THREE.Group|THREE.Mesh|THREE.SkinnedMesh>}
  1827. */
  1828. GLTFParser.prototype.loadMesh = function ( meshIndex ) {
  1829. var parser = this;
  1830. var json = this.json;
  1831. var meshDef = json.meshes[ meshIndex ];
  1832. var primitives = meshDef.primitives;
  1833. var pending = [];
  1834. for ( var i = 0, il = primitives.length; i < il; i ++ ) {
  1835. var material = primitives[ i ].material === undefined
  1836. ? createDefaultMaterial( this.cache )
  1837. : this.getDependency( 'material', primitives[ i ].material );
  1838. pending.push( material );
  1839. }
  1840. pending.push( parser.loadGeometries( primitives ) );
  1841. return Promise.all( pending ).then( function ( results ) {
  1842. var materials = results.slice( 0, results.length - 1 );
  1843. var geometries = results[ results.length - 1 ];
  1844. var meshes = [];
  1845. for ( var i = 0, il = geometries.length; i < il; i ++ ) {
  1846. var geometry = geometries[ i ];
  1847. var primitive = primitives[ i ];
  1848. // 1. create Mesh
  1849. var mesh;
  1850. var material = materials[ i ];
  1851. if ( primitive.mode === WEBGL_CONSTANTS.TRIANGLES ||
  1852. primitive.mode === WEBGL_CONSTANTS.TRIANGLE_STRIP ||
  1853. primitive.mode === WEBGL_CONSTANTS.TRIANGLE_FAN ||
  1854. primitive.mode === undefined ) {
  1855. // .isSkinnedMesh isn't in glTF spec. See ._markDefs()
  1856. mesh = meshDef.isSkinnedMesh === true
  1857. ? new THREE.SkinnedMesh( geometry, material )
  1858. : new THREE.Mesh( geometry, material );
  1859. if ( mesh.isSkinnedMesh === true && ! mesh.geometry.attributes.skinWeight.normalized ) {
  1860. // we normalize floating point skin weight array to fix malformed assets (see #15319)
  1861. // it's important to skip this for non-float32 data since normalizeSkinWeights assumes non-normalized inputs
  1862. mesh.normalizeSkinWeights();
  1863. }
  1864. if ( primitive.mode === WEBGL_CONSTANTS.TRIANGLE_STRIP ) {
  1865. mesh.geometry = toTrianglesDrawMode( mesh.geometry, THREE.TriangleStripDrawMode );
  1866. } else if ( primitive.mode === WEBGL_CONSTANTS.TRIANGLE_FAN ) {
  1867. mesh.geometry = toTrianglesDrawMode( mesh.geometry, THREE.TriangleFanDrawMode );
  1868. }
  1869. } else if ( primitive.mode === WEBGL_CONSTANTS.LINES ) {
  1870. mesh = new THREE.LineSegments( geometry, material );
  1871. } else if ( primitive.mode === WEBGL_CONSTANTS.LINE_STRIP ) {
  1872. mesh = new THREE.Line( geometry, material );
  1873. } else if ( primitive.mode === WEBGL_CONSTANTS.LINE_LOOP ) {
  1874. mesh = new THREE.LineLoop( geometry, material );
  1875. } else if ( primitive.mode === WEBGL_CONSTANTS.POINTS ) {
  1876. mesh = new THREE.Points( geometry, material );
  1877. } else {
  1878. throw new Error( 'THREE.GLTFLoader: Primitive mode unsupported: ' + primitive.mode );
  1879. }
  1880. if ( Object.keys( mesh.geometry.morphAttributes ).length > 0 ) {
  1881. updateMorphTargets( mesh, meshDef );
  1882. }
  1883. mesh.name = meshDef.name || ( 'mesh_' + meshIndex );
  1884. if ( geometries.length > 1 ) mesh.name += '_' + i;
  1885. assignExtrasToUserData( mesh, meshDef );
  1886. parser.assignFinalMaterial( mesh );
  1887. meshes.push( mesh );
  1888. }
  1889. if ( meshes.length === 1 ) {
  1890. return meshes[ 0 ];
  1891. }
  1892. var group = new THREE.Group();
  1893. for ( var i = 0, il = meshes.length; i < il; i ++ ) {
  1894. group.add( meshes[ i ] );
  1895. }
  1896. return group;
  1897. } );
  1898. };
  1899. /**
  1900. * Specification: https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#cameras
  1901. * @param {number} cameraIndex
  1902. * @return {Promise<THREE.Camera>}
  1903. */
  1904. GLTFParser.prototype.loadCamera = function ( cameraIndex ) {
  1905. var camera;
  1906. var cameraDef = this.json.cameras[ cameraIndex ];
  1907. var params = cameraDef[ cameraDef.type ];
  1908. if ( ! params ) {
  1909. console.warn( 'THREE.GLTFLoader: Missing camera parameters.' );
  1910. return;
  1911. }
  1912. if ( cameraDef.type === 'perspective' ) {
  1913. camera = new THREE.PerspectiveCamera( THREE.MathUtils.radToDeg( params.yfov ), params.aspectRatio || 1, params.znear || 1, params.zfar || 2e6 );
  1914. } else if ( cameraDef.type === 'orthographic' ) {
  1915. camera = new THREE.OrthographicCamera( - params.xmag, params.xmag, params.ymag, - params.ymag, params.znear, params.zfar );
  1916. }
  1917. if ( cameraDef.name ) camera.name = cameraDef.name;
  1918. assignExtrasToUserData( camera, cameraDef );
  1919. return Promise.resolve( camera );
  1920. };
  1921. /**
  1922. * Specification: https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#skins
  1923. * @param {number} skinIndex
  1924. * @return {Promise<Object>}
  1925. */
  1926. GLTFParser.prototype.loadSkin = function ( skinIndex ) {
  1927. var skinDef = this.json.skins[ skinIndex ];
  1928. var skinEntry = { joints: skinDef.joints };
  1929. if ( skinDef.inverseBindMatrices === undefined ) {
  1930. return Promise.resolve( skinEntry );
  1931. }
  1932. return this.getDependency( 'accessor', skinDef.inverseBindMatrices ).then( function ( accessor ) {
  1933. skinEntry.inverseBindMatrices = accessor;
  1934. return skinEntry;
  1935. } );
  1936. };
  1937. /**
  1938. * Specification: https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#animations
  1939. * @param {number} animationIndex
  1940. * @return {Promise<THREE.AnimationClip>}
  1941. */
  1942. GLTFParser.prototype.loadAnimation = function ( animationIndex ) {
  1943. var json = this.json;
  1944. var animationDef = json.animations[ animationIndex ];
  1945. var pendingNodes = [];
  1946. var pendingInputAccessors = [];
  1947. var pendingOutputAccessors = [];
  1948. var pendingSamplers = [];
  1949. var pendingTargets = [];
  1950. for ( var i = 0, il = animationDef.channels.length; i < il; i ++ ) {
  1951. var channel = animationDef.channels[ i ];
  1952. var sampler = animationDef.samplers[ channel.sampler ];
  1953. var target = channel.target;
  1954. var name = target.node !== undefined ? target.node : target.id; // NOTE: target.id is deprecated.
  1955. var input = animationDef.parameters !== undefined ? animationDef.parameters[ sampler.input ] : sampler.input;
  1956. var output = animationDef.parameters !== undefined ? animationDef.parameters[ sampler.output ] : sampler.output;
  1957. pendingNodes.push( this.getDependency( 'node', name ) );
  1958. pendingInputAccessors.push( this.getDependency( 'accessor', input ) );
  1959. pendingOutputAccessors.push( this.getDependency( 'accessor', output ) );
  1960. pendingSamplers.push( sampler );
  1961. pendingTargets.push( target );
  1962. }
  1963. return Promise.all( [
  1964. Promise.all( pendingNodes ),
  1965. Promise.all( pendingInputAccessors ),
  1966. Promise.all( pendingOutputAccessors ),
  1967. Promise.all( pendingSamplers ),
  1968. Promise.all( pendingTargets )
  1969. ] ).then( function ( dependencies ) {
  1970. var nodes = dependencies[ 0 ];
  1971. var inputAccessors = dependencies[ 1 ];
  1972. var outputAccessors = dependencies[ 2 ];
  1973. var samplers = dependencies[ 3 ];
  1974. var targets = dependencies[ 4 ];
  1975. var tracks = [];
  1976. for ( var i = 0, il = nodes.length; i < il; i ++ ) {
  1977. var node = nodes[ i ];
  1978. var inputAccessor = inputAccessors[ i ];
  1979. var outputAccessor = outputAccessors[ i ];
  1980. var sampler = samplers[ i ];
  1981. var target = targets[ i ];
  1982. if ( node === undefined ) continue;
  1983. node.updateMatrix();
  1984. node.matrixAutoUpdate = true;
  1985. var TypedKeyframeTrack;
  1986. switch ( PATH_PROPERTIES[ target.path ] ) {
  1987. case PATH_PROPERTIES.weights:
  1988. TypedKeyframeTrack = THREE.NumberKeyframeTrack;
  1989. break;
  1990. case PATH_PROPERTIES.rotation:
  1991. TypedKeyframeTrack = THREE.QuaternionKeyframeTrack;
  1992. break;
  1993. case PATH_PROPERTIES.position:
  1994. case PATH_PROPERTIES.scale:
  1995. default:
  1996. TypedKeyframeTrack = THREE.VectorKeyframeTrack;
  1997. break;
  1998. }
  1999. var targetName = node.name ? node.name : node.uuid;
  2000. var interpolation = sampler.interpolation !== undefined ? INTERPOLATION[ sampler.interpolation ] : THREE.InterpolateLinear;
  2001. var targetNames = [];
  2002. if ( PATH_PROPERTIES[ target.path ] === PATH_PROPERTIES.weights ) {
  2003. // Node may be a THREE.Group (glTF mesh with several primitives) or a THREE.Mesh.
  2004. node.traverse( function ( object ) {
  2005. if ( object.isMesh === true && object.morphTargetInfluences ) {
  2006. targetNames.push( object.name ? object.name : object.uuid );
  2007. }
  2008. } );
  2009. } else {
  2010. targetNames.push( targetName );
  2011. }
  2012. var outputArray = outputAccessor.array;
  2013. if ( outputAccessor.normalized ) {
  2014. var scale;
  2015. if ( outputArray.constructor === Int8Array ) {
  2016. scale = 1 / 127;
  2017. } else if ( outputArray.constructor === Uint8Array ) {
  2018. scale = 1 / 255;
  2019. } else if ( outputArray.constructor == Int16Array ) {
  2020. scale = 1 / 32767;
  2021. } else if ( outputArray.constructor === Uint16Array ) {
  2022. scale = 1 / 65535;
  2023. } else {
  2024. throw new Error( 'THREE.GLTFLoader: Unsupported output accessor component type.' );
  2025. }
  2026. var scaled = new Float32Array( outputArray.length );
  2027. for ( var j = 0, jl = outputArray.length; j < jl; j ++ ) {
  2028. scaled[ j ] = outputArray[ j ] * scale;
  2029. }
  2030. outputArray = scaled;
  2031. }
  2032. for ( var j = 0, jl = targetNames.length; j < jl; j ++ ) {
  2033. var track = new TypedKeyframeTrack(
  2034. targetNames[ j ] + '.' + PATH_PROPERTIES[ target.path ],
  2035. inputAccessor.array,
  2036. outputArray,
  2037. interpolation
  2038. );
  2039. // Override interpolation with custom factory method.
  2040. if ( sampler.interpolation === 'CUBICSPLINE' ) {
  2041. track.createInterpolant = function InterpolantFactoryMethodGLTFCubicSpline( result ) {
  2042. // A CUBICSPLINE keyframe in glTF has three output values for each input value,
  2043. // representing inTangent, splineVertex, and outTangent. As a result, track.getValueSize()
  2044. // must be divided by three to get the interpolant's sampleSize argument.
  2045. return new GLTFCubicSplineInterpolant( this.times, this.values, this.getValueSize() / 3, result );
  2046. };
  2047. // Mark as CUBICSPLINE. `track.getInterpolation()` doesn't support custom interpolants.
  2048. track.createInterpolant.isInterpolantFactoryMethodGLTFCubicSpline = true;
  2049. }
  2050. tracks.push( track );
  2051. }
  2052. }
  2053. var name = animationDef.name ? animationDef.name : 'animation_' + animationIndex;
  2054. return new THREE.AnimationClip( name, undefined, tracks );
  2055. } );
  2056. };
  2057. /**
  2058. * Specification: https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#nodes-and-hierarchy
  2059. * @param {number} nodeIndex
  2060. * @return {Promise<THREE.Object3D>}
  2061. */
  2062. GLTFParser.prototype.loadNode = function ( nodeIndex ) {
  2063. var json = this.json;
  2064. var extensions = this.extensions;
  2065. var parser = this;
  2066. var nodeDef = json.nodes[ nodeIndex ];
  2067. return ( function () {
  2068. var pending = [];
  2069. if ( nodeDef.mesh !== undefined ) {
  2070. pending.push( parser.getDependency( 'mesh', nodeDef.mesh ).then( function ( mesh ) {
  2071. var node = parser._getNodeRef( parser.meshCache, nodeDef.mesh, mesh );
  2072. // if weights are provided on the node, override weights on the mesh.
  2073. if ( nodeDef.weights !== undefined ) {
  2074. node.traverse( function ( o ) {
  2075. if ( ! o.isMesh ) return;
  2076. for ( var i = 0, il = nodeDef.weights.length; i < il; i ++ ) {
  2077. o.morphTargetInfluences[ i ] = nodeDef.weights[ i ];
  2078. }
  2079. } );
  2080. }
  2081. return node;
  2082. } ) );
  2083. }
  2084. if ( nodeDef.camera !== undefined ) {
  2085. pending.push( parser.getDependency( 'camera', nodeDef.camera ).then( function ( camera ) {
  2086. return parser._getNodeRef( parser.cameraCache, nodeDef.camera, camera );
  2087. } ) );
  2088. }
  2089. if ( nodeDef.extensions
  2090. && nodeDef.extensions[ EXTENSIONS.KHR_LIGHTS_PUNCTUAL ]
  2091. && nodeDef.extensions[ EXTENSIONS.KHR_LIGHTS_PUNCTUAL ].light !== undefined ) {
  2092. var lightIndex = nodeDef.extensions[ EXTENSIONS.KHR_LIGHTS_PUNCTUAL ].light;
  2093. pending.push( parser.getDependency( 'light', lightIndex ).then( function ( light ) {
  2094. return parser._getNodeRef( parser.lightCache, lightIndex, light );
  2095. } ) );
  2096. }
  2097. return Promise.all( pending );
  2098. }() ).then( function ( objects ) {
  2099. var node;
  2100. // .isBone isn't in glTF spec. See ._markDefs
  2101. if ( nodeDef.isBone === true ) {
  2102. node = new THREE.Bone();
  2103. } else if ( objects.length > 1 ) {
  2104. node = new THREE.Group();
  2105. } else if ( objects.length === 1 ) {
  2106. node = objects[ 0 ];
  2107. } else {
  2108. node = new THREE.Object3D();
  2109. }
  2110. if ( node !== objects[ 0 ] ) {
  2111. for ( var i = 0, il = objects.length; i < il; i ++ ) {
  2112. node.add( objects[ i ] );
  2113. }
  2114. }
  2115. if ( nodeDef.name ) {
  2116. node.userData.name = nodeDef.name;
  2117. node.name = THREE.PropertyBinding.sanitizeNodeName( nodeDef.name );
  2118. }
  2119. assignExtrasToUserData( node, nodeDef );
  2120. if ( nodeDef.extensions ) addUnknownExtensionsToUserData( extensions, node, nodeDef );
  2121. if ( nodeDef.matrix !== undefined ) {
  2122. var matrix = new THREE.Matrix4();
  2123. matrix.fromArray( nodeDef.matrix );
  2124. node.applyMatrix4( matrix );
  2125. } else {
  2126. if ( nodeDef.translation !== undefined ) {
  2127. node.position.fromArray( nodeDef.translation );
  2128. }
  2129. if ( nodeDef.rotation !== undefined ) {
  2130. node.quaternion.fromArray( nodeDef.rotation );
  2131. }
  2132. if ( nodeDef.scale !== undefined ) {
  2133. node.scale.fromArray( nodeDef.scale );
  2134. }
  2135. }
  2136. parser.associations.set( node, { type: 'nodes', index: nodeIndex } );
  2137. return node;
  2138. } );
  2139. };
  2140. /**
  2141. * Specification: https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#scenes
  2142. * @param {number} sceneIndex
  2143. * @return {Promise<THREE.Group>}
  2144. */
  2145. GLTFParser.prototype.loadScene = function () {
  2146. // scene node hierachy builder
  2147. function buildNodeHierachy( nodeId, parentObject, json, parser ) {
  2148. var nodeDef = json.nodes[ nodeId ];
  2149. return parser.getDependency( 'node', nodeId ).then( function ( node ) {
  2150. if ( nodeDef.skin === undefined ) return node;
  2151. // build skeleton here as well
  2152. var skinEntry;
  2153. return parser.getDependency( 'skin', nodeDef.skin ).then( function ( skin ) {
  2154. skinEntry = skin;
  2155. var pendingJoints = [];
  2156. for ( var i = 0, il = skinEntry.joints.length; i < il; i ++ ) {
  2157. pendingJoints.push( parser.getDependency( 'node', skinEntry.joints[ i ] ) );
  2158. }
  2159. return Promise.all( pendingJoints );
  2160. } ).then( function ( jointNodes ) {
  2161. node.traverse( function ( mesh ) {
  2162. if ( ! mesh.isMesh ) return;
  2163. var bones = [];
  2164. var boneInverses = [];
  2165. for ( var j = 0, jl = jointNodes.length; j < jl; j ++ ) {
  2166. var jointNode = jointNodes[ j ];
  2167. if ( jointNode ) {
  2168. bones.push( jointNode );
  2169. var mat = new THREE.Matrix4();
  2170. if ( skinEntry.inverseBindMatrices !== undefined ) {
  2171. mat.fromArray( skinEntry.inverseBindMatrices.array, j * 16 );
  2172. }
  2173. boneInverses.push( mat );
  2174. } else {
  2175. console.warn( 'THREE.GLTFLoader: Joint "%s" could not be found.', skinEntry.joints[ j ] );
  2176. }
  2177. }
  2178. mesh.bind( new THREE.Skeleton( bones, boneInverses ), mesh.matrixWorld );
  2179. } );
  2180. return node;
  2181. } );
  2182. } ).then( function ( node ) {
  2183. // build node hierachy
  2184. parentObject.add( node );
  2185. var pending = [];
  2186. if ( nodeDef.children ) {
  2187. var children = nodeDef.children;
  2188. for ( var i = 0, il = children.length; i < il; i ++ ) {
  2189. var child = children[ i ];
  2190. pending.push( buildNodeHierachy( child, node, json, parser ) );
  2191. }
  2192. }
  2193. return Promise.all( pending );
  2194. } );
  2195. }
  2196. return function loadScene( sceneIndex ) {
  2197. var json = this.json;
  2198. var extensions = this.extensions;
  2199. var sceneDef = this.json.scenes[ sceneIndex ];
  2200. var parser = this;
  2201. // Loader returns Group, not Scene.
  2202. // See: https://github.com/mrdoob/three.js/issues/18342#issuecomment-578981172
  2203. var scene = new THREE.Group();
  2204. if ( sceneDef.name ) scene.name = sceneDef.name;
  2205. assignExtrasToUserData( scene, sceneDef );
  2206. if ( sceneDef.extensions ) addUnknownExtensionsToUserData( extensions, scene, sceneDef );
  2207. var nodeIds = sceneDef.nodes || [];
  2208. var pending = [];
  2209. for ( var i = 0, il = nodeIds.length; i < il; i ++ ) {
  2210. pending.push( buildNodeHierachy( nodeIds[ i ], scene, json, parser ) );
  2211. }
  2212. return Promise.all( pending ).then( function () {
  2213. return scene;
  2214. } );
  2215. };
  2216. }();
  2217. return GLTFLoader;
  2218. } )();