GLTFLoader.js 104 KB

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