babylon.glTFFileLoader.js 345 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996
  1. (function webpackUniversalModuleDefinition(root, factory) {
  2. if(typeof exports === 'object' && typeof module === 'object')
  3. module.exports = factory(require("babylonjs"));
  4. else if(typeof define === 'function' && define.amd)
  5. define("babylonjs-loaders", ["babylonjs"], factory);
  6. else if(typeof exports === 'object')
  7. exports["babylonjs-loaders"] = factory(require("babylonjs"));
  8. else
  9. root["LOADERS"] = factory(root["BABYLON"]);
  10. })((typeof self !== "undefined" ? self : typeof global !== "undefined" ? global : this), function(__WEBPACK_EXTERNAL_MODULE_babylonjs_Misc_observable__) {
  11. return /******/ (function(modules) { // webpackBootstrap
  12. /******/ // The module cache
  13. /******/ var installedModules = {};
  14. /******/
  15. /******/ // The require function
  16. /******/ function __webpack_require__(moduleId) {
  17. /******/
  18. /******/ // Check if module is in cache
  19. /******/ if(installedModules[moduleId]) {
  20. /******/ return installedModules[moduleId].exports;
  21. /******/ }
  22. /******/ // Create a new module (and put it into the cache)
  23. /******/ var module = installedModules[moduleId] = {
  24. /******/ i: moduleId,
  25. /******/ l: false,
  26. /******/ exports: {}
  27. /******/ };
  28. /******/
  29. /******/ // Execute the module function
  30. /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
  31. /******/
  32. /******/ // Flag the module as loaded
  33. /******/ module.l = true;
  34. /******/
  35. /******/ // Return the exports of the module
  36. /******/ return module.exports;
  37. /******/ }
  38. /******/
  39. /******/
  40. /******/ // expose the modules object (__webpack_modules__)
  41. /******/ __webpack_require__.m = modules;
  42. /******/
  43. /******/ // expose the module cache
  44. /******/ __webpack_require__.c = installedModules;
  45. /******/
  46. /******/ // define getter function for harmony exports
  47. /******/ __webpack_require__.d = function(exports, name, getter) {
  48. /******/ if(!__webpack_require__.o(exports, name)) {
  49. /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
  50. /******/ }
  51. /******/ };
  52. /******/
  53. /******/ // define __esModule on exports
  54. /******/ __webpack_require__.r = function(exports) {
  55. /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
  56. /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
  57. /******/ }
  58. /******/ Object.defineProperty(exports, '__esModule', { value: true });
  59. /******/ };
  60. /******/
  61. /******/ // create a fake namespace object
  62. /******/ // mode & 1: value is a module id, require it
  63. /******/ // mode & 2: merge all properties of value into the ns
  64. /******/ // mode & 4: return value when already ns object
  65. /******/ // mode & 8|1: behave like require
  66. /******/ __webpack_require__.t = function(value, mode) {
  67. /******/ if(mode & 1) value = __webpack_require__(value);
  68. /******/ if(mode & 8) return value;
  69. /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
  70. /******/ var ns = Object.create(null);
  71. /******/ __webpack_require__.r(ns);
  72. /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
  73. /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
  74. /******/ return ns;
  75. /******/ };
  76. /******/
  77. /******/ // getDefaultExport function for compatibility with non-harmony modules
  78. /******/ __webpack_require__.n = function(module) {
  79. /******/ var getter = module && module.__esModule ?
  80. /******/ function getDefault() { return module['default']; } :
  81. /******/ function getModuleExports() { return module; };
  82. /******/ __webpack_require__.d(getter, 'a', getter);
  83. /******/ return getter;
  84. /******/ };
  85. /******/
  86. /******/ // Object.prototype.hasOwnProperty.call
  87. /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
  88. /******/
  89. /******/ // __webpack_public_path__
  90. /******/ __webpack_require__.p = "";
  91. /******/
  92. /******/
  93. /******/ // Load entry module and return exports
  94. /******/ return __webpack_require__(__webpack_require__.s = "./legacy/legacy-glTFFileLoader.ts");
  95. /******/ })
  96. /************************************************************************/
  97. /******/ ({
  98. /***/ "../../node_modules/tslib/tslib.es6.js":
  99. /*!***********************************************************!*\
  100. !*** C:/Repos/Babylon.js/node_modules/tslib/tslib.es6.js ***!
  101. \***********************************************************/
  102. /*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __exportStar, __values, __read, __spread, __spreadArrays, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault */
  103. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  104. "use strict";
  105. __webpack_require__.r(__webpack_exports__);
  106. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__extends", function() { return __extends; });
  107. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__assign", function() { return __assign; });
  108. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__rest", function() { return __rest; });
  109. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__decorate", function() { return __decorate; });
  110. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__param", function() { return __param; });
  111. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__metadata", function() { return __metadata; });
  112. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__awaiter", function() { return __awaiter; });
  113. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__generator", function() { return __generator; });
  114. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__exportStar", function() { return __exportStar; });
  115. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__values", function() { return __values; });
  116. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__read", function() { return __read; });
  117. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spread", function() { return __spread; });
  118. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spreadArrays", function() { return __spreadArrays; });
  119. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__await", function() { return __await; });
  120. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncGenerator", function() { return __asyncGenerator; });
  121. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncDelegator", function() { return __asyncDelegator; });
  122. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncValues", function() { return __asyncValues; });
  123. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__makeTemplateObject", function() { return __makeTemplateObject; });
  124. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__importStar", function() { return __importStar; });
  125. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__importDefault", function() { return __importDefault; });
  126. /*! *****************************************************************************
  127. Copyright (c) Microsoft Corporation. All rights reserved.
  128. Licensed under the Apache License, Version 2.0 (the "License"); you may not use
  129. this file except in compliance with the License. You may obtain a copy of the
  130. License at http://www.apache.org/licenses/LICENSE-2.0
  131. THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  132. KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
  133. WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
  134. MERCHANTABLITY OR NON-INFRINGEMENT.
  135. See the Apache Version 2.0 License for specific language governing permissions
  136. and limitations under the License.
  137. ***************************************************************************** */
  138. /* global Reflect, Promise */
  139. var extendStatics = function(d, b) {
  140. extendStatics = Object.setPrototypeOf ||
  141. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  142. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  143. return extendStatics(d, b);
  144. };
  145. function __extends(d, b) {
  146. extendStatics(d, b);
  147. function __() { this.constructor = d; }
  148. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  149. }
  150. var __assign = function() {
  151. __assign = Object.assign || function __assign(t) {
  152. for (var s, i = 1, n = arguments.length; i < n; i++) {
  153. s = arguments[i];
  154. for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
  155. }
  156. return t;
  157. }
  158. return __assign.apply(this, arguments);
  159. }
  160. function __rest(s, e) {
  161. var t = {};
  162. for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
  163. t[p] = s[p];
  164. if (s != null && typeof Object.getOwnPropertySymbols === "function")
  165. for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
  166. if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
  167. t[p[i]] = s[p[i]];
  168. }
  169. return t;
  170. }
  171. function __decorate(decorators, target, key, desc) {
  172. var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
  173. if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
  174. else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
  175. return c > 3 && r && Object.defineProperty(target, key, r), r;
  176. }
  177. function __param(paramIndex, decorator) {
  178. return function (target, key) { decorator(target, key, paramIndex); }
  179. }
  180. function __metadata(metadataKey, metadataValue) {
  181. if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
  182. }
  183. function __awaiter(thisArg, _arguments, P, generator) {
  184. return new (P || (P = Promise))(function (resolve, reject) {
  185. function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
  186. function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
  187. function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
  188. step((generator = generator.apply(thisArg, _arguments || [])).next());
  189. });
  190. }
  191. function __generator(thisArg, body) {
  192. var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
  193. return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
  194. function verb(n) { return function (v) { return step([n, v]); }; }
  195. function step(op) {
  196. if (f) throw new TypeError("Generator is already executing.");
  197. while (_) try {
  198. if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
  199. if (y = 0, t) op = [op[0] & 2, t.value];
  200. switch (op[0]) {
  201. case 0: case 1: t = op; break;
  202. case 4: _.label++; return { value: op[1], done: false };
  203. case 5: _.label++; y = op[1]; op = [0]; continue;
  204. case 7: op = _.ops.pop(); _.trys.pop(); continue;
  205. default:
  206. if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
  207. if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
  208. if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
  209. if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
  210. if (t[2]) _.ops.pop();
  211. _.trys.pop(); continue;
  212. }
  213. op = body.call(thisArg, _);
  214. } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
  215. if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
  216. }
  217. }
  218. function __exportStar(m, exports) {
  219. for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
  220. }
  221. function __values(o) {
  222. var m = typeof Symbol === "function" && o[Symbol.iterator], i = 0;
  223. if (m) return m.call(o);
  224. return {
  225. next: function () {
  226. if (o && i >= o.length) o = void 0;
  227. return { value: o && o[i++], done: !o };
  228. }
  229. };
  230. }
  231. function __read(o, n) {
  232. var m = typeof Symbol === "function" && o[Symbol.iterator];
  233. if (!m) return o;
  234. var i = m.call(o), r, ar = [], e;
  235. try {
  236. while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
  237. }
  238. catch (error) { e = { error: error }; }
  239. finally {
  240. try {
  241. if (r && !r.done && (m = i["return"])) m.call(i);
  242. }
  243. finally { if (e) throw e.error; }
  244. }
  245. return ar;
  246. }
  247. function __spread() {
  248. for (var ar = [], i = 0; i < arguments.length; i++)
  249. ar = ar.concat(__read(arguments[i]));
  250. return ar;
  251. }
  252. function __spreadArrays() {
  253. for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
  254. for (var r = Array(s), k = 0, i = 0; i < il; i++)
  255. for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
  256. r[k] = a[j];
  257. return r;
  258. };
  259. function __await(v) {
  260. return this instanceof __await ? (this.v = v, this) : new __await(v);
  261. }
  262. function __asyncGenerator(thisArg, _arguments, generator) {
  263. if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
  264. var g = generator.apply(thisArg, _arguments || []), i, q = [];
  265. return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
  266. function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
  267. function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
  268. function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
  269. function fulfill(value) { resume("next", value); }
  270. function reject(value) { resume("throw", value); }
  271. function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
  272. }
  273. function __asyncDelegator(o) {
  274. var i, p;
  275. return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
  276. function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
  277. }
  278. function __asyncValues(o) {
  279. if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
  280. var m = o[Symbol.asyncIterator], i;
  281. return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
  282. function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
  283. function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
  284. }
  285. function __makeTemplateObject(cooked, raw) {
  286. if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
  287. return cooked;
  288. };
  289. function __importStar(mod) {
  290. if (mod && mod.__esModule) return mod;
  291. var result = {};
  292. if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
  293. result.default = mod;
  294. return result;
  295. }
  296. function __importDefault(mod) {
  297. return (mod && mod.__esModule) ? mod : { default: mod };
  298. }
  299. /***/ }),
  300. /***/ "../../node_modules/webpack/buildin/global.js":
  301. /*!***********************************!*\
  302. !*** (webpack)/buildin/global.js ***!
  303. \***********************************/
  304. /*! no static exports found */
  305. /***/ (function(module, exports) {
  306. var g;
  307. // This works in non-strict mode
  308. g = (function() {
  309. return this;
  310. })();
  311. try {
  312. // This works if eval is allowed (see CSP)
  313. g = g || new Function("return this")();
  314. } catch (e) {
  315. // This works if the window reference is available
  316. if (typeof window === "object") g = window;
  317. }
  318. // g can still be undefined, but nothing to do about it...
  319. // We return undefined, instead of nothing here, so it's
  320. // easier to handle this case. if(!global) { ...}
  321. module.exports = g;
  322. /***/ }),
  323. /***/ "./glTF/1.0/glTFBinaryExtension.ts":
  324. /*!*****************************************!*\
  325. !*** ./glTF/1.0/glTFBinaryExtension.ts ***!
  326. \*****************************************/
  327. /*! exports provided: GLTFBinaryExtension */
  328. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  329. "use strict";
  330. __webpack_require__.r(__webpack_exports__);
  331. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GLTFBinaryExtension", function() { return GLTFBinaryExtension; });
  332. /* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
  333. /* harmony import */ var _glTFLoader__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./glTFLoader */ "./glTF/1.0/glTFLoader.ts");
  334. /* harmony import */ var _glTFLoaderUtils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./glTFLoaderUtils */ "./glTF/1.0/glTFLoaderUtils.ts");
  335. /* harmony import */ var _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./glTFLoaderInterfaces */ "./glTF/1.0/glTFLoaderInterfaces.ts");
  336. var BinaryExtensionBufferName = "binary_glTF";
  337. /** @hidden */
  338. var GLTFBinaryExtension = /** @class */ (function (_super) {
  339. tslib__WEBPACK_IMPORTED_MODULE_0__["__extends"](GLTFBinaryExtension, _super);
  340. function GLTFBinaryExtension() {
  341. return _super.call(this, "KHR_binary_glTF") || this;
  342. }
  343. GLTFBinaryExtension.prototype.loadRuntimeAsync = function (scene, data, rootUrl, onSuccess, onError) {
  344. var extensionsUsed = data.json.extensionsUsed;
  345. if (!extensionsUsed || extensionsUsed.indexOf(this.name) === -1 || !data.bin) {
  346. return false;
  347. }
  348. this._bin = data.bin;
  349. onSuccess(_glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderBase"].CreateRuntime(data.json, scene, rootUrl));
  350. return true;
  351. };
  352. GLTFBinaryExtension.prototype.loadBufferAsync = function (gltfRuntime, id, onSuccess, onError) {
  353. if (gltfRuntime.extensionsUsed.indexOf(this.name) === -1) {
  354. return false;
  355. }
  356. if (id !== BinaryExtensionBufferName) {
  357. return false;
  358. }
  359. onSuccess(this._bin);
  360. return true;
  361. };
  362. GLTFBinaryExtension.prototype.loadTextureBufferAsync = function (gltfRuntime, id, onSuccess, onError) {
  363. var texture = gltfRuntime.textures[id];
  364. var source = gltfRuntime.images[texture.source];
  365. if (!source.extensions || !(this.name in source.extensions)) {
  366. return false;
  367. }
  368. var sourceExt = source.extensions[this.name];
  369. var bufferView = gltfRuntime.bufferViews[sourceExt.bufferView];
  370. var buffer = _glTFLoaderUtils__WEBPACK_IMPORTED_MODULE_2__["GLTFUtils"].GetBufferFromBufferView(gltfRuntime, bufferView, 0, bufferView.byteLength, _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_3__["EComponentType"].UNSIGNED_BYTE);
  371. onSuccess(buffer);
  372. return true;
  373. };
  374. GLTFBinaryExtension.prototype.loadShaderStringAsync = function (gltfRuntime, id, onSuccess, onError) {
  375. var shader = gltfRuntime.shaders[id];
  376. if (!shader.extensions || !(this.name in shader.extensions)) {
  377. return false;
  378. }
  379. var binaryExtensionShader = shader.extensions[this.name];
  380. var bufferView = gltfRuntime.bufferViews[binaryExtensionShader.bufferView];
  381. var shaderBytes = _glTFLoaderUtils__WEBPACK_IMPORTED_MODULE_2__["GLTFUtils"].GetBufferFromBufferView(gltfRuntime, bufferView, 0, bufferView.byteLength, _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_3__["EComponentType"].UNSIGNED_BYTE);
  382. setTimeout(function () {
  383. var shaderString = _glTFLoaderUtils__WEBPACK_IMPORTED_MODULE_2__["GLTFUtils"].DecodeBufferToText(shaderBytes);
  384. onSuccess(shaderString);
  385. });
  386. return true;
  387. };
  388. return GLTFBinaryExtension;
  389. }(_glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderExtension"]));
  390. _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].RegisterExtension(new GLTFBinaryExtension());
  391. /***/ }),
  392. /***/ "./glTF/1.0/glTFLoader.ts":
  393. /*!********************************!*\
  394. !*** ./glTF/1.0/glTFLoader.ts ***!
  395. \********************************/
  396. /*! exports provided: GLTFLoaderBase, GLTFLoader, GLTFLoaderExtension */
  397. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  398. "use strict";
  399. __webpack_require__.r(__webpack_exports__);
  400. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GLTFLoaderBase", function() { return GLTFLoaderBase; });
  401. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GLTFLoader", function() { return GLTFLoader; });
  402. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GLTFLoaderExtension", function() { return GLTFLoaderExtension; });
  403. /* harmony import */ var _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./glTFLoaderInterfaces */ "./glTF/1.0/glTFLoaderInterfaces.ts");
  404. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! babylonjs/Maths/math */ "babylonjs/Misc/observable");
  405. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__);
  406. /* harmony import */ var _glTFLoaderUtils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./glTFLoaderUtils */ "./glTF/1.0/glTFLoaderUtils.ts");
  407. /* harmony import */ var _glTFFileLoader__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../glTFFileLoader */ "./glTF/glTFFileLoader.ts");
  408. /**
  409. * Tokenizer. Used for shaders compatibility
  410. * Automatically map world, view, projection, worldViewProjection, attributes and so on
  411. */
  412. var ETokenType;
  413. (function (ETokenType) {
  414. ETokenType[ETokenType["IDENTIFIER"] = 1] = "IDENTIFIER";
  415. ETokenType[ETokenType["UNKNOWN"] = 2] = "UNKNOWN";
  416. ETokenType[ETokenType["END_OF_INPUT"] = 3] = "END_OF_INPUT";
  417. })(ETokenType || (ETokenType = {}));
  418. var Tokenizer = /** @class */ (function () {
  419. function Tokenizer(toParse) {
  420. this._pos = 0;
  421. this.currentToken = ETokenType.UNKNOWN;
  422. this.currentIdentifier = "";
  423. this.currentString = "";
  424. this.isLetterOrDigitPattern = /^[a-zA-Z0-9]+$/;
  425. this._toParse = toParse;
  426. this._maxPos = toParse.length;
  427. }
  428. Tokenizer.prototype.getNextToken = function () {
  429. if (this.isEnd()) {
  430. return ETokenType.END_OF_INPUT;
  431. }
  432. this.currentString = this.read();
  433. this.currentToken = ETokenType.UNKNOWN;
  434. if (this.currentString === "_" || this.isLetterOrDigitPattern.test(this.currentString)) {
  435. this.currentToken = ETokenType.IDENTIFIER;
  436. this.currentIdentifier = this.currentString;
  437. while (!this.isEnd() && (this.isLetterOrDigitPattern.test(this.currentString = this.peek()) || this.currentString === "_")) {
  438. this.currentIdentifier += this.currentString;
  439. this.forward();
  440. }
  441. }
  442. return this.currentToken;
  443. };
  444. Tokenizer.prototype.peek = function () {
  445. return this._toParse[this._pos];
  446. };
  447. Tokenizer.prototype.read = function () {
  448. return this._toParse[this._pos++];
  449. };
  450. Tokenizer.prototype.forward = function () {
  451. this._pos++;
  452. };
  453. Tokenizer.prototype.isEnd = function () {
  454. return this._pos >= this._maxPos;
  455. };
  456. return Tokenizer;
  457. }());
  458. /**
  459. * Values
  460. */
  461. var glTFTransforms = ["MODEL", "VIEW", "PROJECTION", "MODELVIEW", "MODELVIEWPROJECTION", "JOINTMATRIX"];
  462. var babylonTransforms = ["world", "view", "projection", "worldView", "worldViewProjection", "mBones"];
  463. var glTFAnimationPaths = ["translation", "rotation", "scale"];
  464. var babylonAnimationPaths = ["position", "rotationQuaternion", "scaling"];
  465. /**
  466. * Parse
  467. */
  468. var parseBuffers = function (parsedBuffers, gltfRuntime) {
  469. for (var buf in parsedBuffers) {
  470. var parsedBuffer = parsedBuffers[buf];
  471. gltfRuntime.buffers[buf] = parsedBuffer;
  472. gltfRuntime.buffersCount++;
  473. }
  474. };
  475. var parseShaders = function (parsedShaders, gltfRuntime) {
  476. for (var sha in parsedShaders) {
  477. var parsedShader = parsedShaders[sha];
  478. gltfRuntime.shaders[sha] = parsedShader;
  479. gltfRuntime.shaderscount++;
  480. }
  481. };
  482. var parseObject = function (parsedObjects, runtimeProperty, gltfRuntime) {
  483. for (var object in parsedObjects) {
  484. var parsedObject = parsedObjects[object];
  485. gltfRuntime[runtimeProperty][object] = parsedObject;
  486. }
  487. };
  488. /**
  489. * Utils
  490. */
  491. var normalizeUVs = function (buffer) {
  492. if (!buffer) {
  493. return;
  494. }
  495. for (var i = 0; i < buffer.length / 2; i++) {
  496. buffer[i * 2 + 1] = 1.0 - buffer[i * 2 + 1];
  497. }
  498. };
  499. var getAttribute = function (attributeParameter) {
  500. if (attributeParameter.semantic === "NORMAL") {
  501. return "normal";
  502. }
  503. else if (attributeParameter.semantic === "POSITION") {
  504. return "position";
  505. }
  506. else if (attributeParameter.semantic === "JOINT") {
  507. return "matricesIndices";
  508. }
  509. else if (attributeParameter.semantic === "WEIGHT") {
  510. return "matricesWeights";
  511. }
  512. else if (attributeParameter.semantic === "COLOR") {
  513. return "color";
  514. }
  515. else if (attributeParameter.semantic && attributeParameter.semantic.indexOf("TEXCOORD_") !== -1) {
  516. var channel = Number(attributeParameter.semantic.split("_")[1]);
  517. return "uv" + (channel === 0 ? "" : channel + 1);
  518. }
  519. return null;
  520. };
  521. /**
  522. * Loads and creates animations
  523. */
  524. var loadAnimations = function (gltfRuntime) {
  525. for (var anim in gltfRuntime.animations) {
  526. var animation = gltfRuntime.animations[anim];
  527. if (!animation.channels || !animation.samplers) {
  528. continue;
  529. }
  530. var lastAnimation = null;
  531. for (var i = 0; i < animation.channels.length; i++) {
  532. // Get parameters and load buffers
  533. var channel = animation.channels[i];
  534. var sampler = animation.samplers[channel.sampler];
  535. if (!sampler) {
  536. continue;
  537. }
  538. var inputData = null;
  539. var outputData = null;
  540. if (animation.parameters) {
  541. inputData = animation.parameters[sampler.input];
  542. outputData = animation.parameters[sampler.output];
  543. }
  544. else {
  545. inputData = sampler.input;
  546. outputData = sampler.output;
  547. }
  548. var bufferInput = _glTFLoaderUtils__WEBPACK_IMPORTED_MODULE_2__["GLTFUtils"].GetBufferFromAccessor(gltfRuntime, gltfRuntime.accessors[inputData]);
  549. var bufferOutput = _glTFLoaderUtils__WEBPACK_IMPORTED_MODULE_2__["GLTFUtils"].GetBufferFromAccessor(gltfRuntime, gltfRuntime.accessors[outputData]);
  550. var targetID = channel.target.id;
  551. var targetNode = gltfRuntime.scene.getNodeByID(targetID);
  552. if (targetNode === null) {
  553. targetNode = gltfRuntime.scene.getNodeByName(targetID);
  554. }
  555. if (targetNode === null) {
  556. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Warn("Creating animation named " + anim + ". But cannot find node named " + targetID + " to attach to");
  557. continue;
  558. }
  559. var isBone = targetNode instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Bone"];
  560. // Get target path (position, rotation or scaling)
  561. var targetPath = channel.target.path;
  562. var targetPathIndex = glTFAnimationPaths.indexOf(targetPath);
  563. if (targetPathIndex !== -1) {
  564. targetPath = babylonAnimationPaths[targetPathIndex];
  565. }
  566. // Determine animation type
  567. var animationType = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Animation"].ANIMATIONTYPE_MATRIX;
  568. if (!isBone) {
  569. if (targetPath === "rotationQuaternion") {
  570. animationType = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Animation"].ANIMATIONTYPE_QUATERNION;
  571. targetNode.rotationQuaternion = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Quaternion"]();
  572. }
  573. else {
  574. animationType = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Animation"].ANIMATIONTYPE_VECTOR3;
  575. }
  576. }
  577. // Create animation and key frames
  578. var babylonAnimation = null;
  579. var keys = [];
  580. var arrayOffset = 0;
  581. var modifyKey = false;
  582. if (isBone && lastAnimation && lastAnimation.getKeys().length === bufferInput.length) {
  583. babylonAnimation = lastAnimation;
  584. modifyKey = true;
  585. }
  586. if (!modifyKey) {
  587. babylonAnimation = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Animation"](anim, isBone ? "_matrix" : targetPath, 1, animationType, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Animation"].ANIMATIONLOOPMODE_CYCLE);
  588. }
  589. // For each frame
  590. for (var j = 0; j < bufferInput.length; j++) {
  591. var value = null;
  592. if (targetPath === "rotationQuaternion") { // VEC4
  593. value = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Quaternion"].FromArray([bufferOutput[arrayOffset], bufferOutput[arrayOffset + 1], bufferOutput[arrayOffset + 2], bufferOutput[arrayOffset + 3]]);
  594. arrayOffset += 4;
  595. }
  596. else { // Position and scaling are VEC3
  597. value = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray([bufferOutput[arrayOffset], bufferOutput[arrayOffset + 1], bufferOutput[arrayOffset + 2]]);
  598. arrayOffset += 3;
  599. }
  600. if (isBone) {
  601. var bone = targetNode;
  602. var translation = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].Zero();
  603. var rotationQuaternion = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Quaternion"]();
  604. var scaling = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].Zero();
  605. // Warning on decompose
  606. var mat = bone.getBaseMatrix();
  607. if (modifyKey && lastAnimation) {
  608. mat = lastAnimation.getKeys()[j].value;
  609. }
  610. mat.decompose(scaling, rotationQuaternion, translation);
  611. if (targetPath === "position") {
  612. translation = value;
  613. }
  614. else if (targetPath === "rotationQuaternion") {
  615. rotationQuaternion = value;
  616. }
  617. else {
  618. scaling = value;
  619. }
  620. value = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Matrix"].Compose(scaling, rotationQuaternion, translation);
  621. }
  622. if (!modifyKey) {
  623. keys.push({
  624. frame: bufferInput[j],
  625. value: value
  626. });
  627. }
  628. else if (lastAnimation) {
  629. lastAnimation.getKeys()[j].value = value;
  630. }
  631. }
  632. // Finish
  633. if (!modifyKey && babylonAnimation) {
  634. babylonAnimation.setKeys(keys);
  635. targetNode.animations.push(babylonAnimation);
  636. }
  637. lastAnimation = babylonAnimation;
  638. gltfRuntime.scene.stopAnimation(targetNode);
  639. gltfRuntime.scene.beginAnimation(targetNode, 0, bufferInput[bufferInput.length - 1], true, 1.0);
  640. }
  641. }
  642. };
  643. /**
  644. * Returns the bones transformation matrix
  645. */
  646. var configureBoneTransformation = function (node) {
  647. var mat = null;
  648. if (node.translation || node.rotation || node.scale) {
  649. var scale = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(node.scale || [1, 1, 1]);
  650. var rotation = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Quaternion"].FromArray(node.rotation || [0, 0, 0, 1]);
  651. var position = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(node.translation || [0, 0, 0]);
  652. mat = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Matrix"].Compose(scale, rotation, position);
  653. }
  654. else {
  655. mat = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Matrix"].FromArray(node.matrix);
  656. }
  657. return mat;
  658. };
  659. /**
  660. * Returns the parent bone
  661. */
  662. var getParentBone = function (gltfRuntime, skins, jointName, newSkeleton) {
  663. // Try to find
  664. for (var i = 0; i < newSkeleton.bones.length; i++) {
  665. if (newSkeleton.bones[i].name === jointName) {
  666. return newSkeleton.bones[i];
  667. }
  668. }
  669. // Not found, search in gltf nodes
  670. var nodes = gltfRuntime.nodes;
  671. for (var nde in nodes) {
  672. var node = nodes[nde];
  673. if (!node.jointName) {
  674. continue;
  675. }
  676. var children = node.children;
  677. for (var i = 0; i < children.length; i++) {
  678. var child = gltfRuntime.nodes[children[i]];
  679. if (!child.jointName) {
  680. continue;
  681. }
  682. if (child.jointName === jointName) {
  683. var mat = configureBoneTransformation(node);
  684. var bone = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Bone"](node.name || "", newSkeleton, getParentBone(gltfRuntime, skins, node.jointName, newSkeleton), mat);
  685. bone.id = nde;
  686. return bone;
  687. }
  688. }
  689. }
  690. return null;
  691. };
  692. /**
  693. * Returns the appropriate root node
  694. */
  695. var getNodeToRoot = function (nodesToRoot, id) {
  696. for (var i = 0; i < nodesToRoot.length; i++) {
  697. var nodeToRoot = nodesToRoot[i];
  698. for (var j = 0; j < nodeToRoot.node.children.length; j++) {
  699. var child = nodeToRoot.node.children[j];
  700. if (child === id) {
  701. return nodeToRoot.bone;
  702. }
  703. }
  704. }
  705. return null;
  706. };
  707. /**
  708. * Returns the node with the joint name
  709. */
  710. var getJointNode = function (gltfRuntime, jointName) {
  711. var nodes = gltfRuntime.nodes;
  712. var node = nodes[jointName];
  713. if (node) {
  714. return {
  715. node: node,
  716. id: jointName
  717. };
  718. }
  719. for (var nde in nodes) {
  720. node = nodes[nde];
  721. if (node.jointName === jointName) {
  722. return {
  723. node: node,
  724. id: nde
  725. };
  726. }
  727. }
  728. return null;
  729. };
  730. /**
  731. * Checks if a nodes is in joints
  732. */
  733. var nodeIsInJoints = function (skins, id) {
  734. for (var i = 0; i < skins.jointNames.length; i++) {
  735. if (skins.jointNames[i] === id) {
  736. return true;
  737. }
  738. }
  739. return false;
  740. };
  741. /**
  742. * Fills the nodes to root for bones and builds hierarchy
  743. */
  744. var getNodesToRoot = function (gltfRuntime, newSkeleton, skins, nodesToRoot) {
  745. // Creates nodes for root
  746. for (var nde in gltfRuntime.nodes) {
  747. var node = gltfRuntime.nodes[nde];
  748. var id = nde;
  749. if (!node.jointName || nodeIsInJoints(skins, node.jointName)) {
  750. continue;
  751. }
  752. // Create node to root bone
  753. var mat = configureBoneTransformation(node);
  754. var bone = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Bone"](node.name || "", newSkeleton, null, mat);
  755. bone.id = id;
  756. nodesToRoot.push({ bone: bone, node: node, id: id });
  757. }
  758. // Parenting
  759. for (var i = 0; i < nodesToRoot.length; i++) {
  760. var nodeToRoot = nodesToRoot[i];
  761. var children = nodeToRoot.node.children;
  762. for (var j = 0; j < children.length; j++) {
  763. var child = null;
  764. for (var k = 0; k < nodesToRoot.length; k++) {
  765. if (nodesToRoot[k].id === children[j]) {
  766. child = nodesToRoot[k];
  767. break;
  768. }
  769. }
  770. if (child) {
  771. child.bone._parent = nodeToRoot.bone;
  772. nodeToRoot.bone.children.push(child.bone);
  773. }
  774. }
  775. }
  776. };
  777. /**
  778. * Imports a skeleton
  779. */
  780. var importSkeleton = function (gltfRuntime, skins, mesh, newSkeleton, id) {
  781. if (!newSkeleton) {
  782. newSkeleton = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Skeleton"](skins.name || "", "", gltfRuntime.scene);
  783. }
  784. if (!skins.babylonSkeleton) {
  785. return newSkeleton;
  786. }
  787. // Find the root bones
  788. var nodesToRoot = [];
  789. var nodesToRootToAdd = [];
  790. getNodesToRoot(gltfRuntime, newSkeleton, skins, nodesToRoot);
  791. newSkeleton.bones = [];
  792. // Joints
  793. for (var i = 0; i < skins.jointNames.length; i++) {
  794. var jointNode = getJointNode(gltfRuntime, skins.jointNames[i]);
  795. if (!jointNode) {
  796. continue;
  797. }
  798. var node = jointNode.node;
  799. if (!node) {
  800. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Warn("Joint named " + skins.jointNames[i] + " does not exist");
  801. continue;
  802. }
  803. var id = jointNode.id;
  804. // Optimize, if the bone already exists...
  805. var existingBone = gltfRuntime.scene.getBoneByID(id);
  806. if (existingBone) {
  807. newSkeleton.bones.push(existingBone);
  808. continue;
  809. }
  810. // Search for parent bone
  811. var foundBone = false;
  812. var parentBone = null;
  813. for (var j = 0; j < i; j++) {
  814. var jointNode_1 = getJointNode(gltfRuntime, skins.jointNames[j]);
  815. if (!jointNode_1) {
  816. continue;
  817. }
  818. var joint = jointNode_1.node;
  819. if (!joint) {
  820. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Warn("Joint named " + skins.jointNames[j] + " does not exist when looking for parent");
  821. continue;
  822. }
  823. var children = joint.children;
  824. if (!children) {
  825. continue;
  826. }
  827. foundBone = false;
  828. for (var k = 0; k < children.length; k++) {
  829. if (children[k] === id) {
  830. parentBone = getParentBone(gltfRuntime, skins, skins.jointNames[j], newSkeleton);
  831. foundBone = true;
  832. break;
  833. }
  834. }
  835. if (foundBone) {
  836. break;
  837. }
  838. }
  839. // Create bone
  840. var mat = configureBoneTransformation(node);
  841. if (!parentBone && nodesToRoot.length > 0) {
  842. parentBone = getNodeToRoot(nodesToRoot, id);
  843. if (parentBone) {
  844. if (nodesToRootToAdd.indexOf(parentBone) === -1) {
  845. nodesToRootToAdd.push(parentBone);
  846. }
  847. }
  848. }
  849. var bone = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Bone"](node.jointName || "", newSkeleton, parentBone, mat);
  850. bone.id = id;
  851. }
  852. // Polish
  853. var bones = newSkeleton.bones;
  854. newSkeleton.bones = [];
  855. for (var i = 0; i < skins.jointNames.length; i++) {
  856. var jointNode = getJointNode(gltfRuntime, skins.jointNames[i]);
  857. if (!jointNode) {
  858. continue;
  859. }
  860. for (var j = 0; j < bones.length; j++) {
  861. if (bones[j].id === jointNode.id) {
  862. newSkeleton.bones.push(bones[j]);
  863. break;
  864. }
  865. }
  866. }
  867. newSkeleton.prepare();
  868. // Finish
  869. for (var i = 0; i < nodesToRootToAdd.length; i++) {
  870. newSkeleton.bones.push(nodesToRootToAdd[i]);
  871. }
  872. return newSkeleton;
  873. };
  874. /**
  875. * Imports a mesh and its geometries
  876. */
  877. var importMesh = function (gltfRuntime, node, meshes, id, newMesh) {
  878. if (!newMesh) {
  879. newMesh = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Mesh"](node.name || "", gltfRuntime.scene);
  880. newMesh.id = id;
  881. }
  882. if (!node.babylonNode) {
  883. return newMesh;
  884. }
  885. var subMaterials = [];
  886. var vertexData = null;
  887. var verticesStarts = new Array();
  888. var verticesCounts = new Array();
  889. var indexStarts = new Array();
  890. var indexCounts = new Array();
  891. for (var meshIndex = 0; meshIndex < meshes.length; meshIndex++) {
  892. var meshID = meshes[meshIndex];
  893. var mesh = gltfRuntime.meshes[meshID];
  894. if (!mesh) {
  895. continue;
  896. }
  897. // Positions, normals and UVs
  898. for (var i = 0; i < mesh.primitives.length; i++) {
  899. // Temporary vertex data
  900. var tempVertexData = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexData"]();
  901. var primitive = mesh.primitives[i];
  902. if (primitive.mode !== 4) {
  903. // continue;
  904. }
  905. var attributes = primitive.attributes;
  906. var accessor = null;
  907. var buffer = null;
  908. // Set positions, normal and uvs
  909. for (var semantic in attributes) {
  910. // Link accessor and buffer view
  911. accessor = gltfRuntime.accessors[attributes[semantic]];
  912. buffer = _glTFLoaderUtils__WEBPACK_IMPORTED_MODULE_2__["GLTFUtils"].GetBufferFromAccessor(gltfRuntime, accessor);
  913. if (semantic === "NORMAL") {
  914. tempVertexData.normals = new Float32Array(buffer.length);
  915. tempVertexData.normals.set(buffer);
  916. }
  917. else if (semantic === "POSITION") {
  918. if (_glTFFileLoader__WEBPACK_IMPORTED_MODULE_3__["GLTFFileLoader"].HomogeneousCoordinates) {
  919. tempVertexData.positions = new Float32Array(buffer.length - buffer.length / 4);
  920. for (var j = 0; j < buffer.length; j += 4) {
  921. tempVertexData.positions[j] = buffer[j];
  922. tempVertexData.positions[j + 1] = buffer[j + 1];
  923. tempVertexData.positions[j + 2] = buffer[j + 2];
  924. }
  925. }
  926. else {
  927. tempVertexData.positions = new Float32Array(buffer.length);
  928. tempVertexData.positions.set(buffer);
  929. }
  930. verticesCounts.push(tempVertexData.positions.length);
  931. }
  932. else if (semantic.indexOf("TEXCOORD_") !== -1) {
  933. var channel = Number(semantic.split("_")[1]);
  934. var uvKind = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].UVKind + (channel === 0 ? "" : (channel + 1));
  935. var uvs = new Float32Array(buffer.length);
  936. uvs.set(buffer);
  937. normalizeUVs(uvs);
  938. tempVertexData.set(uvs, uvKind);
  939. }
  940. else if (semantic === "JOINT") {
  941. tempVertexData.matricesIndices = new Float32Array(buffer.length);
  942. tempVertexData.matricesIndices.set(buffer);
  943. }
  944. else if (semantic === "WEIGHT") {
  945. tempVertexData.matricesWeights = new Float32Array(buffer.length);
  946. tempVertexData.matricesWeights.set(buffer);
  947. }
  948. else if (semantic === "COLOR") {
  949. tempVertexData.colors = new Float32Array(buffer.length);
  950. tempVertexData.colors.set(buffer);
  951. }
  952. }
  953. // Indices
  954. accessor = gltfRuntime.accessors[primitive.indices];
  955. if (accessor) {
  956. buffer = _glTFLoaderUtils__WEBPACK_IMPORTED_MODULE_2__["GLTFUtils"].GetBufferFromAccessor(gltfRuntime, accessor);
  957. tempVertexData.indices = new Int32Array(buffer.length);
  958. tempVertexData.indices.set(buffer);
  959. indexCounts.push(tempVertexData.indices.length);
  960. }
  961. else {
  962. // Set indices on the fly
  963. var indices = [];
  964. for (var j = 0; j < tempVertexData.positions.length / 3; j++) {
  965. indices.push(j);
  966. }
  967. tempVertexData.indices = new Int32Array(indices);
  968. indexCounts.push(tempVertexData.indices.length);
  969. }
  970. if (!vertexData) {
  971. vertexData = tempVertexData;
  972. }
  973. else {
  974. vertexData.merge(tempVertexData);
  975. }
  976. // Sub material
  977. var material_1 = gltfRuntime.scene.getMaterialByID(primitive.material);
  978. subMaterials.push(material_1 === null ? _glTFLoaderUtils__WEBPACK_IMPORTED_MODULE_2__["GLTFUtils"].GetDefaultMaterial(gltfRuntime.scene) : material_1);
  979. // Update vertices start and index start
  980. verticesStarts.push(verticesStarts.length === 0 ? 0 : verticesStarts[verticesStarts.length - 1] + verticesCounts[verticesCounts.length - 2]);
  981. indexStarts.push(indexStarts.length === 0 ? 0 : indexStarts[indexStarts.length - 1] + indexCounts[indexCounts.length - 2]);
  982. }
  983. }
  984. var material;
  985. if (subMaterials.length > 1) {
  986. material = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["MultiMaterial"]("multimat" + id, gltfRuntime.scene);
  987. material.subMaterials = subMaterials;
  988. }
  989. else {
  990. material = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["StandardMaterial"]("multimat" + id, gltfRuntime.scene);
  991. }
  992. if (subMaterials.length === 1) {
  993. material = subMaterials[0];
  994. }
  995. if (!newMesh.material) {
  996. newMesh.material = material;
  997. }
  998. // Apply geometry
  999. new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Geometry"](id, gltfRuntime.scene, vertexData, false, newMesh);
  1000. newMesh.computeWorldMatrix(true);
  1001. // Apply submeshes
  1002. newMesh.subMeshes = [];
  1003. var index = 0;
  1004. for (var meshIndex = 0; meshIndex < meshes.length; meshIndex++) {
  1005. var meshID = meshes[meshIndex];
  1006. var mesh = gltfRuntime.meshes[meshID];
  1007. if (!mesh) {
  1008. continue;
  1009. }
  1010. for (var i = 0; i < mesh.primitives.length; i++) {
  1011. if (mesh.primitives[i].mode !== 4) {
  1012. //continue;
  1013. }
  1014. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["SubMesh"].AddToMesh(index, verticesStarts[index], verticesCounts[index], indexStarts[index], indexCounts[index], newMesh, newMesh, true);
  1015. index++;
  1016. }
  1017. }
  1018. // Finish
  1019. return newMesh;
  1020. };
  1021. /**
  1022. * Configure node transformation from position, rotation and scaling
  1023. */
  1024. var configureNode = function (newNode, position, rotation, scaling) {
  1025. if (newNode.position) {
  1026. newNode.position = position;
  1027. }
  1028. if (newNode.rotationQuaternion || newNode.rotation) {
  1029. newNode.rotationQuaternion = rotation;
  1030. }
  1031. if (newNode.scaling) {
  1032. newNode.scaling = scaling;
  1033. }
  1034. };
  1035. /**
  1036. * Configures node from transformation matrix
  1037. */
  1038. var configureNodeFromMatrix = function (newNode, node, parent) {
  1039. if (node.matrix) {
  1040. var position = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"](0, 0, 0);
  1041. var rotation = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Quaternion"]();
  1042. var scaling = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"](0, 0, 0);
  1043. var mat = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Matrix"].FromArray(node.matrix);
  1044. mat.decompose(scaling, rotation, position);
  1045. configureNode(newNode, position, rotation, scaling);
  1046. }
  1047. else if (node.translation && node.rotation && node.scale) {
  1048. configureNode(newNode, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(node.translation), babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Quaternion"].FromArray(node.rotation), babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(node.scale));
  1049. }
  1050. newNode.computeWorldMatrix(true);
  1051. };
  1052. /**
  1053. * Imports a node
  1054. */
  1055. var importNode = function (gltfRuntime, node, id, parent) {
  1056. var lastNode = null;
  1057. if (gltfRuntime.importOnlyMeshes && (node.skin || node.meshes)) {
  1058. if (gltfRuntime.importMeshesNames && gltfRuntime.importMeshesNames.length > 0 && gltfRuntime.importMeshesNames.indexOf(node.name || "") === -1) {
  1059. return null;
  1060. }
  1061. }
  1062. // Meshes
  1063. if (node.skin) {
  1064. if (node.meshes) {
  1065. var skin = gltfRuntime.skins[node.skin];
  1066. var newMesh = importMesh(gltfRuntime, node, node.meshes, id, node.babylonNode);
  1067. newMesh.skeleton = gltfRuntime.scene.getLastSkeletonByID(node.skin);
  1068. if (newMesh.skeleton === null) {
  1069. newMesh.skeleton = importSkeleton(gltfRuntime, skin, newMesh, skin.babylonSkeleton, node.skin);
  1070. if (!skin.babylonSkeleton) {
  1071. skin.babylonSkeleton = newMesh.skeleton;
  1072. }
  1073. }
  1074. lastNode = newMesh;
  1075. }
  1076. }
  1077. else if (node.meshes) {
  1078. /**
  1079. * Improve meshes property
  1080. */
  1081. var newMesh = importMesh(gltfRuntime, node, node.mesh ? [node.mesh] : node.meshes, id, node.babylonNode);
  1082. lastNode = newMesh;
  1083. }
  1084. // Lights
  1085. else if (node.light && !node.babylonNode && !gltfRuntime.importOnlyMeshes) {
  1086. var light = gltfRuntime.lights[node.light];
  1087. if (light) {
  1088. if (light.type === "ambient") {
  1089. var ambienLight = light[light.type];
  1090. var hemiLight = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["HemisphericLight"](node.light, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].Zero(), gltfRuntime.scene);
  1091. hemiLight.name = node.name || "";
  1092. if (ambienLight.color) {
  1093. hemiLight.diffuse = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Color3"].FromArray(ambienLight.color);
  1094. }
  1095. lastNode = hemiLight;
  1096. }
  1097. else if (light.type === "directional") {
  1098. var directionalLight = light[light.type];
  1099. var dirLight = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["DirectionalLight"](node.light, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].Zero(), gltfRuntime.scene);
  1100. dirLight.name = node.name || "";
  1101. if (directionalLight.color) {
  1102. dirLight.diffuse = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Color3"].FromArray(directionalLight.color);
  1103. }
  1104. lastNode = dirLight;
  1105. }
  1106. else if (light.type === "point") {
  1107. var pointLight = light[light.type];
  1108. var ptLight = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["PointLight"](node.light, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].Zero(), gltfRuntime.scene);
  1109. ptLight.name = node.name || "";
  1110. if (pointLight.color) {
  1111. ptLight.diffuse = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Color3"].FromArray(pointLight.color);
  1112. }
  1113. lastNode = ptLight;
  1114. }
  1115. else if (light.type === "spot") {
  1116. var spotLight = light[light.type];
  1117. var spLight = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["SpotLight"](node.light, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].Zero(), babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].Zero(), 0, 0, gltfRuntime.scene);
  1118. spLight.name = node.name || "";
  1119. if (spotLight.color) {
  1120. spLight.diffuse = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Color3"].FromArray(spotLight.color);
  1121. }
  1122. if (spotLight.fallOfAngle) {
  1123. spLight.angle = spotLight.fallOfAngle;
  1124. }
  1125. if (spotLight.fallOffExponent) {
  1126. spLight.exponent = spotLight.fallOffExponent;
  1127. }
  1128. lastNode = spLight;
  1129. }
  1130. }
  1131. }
  1132. // Cameras
  1133. else if (node.camera && !node.babylonNode && !gltfRuntime.importOnlyMeshes) {
  1134. var camera = gltfRuntime.cameras[node.camera];
  1135. if (camera) {
  1136. if (camera.type === "orthographic") {
  1137. var orthoCamera = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["FreeCamera"](node.camera, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].Zero(), gltfRuntime.scene, false);
  1138. orthoCamera.name = node.name || "";
  1139. orthoCamera.mode = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Camera"].ORTHOGRAPHIC_CAMERA;
  1140. orthoCamera.attachControl(gltfRuntime.scene.getEngine().getRenderingCanvas());
  1141. lastNode = orthoCamera;
  1142. }
  1143. else if (camera.type === "perspective") {
  1144. var perspectiveCamera = camera[camera.type];
  1145. var persCamera = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["FreeCamera"](node.camera, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].Zero(), gltfRuntime.scene, false);
  1146. persCamera.name = node.name || "";
  1147. persCamera.attachControl(gltfRuntime.scene.getEngine().getRenderingCanvas());
  1148. if (!perspectiveCamera.aspectRatio) {
  1149. perspectiveCamera.aspectRatio = gltfRuntime.scene.getEngine().getRenderWidth() / gltfRuntime.scene.getEngine().getRenderHeight();
  1150. }
  1151. if (perspectiveCamera.znear && perspectiveCamera.zfar) {
  1152. persCamera.maxZ = perspectiveCamera.zfar;
  1153. persCamera.minZ = perspectiveCamera.znear;
  1154. }
  1155. lastNode = persCamera;
  1156. }
  1157. }
  1158. }
  1159. // Empty node
  1160. if (!node.jointName) {
  1161. if (node.babylonNode) {
  1162. return node.babylonNode;
  1163. }
  1164. else if (lastNode === null) {
  1165. var dummy = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Mesh"](node.name || "", gltfRuntime.scene);
  1166. node.babylonNode = dummy;
  1167. lastNode = dummy;
  1168. }
  1169. }
  1170. if (lastNode !== null) {
  1171. if (node.matrix && lastNode instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Mesh"]) {
  1172. configureNodeFromMatrix(lastNode, node, parent);
  1173. }
  1174. else {
  1175. var translation = node.translation || [0, 0, 0];
  1176. var rotation = node.rotation || [0, 0, 0, 1];
  1177. var scale = node.scale || [1, 1, 1];
  1178. configureNode(lastNode, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(translation), babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Quaternion"].FromArray(rotation), babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(scale));
  1179. }
  1180. lastNode.updateCache(true);
  1181. node.babylonNode = lastNode;
  1182. }
  1183. return lastNode;
  1184. };
  1185. /**
  1186. * Traverses nodes and creates them
  1187. */
  1188. var traverseNodes = function (gltfRuntime, id, parent, meshIncluded) {
  1189. if (meshIncluded === void 0) { meshIncluded = false; }
  1190. var node = gltfRuntime.nodes[id];
  1191. var newNode = null;
  1192. if (gltfRuntime.importOnlyMeshes && !meshIncluded && gltfRuntime.importMeshesNames) {
  1193. if (gltfRuntime.importMeshesNames.indexOf(node.name || "") !== -1 || gltfRuntime.importMeshesNames.length === 0) {
  1194. meshIncluded = true;
  1195. }
  1196. else {
  1197. meshIncluded = false;
  1198. }
  1199. }
  1200. else {
  1201. meshIncluded = true;
  1202. }
  1203. if (!node.jointName && meshIncluded) {
  1204. newNode = importNode(gltfRuntime, node, id, parent);
  1205. if (newNode !== null) {
  1206. newNode.id = id;
  1207. newNode.parent = parent;
  1208. }
  1209. }
  1210. if (node.children) {
  1211. for (var i = 0; i < node.children.length; i++) {
  1212. traverseNodes(gltfRuntime, node.children[i], newNode, meshIncluded);
  1213. }
  1214. }
  1215. };
  1216. /**
  1217. * do stuff after buffers, shaders are loaded (e.g. hook up materials, load animations, etc.)
  1218. */
  1219. var postLoad = function (gltfRuntime) {
  1220. // Nodes
  1221. var currentScene = gltfRuntime.currentScene;
  1222. if (currentScene) {
  1223. for (var i = 0; i < currentScene.nodes.length; i++) {
  1224. traverseNodes(gltfRuntime, currentScene.nodes[i], null);
  1225. }
  1226. }
  1227. else {
  1228. for (var thing in gltfRuntime.scenes) {
  1229. currentScene = gltfRuntime.scenes[thing];
  1230. for (var i = 0; i < currentScene.nodes.length; i++) {
  1231. traverseNodes(gltfRuntime, currentScene.nodes[i], null);
  1232. }
  1233. }
  1234. }
  1235. // Set animations
  1236. loadAnimations(gltfRuntime);
  1237. for (var i = 0; i < gltfRuntime.scene.skeletons.length; i++) {
  1238. var skeleton = gltfRuntime.scene.skeletons[i];
  1239. gltfRuntime.scene.beginAnimation(skeleton, 0, Number.MAX_VALUE, true, 1.0);
  1240. }
  1241. };
  1242. /**
  1243. * onBind shaderrs callback to set uniforms and matrices
  1244. */
  1245. var onBindShaderMaterial = function (mesh, gltfRuntime, unTreatedUniforms, shaderMaterial, technique, material, onSuccess) {
  1246. var materialValues = material.values || technique.parameters;
  1247. for (var unif in unTreatedUniforms) {
  1248. var uniform = unTreatedUniforms[unif];
  1249. var type = uniform.type;
  1250. if (type === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EParameterType"].FLOAT_MAT2 || type === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EParameterType"].FLOAT_MAT3 || type === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EParameterType"].FLOAT_MAT4) {
  1251. if (uniform.semantic && !uniform.source && !uniform.node) {
  1252. _glTFLoaderUtils__WEBPACK_IMPORTED_MODULE_2__["GLTFUtils"].SetMatrix(gltfRuntime.scene, mesh, uniform, unif, shaderMaterial.getEffect());
  1253. }
  1254. else if (uniform.semantic && (uniform.source || uniform.node)) {
  1255. var source = gltfRuntime.scene.getNodeByName(uniform.source || uniform.node || "");
  1256. if (source === null) {
  1257. source = gltfRuntime.scene.getNodeByID(uniform.source || uniform.node || "");
  1258. }
  1259. if (source === null) {
  1260. continue;
  1261. }
  1262. _glTFLoaderUtils__WEBPACK_IMPORTED_MODULE_2__["GLTFUtils"].SetMatrix(gltfRuntime.scene, source, uniform, unif, shaderMaterial.getEffect());
  1263. }
  1264. }
  1265. else {
  1266. var value = materialValues[technique.uniforms[unif]];
  1267. if (!value) {
  1268. continue;
  1269. }
  1270. if (type === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EParameterType"].SAMPLER_2D) {
  1271. var texture = gltfRuntime.textures[material.values ? value : uniform.value].babylonTexture;
  1272. if (texture === null || texture === undefined) {
  1273. continue;
  1274. }
  1275. shaderMaterial.getEffect().setTexture(unif, texture);
  1276. }
  1277. else {
  1278. _glTFLoaderUtils__WEBPACK_IMPORTED_MODULE_2__["GLTFUtils"].SetUniform((shaderMaterial.getEffect()), unif, value, type);
  1279. }
  1280. }
  1281. }
  1282. onSuccess(shaderMaterial);
  1283. };
  1284. /**
  1285. * Prepare uniforms to send the only one time
  1286. * Loads the appropriate textures
  1287. */
  1288. var prepareShaderMaterialUniforms = function (gltfRuntime, shaderMaterial, technique, material, unTreatedUniforms) {
  1289. var materialValues = material.values || technique.parameters;
  1290. var techniqueUniforms = technique.uniforms;
  1291. /**
  1292. * Prepare values here (not matrices)
  1293. */
  1294. for (var unif in unTreatedUniforms) {
  1295. var uniform = unTreatedUniforms[unif];
  1296. var type = uniform.type;
  1297. var value = materialValues[techniqueUniforms[unif]];
  1298. if (value === undefined) {
  1299. // In case the value is the same for all materials
  1300. value = uniform.value;
  1301. }
  1302. if (!value) {
  1303. continue;
  1304. }
  1305. var onLoadTexture = function (uniformName) {
  1306. return function (texture) {
  1307. if (uniform.value && uniformName) {
  1308. // Static uniform
  1309. shaderMaterial.setTexture(uniformName, texture);
  1310. delete unTreatedUniforms[uniformName];
  1311. }
  1312. };
  1313. };
  1314. // Texture (sampler2D)
  1315. if (type === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EParameterType"].SAMPLER_2D) {
  1316. GLTFLoaderExtension.LoadTextureAsync(gltfRuntime, material.values ? value : uniform.value, onLoadTexture(unif), function () { return onLoadTexture(null); });
  1317. }
  1318. // Others
  1319. else {
  1320. if (uniform.value && _glTFLoaderUtils__WEBPACK_IMPORTED_MODULE_2__["GLTFUtils"].SetUniform(shaderMaterial, unif, material.values ? value : uniform.value, type)) {
  1321. // Static uniform
  1322. delete unTreatedUniforms[unif];
  1323. }
  1324. }
  1325. }
  1326. };
  1327. /**
  1328. * Shader compilation failed
  1329. */
  1330. var onShaderCompileError = function (program, shaderMaterial, onError) {
  1331. return function (effect, error) {
  1332. shaderMaterial.dispose(true);
  1333. onError("Cannot compile program named " + program.name + ". Error: " + error + ". Default material will be applied");
  1334. };
  1335. };
  1336. /**
  1337. * Shader compilation success
  1338. */
  1339. var onShaderCompileSuccess = function (gltfRuntime, shaderMaterial, technique, material, unTreatedUniforms, onSuccess) {
  1340. return function (_) {
  1341. prepareShaderMaterialUniforms(gltfRuntime, shaderMaterial, technique, material, unTreatedUniforms);
  1342. shaderMaterial.onBind = function (mesh) {
  1343. onBindShaderMaterial(mesh, gltfRuntime, unTreatedUniforms, shaderMaterial, technique, material, onSuccess);
  1344. };
  1345. };
  1346. };
  1347. /**
  1348. * Returns the appropriate uniform if already handled by babylon
  1349. */
  1350. var parseShaderUniforms = function (tokenizer, technique, unTreatedUniforms) {
  1351. for (var unif in technique.uniforms) {
  1352. var uniform = technique.uniforms[unif];
  1353. var uniformParameter = technique.parameters[uniform];
  1354. if (tokenizer.currentIdentifier === unif) {
  1355. if (uniformParameter.semantic && !uniformParameter.source && !uniformParameter.node) {
  1356. var transformIndex = glTFTransforms.indexOf(uniformParameter.semantic);
  1357. if (transformIndex !== -1) {
  1358. delete unTreatedUniforms[unif];
  1359. return babylonTransforms[transformIndex];
  1360. }
  1361. }
  1362. }
  1363. }
  1364. return tokenizer.currentIdentifier;
  1365. };
  1366. /**
  1367. * All shaders loaded. Create materials one by one
  1368. */
  1369. var importMaterials = function (gltfRuntime) {
  1370. // Create materials
  1371. for (var mat in gltfRuntime.materials) {
  1372. GLTFLoaderExtension.LoadMaterialAsync(gltfRuntime, mat, function (material) { }, function () { });
  1373. }
  1374. };
  1375. /**
  1376. * Implementation of the base glTF spec
  1377. * @hidden
  1378. */
  1379. var GLTFLoaderBase = /** @class */ (function () {
  1380. function GLTFLoaderBase() {
  1381. }
  1382. GLTFLoaderBase.CreateRuntime = function (parsedData, scene, rootUrl) {
  1383. var gltfRuntime = {
  1384. extensions: {},
  1385. accessors: {},
  1386. buffers: {},
  1387. bufferViews: {},
  1388. meshes: {},
  1389. lights: {},
  1390. cameras: {},
  1391. nodes: {},
  1392. images: {},
  1393. textures: {},
  1394. shaders: {},
  1395. programs: {},
  1396. samplers: {},
  1397. techniques: {},
  1398. materials: {},
  1399. animations: {},
  1400. skins: {},
  1401. extensionsUsed: [],
  1402. scenes: {},
  1403. buffersCount: 0,
  1404. shaderscount: 0,
  1405. scene: scene,
  1406. rootUrl: rootUrl,
  1407. loadedBufferCount: 0,
  1408. loadedBufferViews: {},
  1409. loadedShaderCount: 0,
  1410. importOnlyMeshes: false,
  1411. dummyNodes: []
  1412. };
  1413. // Parse
  1414. if (parsedData.extensions) {
  1415. parseObject(parsedData.extensions, "extensions", gltfRuntime);
  1416. }
  1417. if (parsedData.extensionsUsed) {
  1418. parseObject(parsedData.extensionsUsed, "extensionsUsed", gltfRuntime);
  1419. }
  1420. if (parsedData.buffers) {
  1421. parseBuffers(parsedData.buffers, gltfRuntime);
  1422. }
  1423. if (parsedData.bufferViews) {
  1424. parseObject(parsedData.bufferViews, "bufferViews", gltfRuntime);
  1425. }
  1426. if (parsedData.accessors) {
  1427. parseObject(parsedData.accessors, "accessors", gltfRuntime);
  1428. }
  1429. if (parsedData.meshes) {
  1430. parseObject(parsedData.meshes, "meshes", gltfRuntime);
  1431. }
  1432. if (parsedData.lights) {
  1433. parseObject(parsedData.lights, "lights", gltfRuntime);
  1434. }
  1435. if (parsedData.cameras) {
  1436. parseObject(parsedData.cameras, "cameras", gltfRuntime);
  1437. }
  1438. if (parsedData.nodes) {
  1439. parseObject(parsedData.nodes, "nodes", gltfRuntime);
  1440. }
  1441. if (parsedData.images) {
  1442. parseObject(parsedData.images, "images", gltfRuntime);
  1443. }
  1444. if (parsedData.textures) {
  1445. parseObject(parsedData.textures, "textures", gltfRuntime);
  1446. }
  1447. if (parsedData.shaders) {
  1448. parseShaders(parsedData.shaders, gltfRuntime);
  1449. }
  1450. if (parsedData.programs) {
  1451. parseObject(parsedData.programs, "programs", gltfRuntime);
  1452. }
  1453. if (parsedData.samplers) {
  1454. parseObject(parsedData.samplers, "samplers", gltfRuntime);
  1455. }
  1456. if (parsedData.techniques) {
  1457. parseObject(parsedData.techniques, "techniques", gltfRuntime);
  1458. }
  1459. if (parsedData.materials) {
  1460. parseObject(parsedData.materials, "materials", gltfRuntime);
  1461. }
  1462. if (parsedData.animations) {
  1463. parseObject(parsedData.animations, "animations", gltfRuntime);
  1464. }
  1465. if (parsedData.skins) {
  1466. parseObject(parsedData.skins, "skins", gltfRuntime);
  1467. }
  1468. if (parsedData.scenes) {
  1469. gltfRuntime.scenes = parsedData.scenes;
  1470. }
  1471. if (parsedData.scene && parsedData.scenes) {
  1472. gltfRuntime.currentScene = parsedData.scenes[parsedData.scene];
  1473. }
  1474. return gltfRuntime;
  1475. };
  1476. GLTFLoaderBase.LoadBufferAsync = function (gltfRuntime, id, onSuccess, onError, onProgress) {
  1477. var buffer = gltfRuntime.buffers[id];
  1478. if (babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].IsBase64(buffer.uri)) {
  1479. setTimeout(function () { return onSuccess(new Uint8Array(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].DecodeBase64(buffer.uri))); });
  1480. }
  1481. else {
  1482. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].LoadFile(gltfRuntime.rootUrl + buffer.uri, function (data) { return onSuccess(new Uint8Array(data)); }, onProgress, undefined, true, function (request) {
  1483. if (request) {
  1484. onError(request.status + " " + request.statusText);
  1485. }
  1486. });
  1487. }
  1488. };
  1489. GLTFLoaderBase.LoadTextureBufferAsync = function (gltfRuntime, id, onSuccess, onError) {
  1490. var texture = gltfRuntime.textures[id];
  1491. if (!texture || !texture.source) {
  1492. onError("");
  1493. return;
  1494. }
  1495. if (texture.babylonTexture) {
  1496. onSuccess(null);
  1497. return;
  1498. }
  1499. var source = gltfRuntime.images[texture.source];
  1500. if (babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].IsBase64(source.uri)) {
  1501. setTimeout(function () { return onSuccess(new Uint8Array(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].DecodeBase64(source.uri))); });
  1502. }
  1503. else {
  1504. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].LoadFile(gltfRuntime.rootUrl + source.uri, function (data) { return onSuccess(new Uint8Array(data)); }, undefined, undefined, true, function (request) {
  1505. if (request) {
  1506. onError(request.status + " " + request.statusText);
  1507. }
  1508. });
  1509. }
  1510. };
  1511. GLTFLoaderBase.CreateTextureAsync = function (gltfRuntime, id, buffer, onSuccess, onError) {
  1512. var texture = gltfRuntime.textures[id];
  1513. if (texture.babylonTexture) {
  1514. onSuccess(texture.babylonTexture);
  1515. return;
  1516. }
  1517. var sampler = gltfRuntime.samplers[texture.sampler];
  1518. var createMipMaps = (sampler.minFilter === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["ETextureFilterType"].NEAREST_MIPMAP_NEAREST) ||
  1519. (sampler.minFilter === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["ETextureFilterType"].NEAREST_MIPMAP_LINEAR) ||
  1520. (sampler.minFilter === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["ETextureFilterType"].LINEAR_MIPMAP_NEAREST) ||
  1521. (sampler.minFilter === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["ETextureFilterType"].LINEAR_MIPMAP_LINEAR);
  1522. var samplingMode = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Texture"].BILINEAR_SAMPLINGMODE;
  1523. var blob = buffer == null ? new Blob() : new Blob([buffer]);
  1524. var blobURL = URL.createObjectURL(blob);
  1525. var revokeBlobURL = function () { return URL.revokeObjectURL(blobURL); };
  1526. var newTexture = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Texture"](blobURL, gltfRuntime.scene, !createMipMaps, true, samplingMode, revokeBlobURL, revokeBlobURL);
  1527. if (sampler.wrapS !== undefined) {
  1528. newTexture.wrapU = _glTFLoaderUtils__WEBPACK_IMPORTED_MODULE_2__["GLTFUtils"].GetWrapMode(sampler.wrapS);
  1529. }
  1530. if (sampler.wrapT !== undefined) {
  1531. newTexture.wrapV = _glTFLoaderUtils__WEBPACK_IMPORTED_MODULE_2__["GLTFUtils"].GetWrapMode(sampler.wrapT);
  1532. }
  1533. newTexture.name = id;
  1534. texture.babylonTexture = newTexture;
  1535. onSuccess(newTexture);
  1536. };
  1537. GLTFLoaderBase.LoadShaderStringAsync = function (gltfRuntime, id, onSuccess, onError) {
  1538. var shader = gltfRuntime.shaders[id];
  1539. if (babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].IsBase64(shader.uri)) {
  1540. var shaderString = atob(shader.uri.split(",")[1]);
  1541. if (onSuccess) {
  1542. onSuccess(shaderString);
  1543. }
  1544. }
  1545. else {
  1546. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].LoadFile(gltfRuntime.rootUrl + shader.uri, onSuccess, undefined, undefined, false, function (request) {
  1547. if (request && onError) {
  1548. onError(request.status + " " + request.statusText);
  1549. }
  1550. });
  1551. }
  1552. };
  1553. GLTFLoaderBase.LoadMaterialAsync = function (gltfRuntime, id, onSuccess, onError) {
  1554. var material = gltfRuntime.materials[id];
  1555. if (!material.technique) {
  1556. if (onError) {
  1557. onError("No technique found.");
  1558. }
  1559. return;
  1560. }
  1561. var technique = gltfRuntime.techniques[material.technique];
  1562. if (!technique) {
  1563. var defaultMaterial = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["StandardMaterial"](id, gltfRuntime.scene);
  1564. defaultMaterial.diffuseColor = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Color3"](0.5, 0.5, 0.5);
  1565. defaultMaterial.sideOrientation = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].CounterClockWiseSideOrientation;
  1566. onSuccess(defaultMaterial);
  1567. return;
  1568. }
  1569. var program = gltfRuntime.programs[technique.program];
  1570. var states = technique.states;
  1571. var vertexShader = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Effect"].ShadersStore[program.vertexShader + "VertexShader"];
  1572. var pixelShader = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Effect"].ShadersStore[program.fragmentShader + "PixelShader"];
  1573. var newVertexShader = "";
  1574. var newPixelShader = "";
  1575. var vertexTokenizer = new Tokenizer(vertexShader);
  1576. var pixelTokenizer = new Tokenizer(pixelShader);
  1577. var unTreatedUniforms = {};
  1578. var uniforms = [];
  1579. var attributes = [];
  1580. var samplers = [];
  1581. // Fill uniform, sampler2D and attributes
  1582. for (var unif in technique.uniforms) {
  1583. var uniform = technique.uniforms[unif];
  1584. var uniformParameter = technique.parameters[uniform];
  1585. unTreatedUniforms[unif] = uniformParameter;
  1586. if (uniformParameter.semantic && !uniformParameter.node && !uniformParameter.source) {
  1587. var transformIndex = glTFTransforms.indexOf(uniformParameter.semantic);
  1588. if (transformIndex !== -1) {
  1589. uniforms.push(babylonTransforms[transformIndex]);
  1590. delete unTreatedUniforms[unif];
  1591. }
  1592. else {
  1593. uniforms.push(unif);
  1594. }
  1595. }
  1596. else if (uniformParameter.type === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EParameterType"].SAMPLER_2D) {
  1597. samplers.push(unif);
  1598. }
  1599. else {
  1600. uniforms.push(unif);
  1601. }
  1602. }
  1603. for (var attr in technique.attributes) {
  1604. var attribute = technique.attributes[attr];
  1605. var attributeParameter = technique.parameters[attribute];
  1606. if (attributeParameter.semantic) {
  1607. var name_1 = getAttribute(attributeParameter);
  1608. if (name_1) {
  1609. attributes.push(name_1);
  1610. }
  1611. }
  1612. }
  1613. // Configure vertex shader
  1614. while (!vertexTokenizer.isEnd() && vertexTokenizer.getNextToken()) {
  1615. var tokenType = vertexTokenizer.currentToken;
  1616. if (tokenType !== ETokenType.IDENTIFIER) {
  1617. newVertexShader += vertexTokenizer.currentString;
  1618. continue;
  1619. }
  1620. var foundAttribute = false;
  1621. for (var attr in technique.attributes) {
  1622. var attribute = technique.attributes[attr];
  1623. var attributeParameter = technique.parameters[attribute];
  1624. if (vertexTokenizer.currentIdentifier === attr && attributeParameter.semantic) {
  1625. newVertexShader += getAttribute(attributeParameter);
  1626. foundAttribute = true;
  1627. break;
  1628. }
  1629. }
  1630. if (foundAttribute) {
  1631. continue;
  1632. }
  1633. newVertexShader += parseShaderUniforms(vertexTokenizer, technique, unTreatedUniforms);
  1634. }
  1635. // Configure pixel shader
  1636. while (!pixelTokenizer.isEnd() && pixelTokenizer.getNextToken()) {
  1637. var tokenType = pixelTokenizer.currentToken;
  1638. if (tokenType !== ETokenType.IDENTIFIER) {
  1639. newPixelShader += pixelTokenizer.currentString;
  1640. continue;
  1641. }
  1642. newPixelShader += parseShaderUniforms(pixelTokenizer, technique, unTreatedUniforms);
  1643. }
  1644. // Create shader material
  1645. var shaderPath = {
  1646. vertex: program.vertexShader + id,
  1647. fragment: program.fragmentShader + id
  1648. };
  1649. var options = {
  1650. attributes: attributes,
  1651. uniforms: uniforms,
  1652. samplers: samplers,
  1653. needAlphaBlending: states && states.enable && states.enable.indexOf(3042) !== -1
  1654. };
  1655. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Effect"].ShadersStore[program.vertexShader + id + "VertexShader"] = newVertexShader;
  1656. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Effect"].ShadersStore[program.fragmentShader + id + "PixelShader"] = newPixelShader;
  1657. var shaderMaterial = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["ShaderMaterial"](id, gltfRuntime.scene, shaderPath, options);
  1658. shaderMaterial.onError = onShaderCompileError(program, shaderMaterial, onError);
  1659. shaderMaterial.onCompiled = onShaderCompileSuccess(gltfRuntime, shaderMaterial, technique, material, unTreatedUniforms, onSuccess);
  1660. shaderMaterial.sideOrientation = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].CounterClockWiseSideOrientation;
  1661. if (states && states.functions) {
  1662. var functions = states.functions;
  1663. if (functions.cullFace && functions.cullFace[0] !== _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["ECullingType"].BACK) {
  1664. shaderMaterial.backFaceCulling = false;
  1665. }
  1666. var blendFunc = functions.blendFuncSeparate;
  1667. if (blendFunc) {
  1668. if (blendFunc[0] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].SRC_ALPHA && blendFunc[1] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ONE_MINUS_SRC_ALPHA && blendFunc[2] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ONE && blendFunc[3] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ONE) {
  1669. shaderMaterial.alphaMode = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Engine"].ALPHA_COMBINE;
  1670. }
  1671. else if (blendFunc[0] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ONE && blendFunc[1] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ONE && blendFunc[2] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ZERO && blendFunc[3] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ONE) {
  1672. shaderMaterial.alphaMode = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Engine"].ALPHA_ONEONE;
  1673. }
  1674. else if (blendFunc[0] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].SRC_ALPHA && blendFunc[1] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ONE && blendFunc[2] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ZERO && blendFunc[3] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ONE) {
  1675. shaderMaterial.alphaMode = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Engine"].ALPHA_ADD;
  1676. }
  1677. else if (blendFunc[0] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ZERO && blendFunc[1] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ONE_MINUS_SRC_COLOR && blendFunc[2] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ONE && blendFunc[3] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ONE) {
  1678. shaderMaterial.alphaMode = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Engine"].ALPHA_SUBTRACT;
  1679. }
  1680. else if (blendFunc[0] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].DST_COLOR && blendFunc[1] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ZERO && blendFunc[2] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ONE && blendFunc[3] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ONE) {
  1681. shaderMaterial.alphaMode = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Engine"].ALPHA_MULTIPLY;
  1682. }
  1683. else if (blendFunc[0] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].SRC_ALPHA && blendFunc[1] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ONE_MINUS_SRC_COLOR && blendFunc[2] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ONE && blendFunc[3] === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EBlendingFunction"].ONE) {
  1684. shaderMaterial.alphaMode = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Engine"].ALPHA_MAXIMIZED;
  1685. }
  1686. }
  1687. }
  1688. };
  1689. return GLTFLoaderBase;
  1690. }());
  1691. /**
  1692. * glTF V1 Loader
  1693. * @hidden
  1694. */
  1695. var GLTFLoader = /** @class */ (function () {
  1696. function GLTFLoader() {
  1697. this.state = null;
  1698. }
  1699. GLTFLoader.RegisterExtension = function (extension) {
  1700. if (GLTFLoader.Extensions[extension.name]) {
  1701. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error("Tool with the same name \"" + extension.name + "\" already exists");
  1702. return;
  1703. }
  1704. GLTFLoader.Extensions[extension.name] = extension;
  1705. };
  1706. GLTFLoader.prototype.dispose = function () {
  1707. // do nothing
  1708. };
  1709. GLTFLoader.prototype._importMeshAsync = function (meshesNames, scene, data, rootUrl, onSuccess, onProgress, onError) {
  1710. var _this = this;
  1711. scene.useRightHandedSystem = true;
  1712. GLTFLoaderExtension.LoadRuntimeAsync(scene, data, rootUrl, function (gltfRuntime) {
  1713. gltfRuntime.importOnlyMeshes = true;
  1714. if (meshesNames === "") {
  1715. gltfRuntime.importMeshesNames = [];
  1716. }
  1717. else if (typeof meshesNames === "string") {
  1718. gltfRuntime.importMeshesNames = [meshesNames];
  1719. }
  1720. else if (meshesNames && !(meshesNames instanceof Array)) {
  1721. gltfRuntime.importMeshesNames = [meshesNames];
  1722. }
  1723. else {
  1724. gltfRuntime.importMeshesNames = [];
  1725. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Warn("Argument meshesNames must be of type string or string[]");
  1726. }
  1727. // Create nodes
  1728. _this._createNodes(gltfRuntime);
  1729. var meshes = new Array();
  1730. var skeletons = new Array();
  1731. // Fill arrays of meshes and skeletons
  1732. for (var nde in gltfRuntime.nodes) {
  1733. var node = gltfRuntime.nodes[nde];
  1734. if (node.babylonNode instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["AbstractMesh"]) {
  1735. meshes.push(node.babylonNode);
  1736. }
  1737. }
  1738. for (var skl in gltfRuntime.skins) {
  1739. var skin = gltfRuntime.skins[skl];
  1740. if (skin.babylonSkeleton instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Skeleton"]) {
  1741. skeletons.push(skin.babylonSkeleton);
  1742. }
  1743. }
  1744. // Load buffers, shaders, materials, etc.
  1745. _this._loadBuffersAsync(gltfRuntime, function () {
  1746. _this._loadShadersAsync(gltfRuntime, function () {
  1747. importMaterials(gltfRuntime);
  1748. postLoad(gltfRuntime);
  1749. if (!_glTFFileLoader__WEBPACK_IMPORTED_MODULE_3__["GLTFFileLoader"].IncrementalLoading && onSuccess) {
  1750. onSuccess(meshes, skeletons);
  1751. }
  1752. });
  1753. }, onProgress);
  1754. if (_glTFFileLoader__WEBPACK_IMPORTED_MODULE_3__["GLTFFileLoader"].IncrementalLoading && onSuccess) {
  1755. onSuccess(meshes, skeletons);
  1756. }
  1757. }, onError);
  1758. return true;
  1759. };
  1760. /**
  1761. * Imports one or more meshes from a loaded gltf file and adds them to the scene
  1762. * @param meshesNames a string or array of strings of the mesh names that should be loaded from the file
  1763. * @param scene the scene the meshes should be added to
  1764. * @param data gltf data containing information of the meshes in a loaded file
  1765. * @param rootUrl root url to load from
  1766. * @param onProgress event that fires when loading progress has occured
  1767. * @returns a promise containg the loaded meshes, particles, skeletons and animations
  1768. */
  1769. GLTFLoader.prototype.importMeshAsync = function (meshesNames, scene, data, rootUrl, onProgress) {
  1770. var _this = this;
  1771. return new Promise(function (resolve, reject) {
  1772. _this._importMeshAsync(meshesNames, scene, data, rootUrl, function (meshes, skeletons) {
  1773. resolve({
  1774. meshes: meshes,
  1775. particleSystems: [],
  1776. skeletons: skeletons,
  1777. animationGroups: []
  1778. });
  1779. }, onProgress, function (message) {
  1780. reject(new Error(message));
  1781. });
  1782. });
  1783. };
  1784. GLTFLoader.prototype._loadAsync = function (scene, data, rootUrl, onSuccess, onProgress, onError) {
  1785. var _this = this;
  1786. scene.useRightHandedSystem = true;
  1787. GLTFLoaderExtension.LoadRuntimeAsync(scene, data, rootUrl, function (gltfRuntime) {
  1788. // Load runtime extensios
  1789. GLTFLoaderExtension.LoadRuntimeExtensionsAsync(gltfRuntime, function () {
  1790. // Create nodes
  1791. _this._createNodes(gltfRuntime);
  1792. // Load buffers, shaders, materials, etc.
  1793. _this._loadBuffersAsync(gltfRuntime, function () {
  1794. _this._loadShadersAsync(gltfRuntime, function () {
  1795. importMaterials(gltfRuntime);
  1796. postLoad(gltfRuntime);
  1797. if (!_glTFFileLoader__WEBPACK_IMPORTED_MODULE_3__["GLTFFileLoader"].IncrementalLoading) {
  1798. onSuccess();
  1799. }
  1800. });
  1801. });
  1802. if (_glTFFileLoader__WEBPACK_IMPORTED_MODULE_3__["GLTFFileLoader"].IncrementalLoading) {
  1803. onSuccess();
  1804. }
  1805. }, onError);
  1806. }, onError);
  1807. };
  1808. /**
  1809. * Imports all objects from a loaded gltf file and adds them to the scene
  1810. * @param scene the scene the objects should be added to
  1811. * @param data gltf data containing information of the meshes in a loaded file
  1812. * @param rootUrl root url to load from
  1813. * @param onProgress event that fires when loading progress has occured
  1814. * @returns a promise which completes when objects have been loaded to the scene
  1815. */
  1816. GLTFLoader.prototype.loadAsync = function (scene, data, rootUrl, onProgress) {
  1817. var _this = this;
  1818. return new Promise(function (resolve, reject) {
  1819. _this._loadAsync(scene, data, rootUrl, function () {
  1820. resolve();
  1821. }, onProgress, function (message) {
  1822. reject(new Error(message));
  1823. });
  1824. });
  1825. };
  1826. GLTFLoader.prototype._loadShadersAsync = function (gltfRuntime, onload) {
  1827. var hasShaders = false;
  1828. var processShader = function (sha, shader) {
  1829. GLTFLoaderExtension.LoadShaderStringAsync(gltfRuntime, sha, function (shaderString) {
  1830. if (shaderString instanceof ArrayBuffer) {
  1831. return;
  1832. }
  1833. gltfRuntime.loadedShaderCount++;
  1834. if (shaderString) {
  1835. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Effect"].ShadersStore[sha + (shader.type === _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EShaderType"].VERTEX ? "VertexShader" : "PixelShader")] = shaderString;
  1836. }
  1837. if (gltfRuntime.loadedShaderCount === gltfRuntime.shaderscount) {
  1838. onload();
  1839. }
  1840. }, function () {
  1841. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error("Error when loading shader program named " + sha + " located at " + shader.uri);
  1842. });
  1843. };
  1844. for (var sha in gltfRuntime.shaders) {
  1845. hasShaders = true;
  1846. var shader = gltfRuntime.shaders[sha];
  1847. if (shader) {
  1848. processShader.bind(this, sha, shader)();
  1849. }
  1850. else {
  1851. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error("No shader named: " + sha);
  1852. }
  1853. }
  1854. if (!hasShaders) {
  1855. onload();
  1856. }
  1857. };
  1858. GLTFLoader.prototype._loadBuffersAsync = function (gltfRuntime, onLoad, onProgress) {
  1859. var hasBuffers = false;
  1860. var processBuffer = function (buf, buffer) {
  1861. GLTFLoaderExtension.LoadBufferAsync(gltfRuntime, buf, function (bufferView) {
  1862. gltfRuntime.loadedBufferCount++;
  1863. if (bufferView) {
  1864. if (bufferView.byteLength != gltfRuntime.buffers[buf].byteLength) {
  1865. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error("Buffer named " + buf + " is length " + bufferView.byteLength + ". Expected: " + buffer.byteLength); // Improve error message
  1866. }
  1867. gltfRuntime.loadedBufferViews[buf] = bufferView;
  1868. }
  1869. if (gltfRuntime.loadedBufferCount === gltfRuntime.buffersCount) {
  1870. onLoad();
  1871. }
  1872. }, function () {
  1873. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error("Error when loading buffer named " + buf + " located at " + buffer.uri);
  1874. });
  1875. };
  1876. for (var buf in gltfRuntime.buffers) {
  1877. hasBuffers = true;
  1878. var buffer = gltfRuntime.buffers[buf];
  1879. if (buffer) {
  1880. processBuffer.bind(this, buf, buffer)();
  1881. }
  1882. else {
  1883. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error("No buffer named: " + buf);
  1884. }
  1885. }
  1886. if (!hasBuffers) {
  1887. onLoad();
  1888. }
  1889. };
  1890. GLTFLoader.prototype._createNodes = function (gltfRuntime) {
  1891. var currentScene = gltfRuntime.currentScene;
  1892. if (currentScene) {
  1893. // Only one scene even if multiple scenes are defined
  1894. for (var i = 0; i < currentScene.nodes.length; i++) {
  1895. traverseNodes(gltfRuntime, currentScene.nodes[i], null);
  1896. }
  1897. }
  1898. else {
  1899. // Load all scenes
  1900. for (var thing in gltfRuntime.scenes) {
  1901. currentScene = gltfRuntime.scenes[thing];
  1902. for (var i = 0; i < currentScene.nodes.length; i++) {
  1903. traverseNodes(gltfRuntime, currentScene.nodes[i], null);
  1904. }
  1905. }
  1906. }
  1907. };
  1908. GLTFLoader.Extensions = {};
  1909. return GLTFLoader;
  1910. }());
  1911. /** @hidden */
  1912. var GLTFLoaderExtension = /** @class */ (function () {
  1913. function GLTFLoaderExtension(name) {
  1914. this._name = name;
  1915. }
  1916. Object.defineProperty(GLTFLoaderExtension.prototype, "name", {
  1917. get: function () {
  1918. return this._name;
  1919. },
  1920. enumerable: true,
  1921. configurable: true
  1922. });
  1923. /**
  1924. * Defines an override for loading the runtime
  1925. * Return true to stop further extensions from loading the runtime
  1926. */
  1927. GLTFLoaderExtension.prototype.loadRuntimeAsync = function (scene, data, rootUrl, onSuccess, onError) {
  1928. return false;
  1929. };
  1930. /**
  1931. * Defines an onverride for creating gltf runtime
  1932. * Return true to stop further extensions from creating the runtime
  1933. */
  1934. GLTFLoaderExtension.prototype.loadRuntimeExtensionsAsync = function (gltfRuntime, onSuccess, onError) {
  1935. return false;
  1936. };
  1937. /**
  1938. * Defines an override for loading buffers
  1939. * Return true to stop further extensions from loading this buffer
  1940. */
  1941. GLTFLoaderExtension.prototype.loadBufferAsync = function (gltfRuntime, id, onSuccess, onError, onProgress) {
  1942. return false;
  1943. };
  1944. /**
  1945. * Defines an override for loading texture buffers
  1946. * Return true to stop further extensions from loading this texture data
  1947. */
  1948. GLTFLoaderExtension.prototype.loadTextureBufferAsync = function (gltfRuntime, id, onSuccess, onError) {
  1949. return false;
  1950. };
  1951. /**
  1952. * Defines an override for creating textures
  1953. * Return true to stop further extensions from loading this texture
  1954. */
  1955. GLTFLoaderExtension.prototype.createTextureAsync = function (gltfRuntime, id, buffer, onSuccess, onError) {
  1956. return false;
  1957. };
  1958. /**
  1959. * Defines an override for loading shader strings
  1960. * Return true to stop further extensions from loading this shader data
  1961. */
  1962. GLTFLoaderExtension.prototype.loadShaderStringAsync = function (gltfRuntime, id, onSuccess, onError) {
  1963. return false;
  1964. };
  1965. /**
  1966. * Defines an override for loading materials
  1967. * Return true to stop further extensions from loading this material
  1968. */
  1969. GLTFLoaderExtension.prototype.loadMaterialAsync = function (gltfRuntime, id, onSuccess, onError) {
  1970. return false;
  1971. };
  1972. // ---------
  1973. // Utilities
  1974. // ---------
  1975. GLTFLoaderExtension.LoadRuntimeAsync = function (scene, data, rootUrl, onSuccess, onError) {
  1976. GLTFLoaderExtension.ApplyExtensions(function (loaderExtension) {
  1977. return loaderExtension.loadRuntimeAsync(scene, data, rootUrl, onSuccess, onError);
  1978. }, function () {
  1979. setTimeout(function () {
  1980. if (!onSuccess) {
  1981. return;
  1982. }
  1983. onSuccess(GLTFLoaderBase.CreateRuntime(data.json, scene, rootUrl));
  1984. });
  1985. });
  1986. };
  1987. GLTFLoaderExtension.LoadRuntimeExtensionsAsync = function (gltfRuntime, onSuccess, onError) {
  1988. GLTFLoaderExtension.ApplyExtensions(function (loaderExtension) {
  1989. return loaderExtension.loadRuntimeExtensionsAsync(gltfRuntime, onSuccess, onError);
  1990. }, function () {
  1991. setTimeout(function () {
  1992. onSuccess();
  1993. });
  1994. });
  1995. };
  1996. GLTFLoaderExtension.LoadBufferAsync = function (gltfRuntime, id, onSuccess, onError, onProgress) {
  1997. GLTFLoaderExtension.ApplyExtensions(function (loaderExtension) {
  1998. return loaderExtension.loadBufferAsync(gltfRuntime, id, onSuccess, onError, onProgress);
  1999. }, function () {
  2000. GLTFLoaderBase.LoadBufferAsync(gltfRuntime, id, onSuccess, onError, onProgress);
  2001. });
  2002. };
  2003. GLTFLoaderExtension.LoadTextureAsync = function (gltfRuntime, id, onSuccess, onError) {
  2004. GLTFLoaderExtension.LoadTextureBufferAsync(gltfRuntime, id, function (buffer) {
  2005. if (buffer) {
  2006. GLTFLoaderExtension.CreateTextureAsync(gltfRuntime, id, buffer, onSuccess, onError);
  2007. }
  2008. }, onError);
  2009. };
  2010. GLTFLoaderExtension.LoadShaderStringAsync = function (gltfRuntime, id, onSuccess, onError) {
  2011. GLTFLoaderExtension.ApplyExtensions(function (loaderExtension) {
  2012. return loaderExtension.loadShaderStringAsync(gltfRuntime, id, onSuccess, onError);
  2013. }, function () {
  2014. GLTFLoaderBase.LoadShaderStringAsync(gltfRuntime, id, onSuccess, onError);
  2015. });
  2016. };
  2017. GLTFLoaderExtension.LoadMaterialAsync = function (gltfRuntime, id, onSuccess, onError) {
  2018. GLTFLoaderExtension.ApplyExtensions(function (loaderExtension) {
  2019. return loaderExtension.loadMaterialAsync(gltfRuntime, id, onSuccess, onError);
  2020. }, function () {
  2021. GLTFLoaderBase.LoadMaterialAsync(gltfRuntime, id, onSuccess, onError);
  2022. });
  2023. };
  2024. GLTFLoaderExtension.LoadTextureBufferAsync = function (gltfRuntime, id, onSuccess, onError) {
  2025. GLTFLoaderExtension.ApplyExtensions(function (loaderExtension) {
  2026. return loaderExtension.loadTextureBufferAsync(gltfRuntime, id, onSuccess, onError);
  2027. }, function () {
  2028. GLTFLoaderBase.LoadTextureBufferAsync(gltfRuntime, id, onSuccess, onError);
  2029. });
  2030. };
  2031. GLTFLoaderExtension.CreateTextureAsync = function (gltfRuntime, id, buffer, onSuccess, onError) {
  2032. GLTFLoaderExtension.ApplyExtensions(function (loaderExtension) {
  2033. return loaderExtension.createTextureAsync(gltfRuntime, id, buffer, onSuccess, onError);
  2034. }, function () {
  2035. GLTFLoaderBase.CreateTextureAsync(gltfRuntime, id, buffer, onSuccess, onError);
  2036. });
  2037. };
  2038. GLTFLoaderExtension.ApplyExtensions = function (func, defaultFunc) {
  2039. for (var extensionName in GLTFLoader.Extensions) {
  2040. var loaderExtension = GLTFLoader.Extensions[extensionName];
  2041. if (func(loaderExtension)) {
  2042. return;
  2043. }
  2044. }
  2045. defaultFunc();
  2046. };
  2047. return GLTFLoaderExtension;
  2048. }());
  2049. _glTFFileLoader__WEBPACK_IMPORTED_MODULE_3__["GLTFFileLoader"]._CreateGLTF1Loader = function () { return new GLTFLoader(); };
  2050. /***/ }),
  2051. /***/ "./glTF/1.0/glTFLoaderInterfaces.ts":
  2052. /*!******************************************!*\
  2053. !*** ./glTF/1.0/glTFLoaderInterfaces.ts ***!
  2054. \******************************************/
  2055. /*! exports provided: EComponentType, EShaderType, EParameterType, ETextureWrapMode, ETextureFilterType, ETextureFormat, ECullingType, EBlendingFunction */
  2056. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  2057. "use strict";
  2058. __webpack_require__.r(__webpack_exports__);
  2059. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "EComponentType", function() { return EComponentType; });
  2060. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "EShaderType", function() { return EShaderType; });
  2061. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "EParameterType", function() { return EParameterType; });
  2062. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ETextureWrapMode", function() { return ETextureWrapMode; });
  2063. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ETextureFilterType", function() { return ETextureFilterType; });
  2064. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ETextureFormat", function() { return ETextureFormat; });
  2065. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ECullingType", function() { return ECullingType; });
  2066. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "EBlendingFunction", function() { return EBlendingFunction; });
  2067. /**
  2068. * Enums
  2069. * @hidden
  2070. */
  2071. var EComponentType;
  2072. (function (EComponentType) {
  2073. EComponentType[EComponentType["BYTE"] = 5120] = "BYTE";
  2074. EComponentType[EComponentType["UNSIGNED_BYTE"] = 5121] = "UNSIGNED_BYTE";
  2075. EComponentType[EComponentType["SHORT"] = 5122] = "SHORT";
  2076. EComponentType[EComponentType["UNSIGNED_SHORT"] = 5123] = "UNSIGNED_SHORT";
  2077. EComponentType[EComponentType["FLOAT"] = 5126] = "FLOAT";
  2078. })(EComponentType || (EComponentType = {}));
  2079. /** @hidden */
  2080. var EShaderType;
  2081. (function (EShaderType) {
  2082. EShaderType[EShaderType["FRAGMENT"] = 35632] = "FRAGMENT";
  2083. EShaderType[EShaderType["VERTEX"] = 35633] = "VERTEX";
  2084. })(EShaderType || (EShaderType = {}));
  2085. /** @hidden */
  2086. var EParameterType;
  2087. (function (EParameterType) {
  2088. EParameterType[EParameterType["BYTE"] = 5120] = "BYTE";
  2089. EParameterType[EParameterType["UNSIGNED_BYTE"] = 5121] = "UNSIGNED_BYTE";
  2090. EParameterType[EParameterType["SHORT"] = 5122] = "SHORT";
  2091. EParameterType[EParameterType["UNSIGNED_SHORT"] = 5123] = "UNSIGNED_SHORT";
  2092. EParameterType[EParameterType["INT"] = 5124] = "INT";
  2093. EParameterType[EParameterType["UNSIGNED_INT"] = 5125] = "UNSIGNED_INT";
  2094. EParameterType[EParameterType["FLOAT"] = 5126] = "FLOAT";
  2095. EParameterType[EParameterType["FLOAT_VEC2"] = 35664] = "FLOAT_VEC2";
  2096. EParameterType[EParameterType["FLOAT_VEC3"] = 35665] = "FLOAT_VEC3";
  2097. EParameterType[EParameterType["FLOAT_VEC4"] = 35666] = "FLOAT_VEC4";
  2098. EParameterType[EParameterType["INT_VEC2"] = 35667] = "INT_VEC2";
  2099. EParameterType[EParameterType["INT_VEC3"] = 35668] = "INT_VEC3";
  2100. EParameterType[EParameterType["INT_VEC4"] = 35669] = "INT_VEC4";
  2101. EParameterType[EParameterType["BOOL"] = 35670] = "BOOL";
  2102. EParameterType[EParameterType["BOOL_VEC2"] = 35671] = "BOOL_VEC2";
  2103. EParameterType[EParameterType["BOOL_VEC3"] = 35672] = "BOOL_VEC3";
  2104. EParameterType[EParameterType["BOOL_VEC4"] = 35673] = "BOOL_VEC4";
  2105. EParameterType[EParameterType["FLOAT_MAT2"] = 35674] = "FLOAT_MAT2";
  2106. EParameterType[EParameterType["FLOAT_MAT3"] = 35675] = "FLOAT_MAT3";
  2107. EParameterType[EParameterType["FLOAT_MAT4"] = 35676] = "FLOAT_MAT4";
  2108. EParameterType[EParameterType["SAMPLER_2D"] = 35678] = "SAMPLER_2D";
  2109. })(EParameterType || (EParameterType = {}));
  2110. /** @hidden */
  2111. var ETextureWrapMode;
  2112. (function (ETextureWrapMode) {
  2113. ETextureWrapMode[ETextureWrapMode["CLAMP_TO_EDGE"] = 33071] = "CLAMP_TO_EDGE";
  2114. ETextureWrapMode[ETextureWrapMode["MIRRORED_REPEAT"] = 33648] = "MIRRORED_REPEAT";
  2115. ETextureWrapMode[ETextureWrapMode["REPEAT"] = 10497] = "REPEAT";
  2116. })(ETextureWrapMode || (ETextureWrapMode = {}));
  2117. /** @hidden */
  2118. var ETextureFilterType;
  2119. (function (ETextureFilterType) {
  2120. ETextureFilterType[ETextureFilterType["NEAREST"] = 9728] = "NEAREST";
  2121. ETextureFilterType[ETextureFilterType["LINEAR"] = 9728] = "LINEAR";
  2122. ETextureFilterType[ETextureFilterType["NEAREST_MIPMAP_NEAREST"] = 9984] = "NEAREST_MIPMAP_NEAREST";
  2123. ETextureFilterType[ETextureFilterType["LINEAR_MIPMAP_NEAREST"] = 9985] = "LINEAR_MIPMAP_NEAREST";
  2124. ETextureFilterType[ETextureFilterType["NEAREST_MIPMAP_LINEAR"] = 9986] = "NEAREST_MIPMAP_LINEAR";
  2125. ETextureFilterType[ETextureFilterType["LINEAR_MIPMAP_LINEAR"] = 9987] = "LINEAR_MIPMAP_LINEAR";
  2126. })(ETextureFilterType || (ETextureFilterType = {}));
  2127. /** @hidden */
  2128. var ETextureFormat;
  2129. (function (ETextureFormat) {
  2130. ETextureFormat[ETextureFormat["ALPHA"] = 6406] = "ALPHA";
  2131. ETextureFormat[ETextureFormat["RGB"] = 6407] = "RGB";
  2132. ETextureFormat[ETextureFormat["RGBA"] = 6408] = "RGBA";
  2133. ETextureFormat[ETextureFormat["LUMINANCE"] = 6409] = "LUMINANCE";
  2134. ETextureFormat[ETextureFormat["LUMINANCE_ALPHA"] = 6410] = "LUMINANCE_ALPHA";
  2135. })(ETextureFormat || (ETextureFormat = {}));
  2136. /** @hidden */
  2137. var ECullingType;
  2138. (function (ECullingType) {
  2139. ECullingType[ECullingType["FRONT"] = 1028] = "FRONT";
  2140. ECullingType[ECullingType["BACK"] = 1029] = "BACK";
  2141. ECullingType[ECullingType["FRONT_AND_BACK"] = 1032] = "FRONT_AND_BACK";
  2142. })(ECullingType || (ECullingType = {}));
  2143. /** @hidden */
  2144. var EBlendingFunction;
  2145. (function (EBlendingFunction) {
  2146. EBlendingFunction[EBlendingFunction["ZERO"] = 0] = "ZERO";
  2147. EBlendingFunction[EBlendingFunction["ONE"] = 1] = "ONE";
  2148. EBlendingFunction[EBlendingFunction["SRC_COLOR"] = 768] = "SRC_COLOR";
  2149. EBlendingFunction[EBlendingFunction["ONE_MINUS_SRC_COLOR"] = 769] = "ONE_MINUS_SRC_COLOR";
  2150. EBlendingFunction[EBlendingFunction["DST_COLOR"] = 774] = "DST_COLOR";
  2151. EBlendingFunction[EBlendingFunction["ONE_MINUS_DST_COLOR"] = 775] = "ONE_MINUS_DST_COLOR";
  2152. EBlendingFunction[EBlendingFunction["SRC_ALPHA"] = 770] = "SRC_ALPHA";
  2153. EBlendingFunction[EBlendingFunction["ONE_MINUS_SRC_ALPHA"] = 771] = "ONE_MINUS_SRC_ALPHA";
  2154. EBlendingFunction[EBlendingFunction["DST_ALPHA"] = 772] = "DST_ALPHA";
  2155. EBlendingFunction[EBlendingFunction["ONE_MINUS_DST_ALPHA"] = 773] = "ONE_MINUS_DST_ALPHA";
  2156. EBlendingFunction[EBlendingFunction["CONSTANT_COLOR"] = 32769] = "CONSTANT_COLOR";
  2157. EBlendingFunction[EBlendingFunction["ONE_MINUS_CONSTANT_COLOR"] = 32770] = "ONE_MINUS_CONSTANT_COLOR";
  2158. EBlendingFunction[EBlendingFunction["CONSTANT_ALPHA"] = 32771] = "CONSTANT_ALPHA";
  2159. EBlendingFunction[EBlendingFunction["ONE_MINUS_CONSTANT_ALPHA"] = 32772] = "ONE_MINUS_CONSTANT_ALPHA";
  2160. EBlendingFunction[EBlendingFunction["SRC_ALPHA_SATURATE"] = 776] = "SRC_ALPHA_SATURATE";
  2161. })(EBlendingFunction || (EBlendingFunction = {}));
  2162. /***/ }),
  2163. /***/ "./glTF/1.0/glTFLoaderUtils.ts":
  2164. /*!*************************************!*\
  2165. !*** ./glTF/1.0/glTFLoaderUtils.ts ***!
  2166. \*************************************/
  2167. /*! exports provided: GLTFUtils */
  2168. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  2169. "use strict";
  2170. __webpack_require__.r(__webpack_exports__);
  2171. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GLTFUtils", function() { return GLTFUtils; });
  2172. /* harmony import */ var _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./glTFLoaderInterfaces */ "./glTF/1.0/glTFLoaderInterfaces.ts");
  2173. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! babylonjs/Maths/math */ "babylonjs/Misc/observable");
  2174. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__);
  2175. /**
  2176. * Utils functions for GLTF
  2177. * @hidden
  2178. */
  2179. var GLTFUtils = /** @class */ (function () {
  2180. function GLTFUtils() {
  2181. }
  2182. /**
  2183. * Sets the given "parameter" matrix
  2184. * @param scene: the Scene object
  2185. * @param source: the source node where to pick the matrix
  2186. * @param parameter: the GLTF technique parameter
  2187. * @param uniformName: the name of the shader's uniform
  2188. * @param shaderMaterial: the shader material
  2189. */
  2190. GLTFUtils.SetMatrix = function (scene, source, parameter, uniformName, shaderMaterial) {
  2191. var mat = null;
  2192. if (parameter.semantic === "MODEL") {
  2193. mat = source.getWorldMatrix();
  2194. }
  2195. else if (parameter.semantic === "PROJECTION") {
  2196. mat = scene.getProjectionMatrix();
  2197. }
  2198. else if (parameter.semantic === "VIEW") {
  2199. mat = scene.getViewMatrix();
  2200. }
  2201. else if (parameter.semantic === "MODELVIEWINVERSETRANSPOSE") {
  2202. mat = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Matrix"].Transpose(source.getWorldMatrix().multiply(scene.getViewMatrix()).invert());
  2203. }
  2204. else if (parameter.semantic === "MODELVIEW") {
  2205. mat = source.getWorldMatrix().multiply(scene.getViewMatrix());
  2206. }
  2207. else if (parameter.semantic === "MODELVIEWPROJECTION") {
  2208. mat = source.getWorldMatrix().multiply(scene.getTransformMatrix());
  2209. }
  2210. else if (parameter.semantic === "MODELINVERSE") {
  2211. mat = source.getWorldMatrix().invert();
  2212. }
  2213. else if (parameter.semantic === "VIEWINVERSE") {
  2214. mat = scene.getViewMatrix().invert();
  2215. }
  2216. else if (parameter.semantic === "PROJECTIONINVERSE") {
  2217. mat = scene.getProjectionMatrix().invert();
  2218. }
  2219. else if (parameter.semantic === "MODELVIEWINVERSE") {
  2220. mat = source.getWorldMatrix().multiply(scene.getViewMatrix()).invert();
  2221. }
  2222. else if (parameter.semantic === "MODELVIEWPROJECTIONINVERSE") {
  2223. mat = source.getWorldMatrix().multiply(scene.getTransformMatrix()).invert();
  2224. }
  2225. else if (parameter.semantic === "MODELINVERSETRANSPOSE") {
  2226. mat = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Matrix"].Transpose(source.getWorldMatrix().invert());
  2227. }
  2228. else {
  2229. debugger;
  2230. }
  2231. if (mat) {
  2232. switch (parameter.type) {
  2233. case _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EParameterType"].FLOAT_MAT2:
  2234. shaderMaterial.setMatrix2x2(uniformName, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Matrix"].GetAsMatrix2x2(mat));
  2235. break;
  2236. case _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EParameterType"].FLOAT_MAT3:
  2237. shaderMaterial.setMatrix3x3(uniformName, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Matrix"].GetAsMatrix3x3(mat));
  2238. break;
  2239. case _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EParameterType"].FLOAT_MAT4:
  2240. shaderMaterial.setMatrix(uniformName, mat);
  2241. break;
  2242. default: break;
  2243. }
  2244. }
  2245. };
  2246. /**
  2247. * Sets the given "parameter" matrix
  2248. * @param shaderMaterial: the shader material
  2249. * @param uniform: the name of the shader's uniform
  2250. * @param value: the value of the uniform
  2251. * @param type: the uniform's type (EParameterType FLOAT, VEC2, VEC3 or VEC4)
  2252. */
  2253. GLTFUtils.SetUniform = function (shaderMaterial, uniform, value, type) {
  2254. switch (type) {
  2255. case _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EParameterType"].FLOAT:
  2256. shaderMaterial.setFloat(uniform, value);
  2257. return true;
  2258. case _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EParameterType"].FLOAT_VEC2:
  2259. shaderMaterial.setVector2(uniform, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector2"].FromArray(value));
  2260. return true;
  2261. case _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EParameterType"].FLOAT_VEC3:
  2262. shaderMaterial.setVector3(uniform, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(value));
  2263. return true;
  2264. case _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EParameterType"].FLOAT_VEC4:
  2265. shaderMaterial.setVector4(uniform, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector4"].FromArray(value));
  2266. return true;
  2267. default: return false;
  2268. }
  2269. };
  2270. /**
  2271. * Returns the wrap mode of the texture
  2272. * @param mode: the mode value
  2273. */
  2274. GLTFUtils.GetWrapMode = function (mode) {
  2275. switch (mode) {
  2276. case _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["ETextureWrapMode"].CLAMP_TO_EDGE: return babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Texture"].CLAMP_ADDRESSMODE;
  2277. case _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["ETextureWrapMode"].MIRRORED_REPEAT: return babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Texture"].MIRROR_ADDRESSMODE;
  2278. case _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["ETextureWrapMode"].REPEAT: return babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Texture"].WRAP_ADDRESSMODE;
  2279. default: return babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Texture"].WRAP_ADDRESSMODE;
  2280. }
  2281. };
  2282. /**
  2283. * Returns the byte stride giving an accessor
  2284. * @param accessor: the GLTF accessor objet
  2285. */
  2286. GLTFUtils.GetByteStrideFromType = function (accessor) {
  2287. // Needs this function since "byteStride" isn't requiered in glTF format
  2288. var type = accessor.type;
  2289. switch (type) {
  2290. case "VEC2": return 2;
  2291. case "VEC3": return 3;
  2292. case "VEC4": return 4;
  2293. case "MAT2": return 4;
  2294. case "MAT3": return 9;
  2295. case "MAT4": return 16;
  2296. default: return 1;
  2297. }
  2298. };
  2299. /**
  2300. * Returns the texture filter mode giving a mode value
  2301. * @param mode: the filter mode value
  2302. */
  2303. GLTFUtils.GetTextureFilterMode = function (mode) {
  2304. switch (mode) {
  2305. case _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["ETextureFilterType"].LINEAR:
  2306. case _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["ETextureFilterType"].LINEAR_MIPMAP_NEAREST:
  2307. case _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["ETextureFilterType"].LINEAR_MIPMAP_LINEAR: return babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Texture"].TRILINEAR_SAMPLINGMODE;
  2308. case _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["ETextureFilterType"].NEAREST:
  2309. case _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["ETextureFilterType"].NEAREST_MIPMAP_NEAREST: return babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Texture"].NEAREST_SAMPLINGMODE;
  2310. default: return babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Texture"].BILINEAR_SAMPLINGMODE;
  2311. }
  2312. };
  2313. GLTFUtils.GetBufferFromBufferView = function (gltfRuntime, bufferView, byteOffset, byteLength, componentType) {
  2314. var byteOffset = bufferView.byteOffset + byteOffset;
  2315. var loadedBufferView = gltfRuntime.loadedBufferViews[bufferView.buffer];
  2316. if (byteOffset + byteLength > loadedBufferView.byteLength) {
  2317. throw new Error("Buffer access is out of range");
  2318. }
  2319. var buffer = loadedBufferView.buffer;
  2320. byteOffset += loadedBufferView.byteOffset;
  2321. switch (componentType) {
  2322. case _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EComponentType"].BYTE: return new Int8Array(buffer, byteOffset, byteLength);
  2323. case _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EComponentType"].UNSIGNED_BYTE: return new Uint8Array(buffer, byteOffset, byteLength);
  2324. case _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EComponentType"].SHORT: return new Int16Array(buffer, byteOffset, byteLength);
  2325. case _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_0__["EComponentType"].UNSIGNED_SHORT: return new Uint16Array(buffer, byteOffset, byteLength);
  2326. default: return new Float32Array(buffer, byteOffset, byteLength);
  2327. }
  2328. };
  2329. /**
  2330. * Returns a buffer from its accessor
  2331. * @param gltfRuntime: the GLTF runtime
  2332. * @param accessor: the GLTF accessor
  2333. */
  2334. GLTFUtils.GetBufferFromAccessor = function (gltfRuntime, accessor) {
  2335. var bufferView = gltfRuntime.bufferViews[accessor.bufferView];
  2336. var byteLength = accessor.count * GLTFUtils.GetByteStrideFromType(accessor);
  2337. return GLTFUtils.GetBufferFromBufferView(gltfRuntime, bufferView, accessor.byteOffset, byteLength, accessor.componentType);
  2338. };
  2339. /**
  2340. * Decodes a buffer view into a string
  2341. * @param view: the buffer view
  2342. */
  2343. GLTFUtils.DecodeBufferToText = function (view) {
  2344. var result = "";
  2345. var length = view.byteLength;
  2346. for (var i = 0; i < length; ++i) {
  2347. result += String.fromCharCode(view[i]);
  2348. }
  2349. return result;
  2350. };
  2351. /**
  2352. * Returns the default material of gltf. Related to
  2353. * https://github.com/KhronosGroup/glTF/tree/master/specification/1.0#appendix-a-default-material
  2354. * @param scene: the Babylon.js scene
  2355. */
  2356. GLTFUtils.GetDefaultMaterial = function (scene) {
  2357. if (!GLTFUtils._DefaultMaterial) {
  2358. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Effect"].ShadersStore["GLTFDefaultMaterialVertexShader"] = [
  2359. "precision highp float;",
  2360. "",
  2361. "uniform mat4 worldView;",
  2362. "uniform mat4 projection;",
  2363. "",
  2364. "attribute vec3 position;",
  2365. "",
  2366. "void main(void)",
  2367. "{",
  2368. " gl_Position = projection * worldView * vec4(position, 1.0);",
  2369. "}"
  2370. ].join("\n");
  2371. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Effect"].ShadersStore["GLTFDefaultMaterialPixelShader"] = [
  2372. "precision highp float;",
  2373. "",
  2374. "uniform vec4 u_emission;",
  2375. "",
  2376. "void main(void)",
  2377. "{",
  2378. " gl_FragColor = u_emission;",
  2379. "}"
  2380. ].join("\n");
  2381. var shaderPath = {
  2382. vertex: "GLTFDefaultMaterial",
  2383. fragment: "GLTFDefaultMaterial"
  2384. };
  2385. var options = {
  2386. attributes: ["position"],
  2387. uniforms: ["worldView", "projection", "u_emission"],
  2388. samplers: new Array(),
  2389. needAlphaBlending: false
  2390. };
  2391. GLTFUtils._DefaultMaterial = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["ShaderMaterial"]("GLTFDefaultMaterial", scene, shaderPath, options);
  2392. GLTFUtils._DefaultMaterial.setColor4("u_emission", new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Color4"](0.5, 0.5, 0.5, 1.0));
  2393. }
  2394. return GLTFUtils._DefaultMaterial;
  2395. };
  2396. // The GLTF default material
  2397. GLTFUtils._DefaultMaterial = null;
  2398. return GLTFUtils;
  2399. }());
  2400. /***/ }),
  2401. /***/ "./glTF/1.0/glTFMaterialsCommonExtension.ts":
  2402. /*!**************************************************!*\
  2403. !*** ./glTF/1.0/glTFMaterialsCommonExtension.ts ***!
  2404. \**************************************************/
  2405. /*! exports provided: GLTFMaterialsCommonExtension */
  2406. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  2407. "use strict";
  2408. __webpack_require__.r(__webpack_exports__);
  2409. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GLTFMaterialsCommonExtension", function() { return GLTFMaterialsCommonExtension; });
  2410. /* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
  2411. /* harmony import */ var _glTFLoader__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./glTFLoader */ "./glTF/1.0/glTFLoader.ts");
  2412. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! babylonjs/Maths/math */ "babylonjs/Misc/observable");
  2413. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__);
  2414. /** @hidden */
  2415. var GLTFMaterialsCommonExtension = /** @class */ (function (_super) {
  2416. tslib__WEBPACK_IMPORTED_MODULE_0__["__extends"](GLTFMaterialsCommonExtension, _super);
  2417. function GLTFMaterialsCommonExtension() {
  2418. return _super.call(this, "KHR_materials_common") || this;
  2419. }
  2420. GLTFMaterialsCommonExtension.prototype.loadRuntimeExtensionsAsync = function (gltfRuntime, onSuccess, onError) {
  2421. if (!gltfRuntime.extensions) {
  2422. return false;
  2423. }
  2424. var extension = gltfRuntime.extensions[this.name];
  2425. if (!extension) {
  2426. return false;
  2427. }
  2428. // Create lights
  2429. var lights = extension.lights;
  2430. if (lights) {
  2431. for (var thing in lights) {
  2432. var light = lights[thing];
  2433. switch (light.type) {
  2434. case "ambient":
  2435. var ambientLight = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["HemisphericLight"](light.name, new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["Vector3"](0, 1, 0), gltfRuntime.scene);
  2436. var ambient = light.ambient;
  2437. if (ambient) {
  2438. ambientLight.diffuse = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["Color3"].FromArray(ambient.color || [1, 1, 1]);
  2439. }
  2440. break;
  2441. case "point":
  2442. var pointLight = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["PointLight"](light.name, new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["Vector3"](10, 10, 10), gltfRuntime.scene);
  2443. var point = light.point;
  2444. if (point) {
  2445. pointLight.diffuse = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["Color3"].FromArray(point.color || [1, 1, 1]);
  2446. }
  2447. break;
  2448. case "directional":
  2449. var dirLight = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["DirectionalLight"](light.name, new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["Vector3"](0, -1, 0), gltfRuntime.scene);
  2450. var directional = light.directional;
  2451. if (directional) {
  2452. dirLight.diffuse = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["Color3"].FromArray(directional.color || [1, 1, 1]);
  2453. }
  2454. break;
  2455. case "spot":
  2456. var spot = light.spot;
  2457. if (spot) {
  2458. var spotLight = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["SpotLight"](light.name, new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["Vector3"](0, 10, 0), new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["Vector3"](0, -1, 0), spot.fallOffAngle || Math.PI, spot.fallOffExponent || 0.0, gltfRuntime.scene);
  2459. spotLight.diffuse = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["Color3"].FromArray(spot.color || [1, 1, 1]);
  2460. }
  2461. break;
  2462. default:
  2463. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["Tools"].Warn("GLTF Material Common extension: light type \"" + light.type + "\” not supported");
  2464. break;
  2465. }
  2466. }
  2467. }
  2468. return false;
  2469. };
  2470. GLTFMaterialsCommonExtension.prototype.loadMaterialAsync = function (gltfRuntime, id, onSuccess, onError) {
  2471. var material = gltfRuntime.materials[id];
  2472. if (!material || !material.extensions) {
  2473. return false;
  2474. }
  2475. var extension = material.extensions[this.name];
  2476. if (!extension) {
  2477. return false;
  2478. }
  2479. var standardMaterial = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["StandardMaterial"](id, gltfRuntime.scene);
  2480. standardMaterial.sideOrientation = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["Material"].CounterClockWiseSideOrientation;
  2481. if (extension.technique === "CONSTANT") {
  2482. standardMaterial.disableLighting = true;
  2483. }
  2484. standardMaterial.backFaceCulling = extension.doubleSided === undefined ? false : !extension.doubleSided;
  2485. standardMaterial.alpha = extension.values.transparency === undefined ? 1.0 : extension.values.transparency;
  2486. standardMaterial.specularPower = extension.values.shininess === undefined ? 0.0 : extension.values.shininess;
  2487. // Ambient
  2488. if (typeof extension.values.ambient === "string") {
  2489. this._loadTexture(gltfRuntime, extension.values.ambient, standardMaterial, "ambientTexture", onError);
  2490. }
  2491. else {
  2492. standardMaterial.ambientColor = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["Color3"].FromArray(extension.values.ambient || [0, 0, 0]);
  2493. }
  2494. // Diffuse
  2495. if (typeof extension.values.diffuse === "string") {
  2496. this._loadTexture(gltfRuntime, extension.values.diffuse, standardMaterial, "diffuseTexture", onError);
  2497. }
  2498. else {
  2499. standardMaterial.diffuseColor = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["Color3"].FromArray(extension.values.diffuse || [0, 0, 0]);
  2500. }
  2501. // Emission
  2502. if (typeof extension.values.emission === "string") {
  2503. this._loadTexture(gltfRuntime, extension.values.emission, standardMaterial, "emissiveTexture", onError);
  2504. }
  2505. else {
  2506. standardMaterial.emissiveColor = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["Color3"].FromArray(extension.values.emission || [0, 0, 0]);
  2507. }
  2508. // Specular
  2509. if (typeof extension.values.specular === "string") {
  2510. this._loadTexture(gltfRuntime, extension.values.specular, standardMaterial, "specularTexture", onError);
  2511. }
  2512. else {
  2513. standardMaterial.specularColor = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_2__["Color3"].FromArray(extension.values.specular || [0, 0, 0]);
  2514. }
  2515. return true;
  2516. };
  2517. GLTFMaterialsCommonExtension.prototype._loadTexture = function (gltfRuntime, id, material, propertyPath, onError) {
  2518. // Create buffer from texture url
  2519. _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderBase"].LoadTextureBufferAsync(gltfRuntime, id, function (buffer) {
  2520. // Create texture from buffer
  2521. _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderBase"].CreateTextureAsync(gltfRuntime, id, buffer, function (texture) { return material[propertyPath] = texture; }, onError);
  2522. }, onError);
  2523. };
  2524. return GLTFMaterialsCommonExtension;
  2525. }(_glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderExtension"]));
  2526. _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].RegisterExtension(new GLTFMaterialsCommonExtension());
  2527. /***/ }),
  2528. /***/ "./glTF/1.0/index.ts":
  2529. /*!***************************!*\
  2530. !*** ./glTF/1.0/index.ts ***!
  2531. \***************************/
  2532. /*! exports provided: GLTFBinaryExtension, GLTFLoaderBase, GLTFLoader, GLTFLoaderExtension, EComponentType, EShaderType, EParameterType, ETextureWrapMode, ETextureFilterType, ETextureFormat, ECullingType, EBlendingFunction, GLTFUtils, GLTFMaterialsCommonExtension */
  2533. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  2534. "use strict";
  2535. __webpack_require__.r(__webpack_exports__);
  2536. /* harmony import */ var _glTFBinaryExtension__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./glTFBinaryExtension */ "./glTF/1.0/glTFBinaryExtension.ts");
  2537. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFBinaryExtension", function() { return _glTFBinaryExtension__WEBPACK_IMPORTED_MODULE_0__["GLTFBinaryExtension"]; });
  2538. /* harmony import */ var _glTFLoader__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./glTFLoader */ "./glTF/1.0/glTFLoader.ts");
  2539. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFLoaderBase", function() { return _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderBase"]; });
  2540. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFLoader", function() { return _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"]; });
  2541. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFLoaderExtension", function() { return _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderExtension"]; });
  2542. /* harmony import */ var _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./glTFLoaderInterfaces */ "./glTF/1.0/glTFLoaderInterfaces.ts");
  2543. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "EComponentType", function() { return _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_2__["EComponentType"]; });
  2544. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "EShaderType", function() { return _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_2__["EShaderType"]; });
  2545. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "EParameterType", function() { return _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_2__["EParameterType"]; });
  2546. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ETextureWrapMode", function() { return _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_2__["ETextureWrapMode"]; });
  2547. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ETextureFilterType", function() { return _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_2__["ETextureFilterType"]; });
  2548. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ETextureFormat", function() { return _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_2__["ETextureFormat"]; });
  2549. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ECullingType", function() { return _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_2__["ECullingType"]; });
  2550. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "EBlendingFunction", function() { return _glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_2__["EBlendingFunction"]; });
  2551. /* harmony import */ var _glTFLoaderUtils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./glTFLoaderUtils */ "./glTF/1.0/glTFLoaderUtils.ts");
  2552. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFUtils", function() { return _glTFLoaderUtils__WEBPACK_IMPORTED_MODULE_3__["GLTFUtils"]; });
  2553. /* harmony import */ var _glTFMaterialsCommonExtension__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./glTFMaterialsCommonExtension */ "./glTF/1.0/glTFMaterialsCommonExtension.ts");
  2554. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFMaterialsCommonExtension", function() { return _glTFMaterialsCommonExtension__WEBPACK_IMPORTED_MODULE_4__["GLTFMaterialsCommonExtension"]; });
  2555. /***/ }),
  2556. /***/ "./glTF/2.0/Extensions/EXT_lights_image_based.ts":
  2557. /*!*******************************************************!*\
  2558. !*** ./glTF/2.0/Extensions/EXT_lights_image_based.ts ***!
  2559. \*******************************************************/
  2560. /*! exports provided: EXT_lights_image_based */
  2561. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  2562. "use strict";
  2563. __webpack_require__.r(__webpack_exports__);
  2564. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "EXT_lights_image_based", function() { return EXT_lights_image_based; });
  2565. /* harmony import */ var babylonjs_Maths_math_scalar__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Maths/math.scalar */ "babylonjs/Misc/observable");
  2566. /* harmony import */ var babylonjs_Maths_math_scalar__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Maths_math_scalar__WEBPACK_IMPORTED_MODULE_0__);
  2567. /* harmony import */ var _glTFLoader__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../glTFLoader */ "./glTF/2.0/glTFLoader.ts");
  2568. var NAME = "EXT_lights_image_based";
  2569. /**
  2570. * [Specification](https://github.com/KhronosGroup/glTF/blob/eb3e32332042e04691a5f35103f8c261e50d8f1e/extensions/2.0/Khronos/EXT_lights_image_based/README.md) (Experimental)
  2571. */
  2572. var EXT_lights_image_based = /** @class */ (function () {
  2573. /** @hidden */
  2574. function EXT_lights_image_based(loader) {
  2575. /** The name of this extension. */
  2576. this.name = NAME;
  2577. /** Defines whether this extension is enabled. */
  2578. this.enabled = true;
  2579. this._loader = loader;
  2580. }
  2581. /** @hidden */
  2582. EXT_lights_image_based.prototype.dispose = function () {
  2583. delete this._loader;
  2584. delete this._lights;
  2585. };
  2586. /** @hidden */
  2587. EXT_lights_image_based.prototype.onLoading = function () {
  2588. var extensions = this._loader.gltf.extensions;
  2589. if (extensions && extensions[this.name]) {
  2590. var extension = extensions[this.name];
  2591. this._lights = extension.lights;
  2592. }
  2593. };
  2594. /** @hidden */
  2595. EXT_lights_image_based.prototype.loadSceneAsync = function (context, scene) {
  2596. var _this = this;
  2597. return _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].LoadExtensionAsync(context, scene, this.name, function (extensionContext, extension) {
  2598. var promises = new Array();
  2599. promises.push(_this._loader.loadSceneAsync(context, scene));
  2600. _this._loader.logOpen("" + extensionContext);
  2601. var light = _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["ArrayItem"].Get(extensionContext + "/light", _this._lights, extension.light);
  2602. promises.push(_this._loadLightAsync("#/extensions/" + _this.name + "/lights/" + extension.light, light).then(function (texture) {
  2603. _this._loader.babylonScene.environmentTexture = texture;
  2604. }));
  2605. _this._loader.logClose();
  2606. return Promise.all(promises).then(function () { });
  2607. });
  2608. };
  2609. EXT_lights_image_based.prototype._loadLightAsync = function (context, light) {
  2610. var _this = this;
  2611. if (!light._loaded) {
  2612. var promises = new Array();
  2613. this._loader.logOpen("" + context);
  2614. var imageData_1 = new Array(light.specularImages.length);
  2615. var _loop_1 = function (mipmap) {
  2616. var faces = light.specularImages[mipmap];
  2617. imageData_1[mipmap] = new Array(faces.length);
  2618. var _loop_2 = function (face) {
  2619. var specularImageContext = context + "/specularImages/" + mipmap + "/" + face;
  2620. this_1._loader.logOpen("" + specularImageContext);
  2621. var index = faces[face];
  2622. var image = _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["ArrayItem"].Get(specularImageContext, this_1._loader.gltf.images, index);
  2623. promises.push(this_1._loader.loadImageAsync("#/images/" + index, image).then(function (data) {
  2624. imageData_1[mipmap][face] = data;
  2625. }));
  2626. this_1._loader.logClose();
  2627. };
  2628. for (var face = 0; face < faces.length; face++) {
  2629. _loop_2(face);
  2630. }
  2631. };
  2632. var this_1 = this;
  2633. for (var mipmap = 0; mipmap < light.specularImages.length; mipmap++) {
  2634. _loop_1(mipmap);
  2635. }
  2636. this._loader.logClose();
  2637. light._loaded = Promise.all(promises).then(function () {
  2638. var babylonTexture = new babylonjs_Maths_math_scalar__WEBPACK_IMPORTED_MODULE_0__["RawCubeTexture"](_this._loader.babylonScene, null, light.specularImageSize);
  2639. light._babylonTexture = babylonTexture;
  2640. if (light.intensity != undefined) {
  2641. babylonTexture.level = light.intensity;
  2642. }
  2643. if (light.rotation) {
  2644. var rotation = babylonjs_Maths_math_scalar__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].FromArray(light.rotation);
  2645. // Invert the rotation so that positive rotation is counter-clockwise.
  2646. if (!_this._loader.babylonScene.useRightHandedSystem) {
  2647. rotation = babylonjs_Maths_math_scalar__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].Inverse(rotation);
  2648. }
  2649. babylonjs_Maths_math_scalar__WEBPACK_IMPORTED_MODULE_0__["Matrix"].FromQuaternionToRef(rotation, babylonTexture.getReflectionTextureMatrix());
  2650. }
  2651. var sphericalHarmonics = babylonjs_Maths_math_scalar__WEBPACK_IMPORTED_MODULE_0__["SphericalHarmonics"].FromArray(light.irradianceCoefficients);
  2652. sphericalHarmonics.scaleInPlace(light.intensity);
  2653. sphericalHarmonics.convertIrradianceToLambertianRadiance();
  2654. var sphericalPolynomial = babylonjs_Maths_math_scalar__WEBPACK_IMPORTED_MODULE_0__["SphericalPolynomial"].FromHarmonics(sphericalHarmonics);
  2655. // Compute the lod generation scale to fit exactly to the number of levels available.
  2656. var lodGenerationScale = (imageData_1.length - 1) / babylonjs_Maths_math_scalar__WEBPACK_IMPORTED_MODULE_0__["Scalar"].Log2(light.specularImageSize);
  2657. return babylonTexture.updateRGBDAsync(imageData_1, sphericalPolynomial, lodGenerationScale);
  2658. });
  2659. }
  2660. return light._loaded.then(function () {
  2661. return light._babylonTexture;
  2662. });
  2663. };
  2664. return EXT_lights_image_based;
  2665. }());
  2666. _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].RegisterExtension(NAME, function (loader) { return new EXT_lights_image_based(loader); });
  2667. /***/ }),
  2668. /***/ "./glTF/2.0/Extensions/ExtrasAsMetadata.ts":
  2669. /*!*************************************************!*\
  2670. !*** ./glTF/2.0/Extensions/ExtrasAsMetadata.ts ***!
  2671. \*************************************************/
  2672. /*! exports provided: ExtrasAsMetadata */
  2673. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  2674. "use strict";
  2675. __webpack_require__.r(__webpack_exports__);
  2676. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ExtrasAsMetadata", function() { return ExtrasAsMetadata; });
  2677. /* harmony import */ var _glTFLoader__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../glTFLoader */ "./glTF/2.0/glTFLoader.ts");
  2678. var NAME = "ExtrasAsMetadata";
  2679. /**
  2680. * Store glTF extras (if present) in BJS objects' metadata
  2681. */
  2682. var ExtrasAsMetadata = /** @class */ (function () {
  2683. /** @hidden */
  2684. function ExtrasAsMetadata(loader) {
  2685. /** The name of this extension. */
  2686. this.name = NAME;
  2687. /** Defines whether this extension is enabled. */
  2688. this.enabled = true;
  2689. this._loader = loader;
  2690. }
  2691. ExtrasAsMetadata.prototype._assignExtras = function (babylonObject, gltfProp) {
  2692. if (gltfProp.extras && Object.keys(gltfProp.extras).length > 0) {
  2693. var metadata = (babylonObject.metadata = babylonObject.metadata || {});
  2694. var gltf = (metadata.gltf = metadata.gltf || {});
  2695. gltf.extras = gltfProp.extras;
  2696. }
  2697. };
  2698. /** @hidden */
  2699. ExtrasAsMetadata.prototype.dispose = function () {
  2700. delete this._loader;
  2701. };
  2702. /** @hidden */
  2703. ExtrasAsMetadata.prototype.loadNodeAsync = function (context, node, assign) {
  2704. var _this = this;
  2705. return this._loader.loadNodeAsync(context, node, function (babylonTransformNode) {
  2706. _this._assignExtras(babylonTransformNode, node);
  2707. assign(babylonTransformNode);
  2708. });
  2709. };
  2710. /** @hidden */
  2711. ExtrasAsMetadata.prototype.loadCameraAsync = function (context, camera, assign) {
  2712. var _this = this;
  2713. return this._loader.loadCameraAsync(context, camera, function (babylonCamera) {
  2714. _this._assignExtras(babylonCamera, camera);
  2715. assign(babylonCamera);
  2716. });
  2717. };
  2718. /** @hidden */
  2719. ExtrasAsMetadata.prototype.createMaterial = function (context, material, babylonDrawMode) {
  2720. var babylonMaterial = this._loader.createMaterial(context, material, babylonDrawMode);
  2721. this._assignExtras(babylonMaterial, material);
  2722. return babylonMaterial;
  2723. };
  2724. return ExtrasAsMetadata;
  2725. }());
  2726. _glTFLoader__WEBPACK_IMPORTED_MODULE_0__["GLTFLoader"].RegisterExtension(NAME, function (loader) { return new ExtrasAsMetadata(loader); });
  2727. /***/ }),
  2728. /***/ "./glTF/2.0/Extensions/KHR_draco_mesh_compression.ts":
  2729. /*!***********************************************************!*\
  2730. !*** ./glTF/2.0/Extensions/KHR_draco_mesh_compression.ts ***!
  2731. \***********************************************************/
  2732. /*! exports provided: KHR_draco_mesh_compression */
  2733. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  2734. "use strict";
  2735. __webpack_require__.r(__webpack_exports__);
  2736. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "KHR_draco_mesh_compression", function() { return KHR_draco_mesh_compression; });
  2737. /* harmony import */ var babylonjs_Meshes_Compression_dracoCompression__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Meshes/Compression/dracoCompression */ "babylonjs/Misc/observable");
  2738. /* harmony import */ var babylonjs_Meshes_Compression_dracoCompression__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Meshes_Compression_dracoCompression__WEBPACK_IMPORTED_MODULE_0__);
  2739. /* harmony import */ var _glTFLoader__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../glTFLoader */ "./glTF/2.0/glTFLoader.ts");
  2740. var NAME = "KHR_draco_mesh_compression";
  2741. /**
  2742. * [Specification](https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_draco_mesh_compression)
  2743. */
  2744. var KHR_draco_mesh_compression = /** @class */ (function () {
  2745. /** @hidden */
  2746. function KHR_draco_mesh_compression(loader) {
  2747. /** The name of this extension. */
  2748. this.name = NAME;
  2749. /** Defines whether this extension is enabled. */
  2750. this.enabled = babylonjs_Meshes_Compression_dracoCompression__WEBPACK_IMPORTED_MODULE_0__["DracoCompression"].DecoderAvailable;
  2751. this._loader = loader;
  2752. }
  2753. /** @hidden */
  2754. KHR_draco_mesh_compression.prototype.dispose = function () {
  2755. delete this.dracoCompression;
  2756. delete this._loader;
  2757. };
  2758. /** @hidden */
  2759. KHR_draco_mesh_compression.prototype._loadVertexDataAsync = function (context, primitive, babylonMesh) {
  2760. var _this = this;
  2761. return _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].LoadExtensionAsync(context, primitive, this.name, function (extensionContext, extension) {
  2762. if (primitive.mode != undefined) {
  2763. if (primitive.mode !== 5 /* TRIANGLE_STRIP */ &&
  2764. primitive.mode !== 4 /* TRIANGLES */) {
  2765. throw new Error(context + ": Unsupported mode " + primitive.mode);
  2766. }
  2767. // TODO: handle triangle strips
  2768. if (primitive.mode === 5 /* TRIANGLE_STRIP */) {
  2769. throw new Error(context + ": Mode " + primitive.mode + " is not currently supported");
  2770. }
  2771. }
  2772. var attributes = {};
  2773. var loadAttribute = function (name, kind) {
  2774. var uniqueId = extension.attributes[name];
  2775. if (uniqueId == undefined) {
  2776. return;
  2777. }
  2778. babylonMesh._delayInfo = babylonMesh._delayInfo || [];
  2779. if (babylonMesh._delayInfo.indexOf(kind) === -1) {
  2780. babylonMesh._delayInfo.push(kind);
  2781. }
  2782. attributes[kind] = uniqueId;
  2783. };
  2784. loadAttribute("POSITION", babylonjs_Meshes_Compression_dracoCompression__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].PositionKind);
  2785. loadAttribute("NORMAL", babylonjs_Meshes_Compression_dracoCompression__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].NormalKind);
  2786. loadAttribute("TANGENT", babylonjs_Meshes_Compression_dracoCompression__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].TangentKind);
  2787. loadAttribute("TEXCOORD_0", babylonjs_Meshes_Compression_dracoCompression__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].UVKind);
  2788. loadAttribute("TEXCOORD_1", babylonjs_Meshes_Compression_dracoCompression__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].UV2Kind);
  2789. loadAttribute("JOINTS_0", babylonjs_Meshes_Compression_dracoCompression__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].MatricesIndicesKind);
  2790. loadAttribute("WEIGHTS_0", babylonjs_Meshes_Compression_dracoCompression__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].MatricesWeightsKind);
  2791. loadAttribute("COLOR_0", babylonjs_Meshes_Compression_dracoCompression__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].ColorKind);
  2792. var bufferView = _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["ArrayItem"].Get(extensionContext, _this._loader.gltf.bufferViews, extension.bufferView);
  2793. if (!bufferView._dracoBabylonGeometry) {
  2794. bufferView._dracoBabylonGeometry = _this._loader.loadBufferViewAsync("#/bufferViews/" + bufferView.index, bufferView).then(function (data) {
  2795. var dracoCompression = _this.dracoCompression || babylonjs_Meshes_Compression_dracoCompression__WEBPACK_IMPORTED_MODULE_0__["DracoCompression"].Default;
  2796. return dracoCompression.decodeMeshAsync(data, attributes).then(function (babylonVertexData) {
  2797. var babylonGeometry = new babylonjs_Meshes_Compression_dracoCompression__WEBPACK_IMPORTED_MODULE_0__["Geometry"](babylonMesh.name, _this._loader.babylonScene);
  2798. babylonVertexData.applyToGeometry(babylonGeometry);
  2799. return babylonGeometry;
  2800. }).catch(function (error) {
  2801. throw new Error(context + ": " + error.message);
  2802. });
  2803. });
  2804. }
  2805. return bufferView._dracoBabylonGeometry;
  2806. });
  2807. };
  2808. return KHR_draco_mesh_compression;
  2809. }());
  2810. _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].RegisterExtension(NAME, function (loader) { return new KHR_draco_mesh_compression(loader); });
  2811. /***/ }),
  2812. /***/ "./glTF/2.0/Extensions/KHR_lights_punctual.ts":
  2813. /*!****************************************************!*\
  2814. !*** ./glTF/2.0/Extensions/KHR_lights_punctual.ts ***!
  2815. \****************************************************/
  2816. /*! exports provided: KHR_lights */
  2817. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  2818. "use strict";
  2819. __webpack_require__.r(__webpack_exports__);
  2820. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "KHR_lights", function() { return KHR_lights; });
  2821. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Maths/math */ "babylonjs/Misc/observable");
  2822. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__);
  2823. /* harmony import */ var _glTFLoader__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../glTFLoader */ "./glTF/2.0/glTFLoader.ts");
  2824. var NAME = "KHR_lights_punctual";
  2825. var LightType;
  2826. (function (LightType) {
  2827. LightType["DIRECTIONAL"] = "directional";
  2828. LightType["POINT"] = "point";
  2829. LightType["SPOT"] = "spot";
  2830. })(LightType || (LightType = {}));
  2831. /**
  2832. * [Specification](https://github.com/KhronosGroup/glTF/blob/1048d162a44dbcb05aefc1874bfd423cf60135a6/extensions/2.0/Khronos/KHR_lights_punctual/README.md) (Experimental)
  2833. */
  2834. var KHR_lights = /** @class */ (function () {
  2835. /** @hidden */
  2836. function KHR_lights(loader) {
  2837. /** The name of this extension. */
  2838. this.name = NAME;
  2839. /** Defines whether this extension is enabled. */
  2840. this.enabled = true;
  2841. this._loader = loader;
  2842. }
  2843. /** @hidden */
  2844. KHR_lights.prototype.dispose = function () {
  2845. delete this._loader;
  2846. delete this._lights;
  2847. };
  2848. /** @hidden */
  2849. KHR_lights.prototype.onLoading = function () {
  2850. var extensions = this._loader.gltf.extensions;
  2851. if (extensions && extensions[this.name]) {
  2852. var extension = extensions[this.name];
  2853. this._lights = extension.lights;
  2854. }
  2855. };
  2856. /** @hidden */
  2857. KHR_lights.prototype.loadNodeAsync = function (context, node, assign) {
  2858. var _this = this;
  2859. return _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].LoadExtensionAsync(context, node, this.name, function (extensionContext, extension) {
  2860. return _this._loader.loadNodeAsync(context, node, function (babylonMesh) {
  2861. var babylonLight;
  2862. var light = _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["ArrayItem"].Get(extensionContext, _this._lights, extension.light);
  2863. var name = light.name || babylonMesh.name;
  2864. switch (light.type) {
  2865. case LightType.DIRECTIONAL: {
  2866. babylonLight = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["DirectionalLight"](name, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Vector3"].Backward(), _this._loader.babylonScene);
  2867. break;
  2868. }
  2869. case LightType.POINT: {
  2870. babylonLight = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["PointLight"](name, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Vector3"].Zero(), _this._loader.babylonScene);
  2871. break;
  2872. }
  2873. case LightType.SPOT: {
  2874. var babylonSpotLight = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["SpotLight"](name, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Vector3"].Zero(), babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Vector3"].Backward(), 0, 1, _this._loader.babylonScene);
  2875. babylonSpotLight.angle = ((light.spot && light.spot.outerConeAngle) || Math.PI / 4) * 2;
  2876. babylonSpotLight.innerAngle = ((light.spot && light.spot.innerConeAngle) || 0) * 2;
  2877. babylonLight = babylonSpotLight;
  2878. break;
  2879. }
  2880. default: {
  2881. throw new Error(extensionContext + ": Invalid light type (" + light.type + ")");
  2882. }
  2883. }
  2884. babylonLight.falloffType = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Light"].FALLOFF_GLTF;
  2885. babylonLight.diffuse = light.color ? babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].FromArray(light.color) : babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].White();
  2886. babylonLight.intensity = light.intensity == undefined ? 1 : light.intensity;
  2887. babylonLight.range = light.range == undefined ? Number.MAX_VALUE : light.range;
  2888. babylonLight.parent = babylonMesh;
  2889. _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].AddPointerMetadata(babylonLight, extensionContext);
  2890. assign(babylonMesh);
  2891. });
  2892. });
  2893. };
  2894. return KHR_lights;
  2895. }());
  2896. _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].RegisterExtension(NAME, function (loader) { return new KHR_lights(loader); });
  2897. /***/ }),
  2898. /***/ "./glTF/2.0/Extensions/KHR_materials_pbrSpecularGlossiness.ts":
  2899. /*!********************************************************************!*\
  2900. !*** ./glTF/2.0/Extensions/KHR_materials_pbrSpecularGlossiness.ts ***!
  2901. \********************************************************************/
  2902. /*! exports provided: KHR_materials_pbrSpecularGlossiness */
  2903. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  2904. "use strict";
  2905. __webpack_require__.r(__webpack_exports__);
  2906. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "KHR_materials_pbrSpecularGlossiness", function() { return KHR_materials_pbrSpecularGlossiness; });
  2907. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Maths/math */ "babylonjs/Misc/observable");
  2908. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__);
  2909. /* harmony import */ var _glTFLoader__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../glTFLoader */ "./glTF/2.0/glTFLoader.ts");
  2910. var NAME = "KHR_materials_pbrSpecularGlossiness";
  2911. /**
  2912. * [Specification](https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_materials_pbrSpecularGlossiness)
  2913. */
  2914. var KHR_materials_pbrSpecularGlossiness = /** @class */ (function () {
  2915. /** @hidden */
  2916. function KHR_materials_pbrSpecularGlossiness(loader) {
  2917. /** The name of this extension. */
  2918. this.name = NAME;
  2919. /** Defines whether this extension is enabled. */
  2920. this.enabled = true;
  2921. this._loader = loader;
  2922. }
  2923. /** @hidden */
  2924. KHR_materials_pbrSpecularGlossiness.prototype.dispose = function () {
  2925. delete this._loader;
  2926. };
  2927. /** @hidden */
  2928. KHR_materials_pbrSpecularGlossiness.prototype.loadMaterialPropertiesAsync = function (context, material, babylonMaterial) {
  2929. var _this = this;
  2930. return _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].LoadExtensionAsync(context, material, this.name, function (extensionContext, extension) {
  2931. var promises = new Array();
  2932. promises.push(_this._loader.loadMaterialBasePropertiesAsync(context, material, babylonMaterial));
  2933. promises.push(_this._loadSpecularGlossinessPropertiesAsync(extensionContext, material, extension, babylonMaterial));
  2934. _this._loader.loadMaterialAlphaProperties(context, material, babylonMaterial);
  2935. return Promise.all(promises).then(function () { });
  2936. });
  2937. };
  2938. KHR_materials_pbrSpecularGlossiness.prototype._loadSpecularGlossinessPropertiesAsync = function (context, material, properties, babylonMaterial) {
  2939. if (!(babylonMaterial instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["PBRMaterial"])) {
  2940. throw new Error(context + ": Material type not supported");
  2941. }
  2942. var promises = new Array();
  2943. babylonMaterial.metallic = null;
  2944. babylonMaterial.roughness = null;
  2945. if (properties.diffuseFactor) {
  2946. babylonMaterial.albedoColor = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].FromArray(properties.diffuseFactor);
  2947. babylonMaterial.alpha = properties.diffuseFactor[3];
  2948. }
  2949. else {
  2950. babylonMaterial.albedoColor = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].White();
  2951. }
  2952. babylonMaterial.reflectivityColor = properties.specularFactor ? babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].FromArray(properties.specularFactor) : babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].White();
  2953. babylonMaterial.microSurface = properties.glossinessFactor == undefined ? 1 : properties.glossinessFactor;
  2954. if (properties.diffuseTexture) {
  2955. promises.push(this._loader.loadTextureInfoAsync(context + "/diffuseTexture", properties.diffuseTexture, function (texture) {
  2956. texture.name = babylonMaterial.name + " (Diffuse)";
  2957. babylonMaterial.albedoTexture = texture;
  2958. }));
  2959. }
  2960. if (properties.specularGlossinessTexture) {
  2961. promises.push(this._loader.loadTextureInfoAsync(context + "/specularGlossinessTexture", properties.specularGlossinessTexture, function (texture) {
  2962. texture.name = babylonMaterial.name + " (Specular Glossiness)";
  2963. babylonMaterial.reflectivityTexture = texture;
  2964. }));
  2965. babylonMaterial.reflectivityTexture.hasAlpha = true;
  2966. babylonMaterial.useMicroSurfaceFromReflectivityMapAlpha = true;
  2967. }
  2968. return Promise.all(promises).then(function () { });
  2969. };
  2970. return KHR_materials_pbrSpecularGlossiness;
  2971. }());
  2972. _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].RegisterExtension(NAME, function (loader) { return new KHR_materials_pbrSpecularGlossiness(loader); });
  2973. /***/ }),
  2974. /***/ "./glTF/2.0/Extensions/KHR_materials_unlit.ts":
  2975. /*!****************************************************!*\
  2976. !*** ./glTF/2.0/Extensions/KHR_materials_unlit.ts ***!
  2977. \****************************************************/
  2978. /*! exports provided: KHR_materials_unlit */
  2979. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  2980. "use strict";
  2981. __webpack_require__.r(__webpack_exports__);
  2982. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "KHR_materials_unlit", function() { return KHR_materials_unlit; });
  2983. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Maths/math */ "babylonjs/Misc/observable");
  2984. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__);
  2985. /* harmony import */ var _glTFLoader__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../glTFLoader */ "./glTF/2.0/glTFLoader.ts");
  2986. var NAME = "KHR_materials_unlit";
  2987. /**
  2988. * [Specification](https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_materials_unlit)
  2989. */
  2990. var KHR_materials_unlit = /** @class */ (function () {
  2991. /** @hidden */
  2992. function KHR_materials_unlit(loader) {
  2993. /** The name of this extension. */
  2994. this.name = NAME;
  2995. /** Defines whether this extension is enabled. */
  2996. this.enabled = true;
  2997. this._loader = loader;
  2998. }
  2999. /** @hidden */
  3000. KHR_materials_unlit.prototype.dispose = function () {
  3001. delete this._loader;
  3002. };
  3003. /** @hidden */
  3004. KHR_materials_unlit.prototype.loadMaterialPropertiesAsync = function (context, material, babylonMaterial) {
  3005. var _this = this;
  3006. return _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].LoadExtensionAsync(context, material, this.name, function () {
  3007. return _this._loadUnlitPropertiesAsync(context, material, babylonMaterial);
  3008. });
  3009. };
  3010. KHR_materials_unlit.prototype._loadUnlitPropertiesAsync = function (context, material, babylonMaterial) {
  3011. if (!(babylonMaterial instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["PBRMaterial"])) {
  3012. throw new Error(context + ": Material type not supported");
  3013. }
  3014. var promises = new Array();
  3015. babylonMaterial.unlit = true;
  3016. var properties = material.pbrMetallicRoughness;
  3017. if (properties) {
  3018. if (properties.baseColorFactor) {
  3019. babylonMaterial.albedoColor = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].FromArray(properties.baseColorFactor);
  3020. babylonMaterial.alpha = properties.baseColorFactor[3];
  3021. }
  3022. else {
  3023. babylonMaterial.albedoColor = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].White();
  3024. }
  3025. if (properties.baseColorTexture) {
  3026. promises.push(this._loader.loadTextureInfoAsync(context + "/baseColorTexture", properties.baseColorTexture, function (texture) {
  3027. texture.name = babylonMaterial.name + " (Base Color)";
  3028. babylonMaterial.albedoTexture = texture;
  3029. }));
  3030. }
  3031. }
  3032. if (material.doubleSided) {
  3033. babylonMaterial.backFaceCulling = false;
  3034. babylonMaterial.twoSidedLighting = true;
  3035. }
  3036. this._loader.loadMaterialAlphaProperties(context, material, babylonMaterial);
  3037. return Promise.all(promises).then(function () { });
  3038. };
  3039. return KHR_materials_unlit;
  3040. }());
  3041. _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].RegisterExtension(NAME, function (loader) { return new KHR_materials_unlit(loader); });
  3042. /***/ }),
  3043. /***/ "./glTF/2.0/Extensions/KHR_texture_transform.ts":
  3044. /*!******************************************************!*\
  3045. !*** ./glTF/2.0/Extensions/KHR_texture_transform.ts ***!
  3046. \******************************************************/
  3047. /*! exports provided: KHR_texture_transform */
  3048. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  3049. "use strict";
  3050. __webpack_require__.r(__webpack_exports__);
  3051. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "KHR_texture_transform", function() { return KHR_texture_transform; });
  3052. /* harmony import */ var babylonjs_Materials_Textures_texture__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Materials/Textures/texture */ "babylonjs/Misc/observable");
  3053. /* harmony import */ var babylonjs_Materials_Textures_texture__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Materials_Textures_texture__WEBPACK_IMPORTED_MODULE_0__);
  3054. /* harmony import */ var _glTFLoader__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../glTFLoader */ "./glTF/2.0/glTFLoader.ts");
  3055. var NAME = "KHR_texture_transform";
  3056. /**
  3057. * [Specification](https://github.com/KhronosGroup/glTF/blob/master/extensions/2.0/Khronos/KHR_texture_transform/README.md)
  3058. */
  3059. var KHR_texture_transform = /** @class */ (function () {
  3060. /** @hidden */
  3061. function KHR_texture_transform(loader) {
  3062. /** The name of this extension. */
  3063. this.name = NAME;
  3064. /** Defines whether this extension is enabled. */
  3065. this.enabled = true;
  3066. this._loader = loader;
  3067. }
  3068. /** @hidden */
  3069. KHR_texture_transform.prototype.dispose = function () {
  3070. delete this._loader;
  3071. };
  3072. /** @hidden */
  3073. KHR_texture_transform.prototype.loadTextureInfoAsync = function (context, textureInfo, assign) {
  3074. var _this = this;
  3075. return _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].LoadExtensionAsync(context, textureInfo, this.name, function (extensionContext, extension) {
  3076. return _this._loader.loadTextureInfoAsync(context, textureInfo, function (babylonTexture) {
  3077. if (!(babylonTexture instanceof babylonjs_Materials_Textures_texture__WEBPACK_IMPORTED_MODULE_0__["Texture"])) {
  3078. throw new Error(extensionContext + ": Texture type not supported");
  3079. }
  3080. if (extension.offset) {
  3081. babylonTexture.uOffset = extension.offset[0];
  3082. babylonTexture.vOffset = extension.offset[1];
  3083. }
  3084. // Always rotate around the origin.
  3085. babylonTexture.uRotationCenter = 0;
  3086. babylonTexture.vRotationCenter = 0;
  3087. if (extension.rotation) {
  3088. babylonTexture.wAng = -extension.rotation;
  3089. }
  3090. if (extension.scale) {
  3091. babylonTexture.uScale = extension.scale[0];
  3092. babylonTexture.vScale = extension.scale[1];
  3093. }
  3094. if (extension.texCoord != undefined) {
  3095. babylonTexture.coordinatesIndex = extension.texCoord;
  3096. }
  3097. assign(babylonTexture);
  3098. });
  3099. });
  3100. };
  3101. return KHR_texture_transform;
  3102. }());
  3103. _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].RegisterExtension(NAME, function (loader) { return new KHR_texture_transform(loader); });
  3104. /***/ }),
  3105. /***/ "./glTF/2.0/Extensions/MSFT_audio_emitter.ts":
  3106. /*!***************************************************!*\
  3107. !*** ./glTF/2.0/Extensions/MSFT_audio_emitter.ts ***!
  3108. \***************************************************/
  3109. /*! exports provided: MSFT_audio_emitter */
  3110. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  3111. "use strict";
  3112. __webpack_require__.r(__webpack_exports__);
  3113. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "MSFT_audio_emitter", function() { return MSFT_audio_emitter; });
  3114. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Maths/math */ "babylonjs/Misc/observable");
  3115. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__);
  3116. /* harmony import */ var _glTFLoader__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../glTFLoader */ "./glTF/2.0/glTFLoader.ts");
  3117. var NAME = "MSFT_audio_emitter";
  3118. /**
  3119. * [Specification](https://github.com/najadojo/glTF/tree/MSFT_audio_emitter/extensions/2.0/Vendor/MSFT_audio_emitter)
  3120. */
  3121. var MSFT_audio_emitter = /** @class */ (function () {
  3122. /** @hidden */
  3123. function MSFT_audio_emitter(loader) {
  3124. /** The name of this extension. */
  3125. this.name = NAME;
  3126. /** Defines whether this extension is enabled. */
  3127. this.enabled = true;
  3128. this._loader = loader;
  3129. }
  3130. /** @hidden */
  3131. MSFT_audio_emitter.prototype.dispose = function () {
  3132. delete this._loader;
  3133. delete this._clips;
  3134. delete this._emitters;
  3135. };
  3136. /** @hidden */
  3137. MSFT_audio_emitter.prototype.onLoading = function () {
  3138. var extensions = this._loader.gltf.extensions;
  3139. if (extensions && extensions[this.name]) {
  3140. var extension = extensions[this.name];
  3141. this._clips = extension.clips;
  3142. this._emitters = extension.emitters;
  3143. _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["ArrayItem"].Assign(this._clips);
  3144. _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["ArrayItem"].Assign(this._emitters);
  3145. }
  3146. };
  3147. /** @hidden */
  3148. MSFT_audio_emitter.prototype.loadSceneAsync = function (context, scene) {
  3149. var _this = this;
  3150. return _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].LoadExtensionAsync(context, scene, this.name, function (extensionContext, extension) {
  3151. var promises = new Array();
  3152. promises.push(_this._loader.loadSceneAsync(context, scene));
  3153. for (var _i = 0, _a = extension.emitters; _i < _a.length; _i++) {
  3154. var emitterIndex = _a[_i];
  3155. var emitter = _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["ArrayItem"].Get(extensionContext + "/emitters", _this._emitters, emitterIndex);
  3156. if (emitter.refDistance != undefined || emitter.maxDistance != undefined || emitter.rolloffFactor != undefined ||
  3157. emitter.distanceModel != undefined || emitter.innerAngle != undefined || emitter.outerAngle != undefined) {
  3158. throw new Error(extensionContext + ": Direction or Distance properties are not allowed on emitters attached to a scene");
  3159. }
  3160. promises.push(_this._loadEmitterAsync(extensionContext + "/emitters/" + emitter.index, emitter));
  3161. }
  3162. return Promise.all(promises).then(function () { });
  3163. });
  3164. };
  3165. /** @hidden */
  3166. MSFT_audio_emitter.prototype.loadNodeAsync = function (context, node, assign) {
  3167. var _this = this;
  3168. return _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].LoadExtensionAsync(context, node, this.name, function (extensionContext, extension) {
  3169. var promises = new Array();
  3170. return _this._loader.loadNodeAsync(extensionContext, node, function (babylonMesh) {
  3171. var _loop_1 = function (emitterIndex) {
  3172. var emitter = _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["ArrayItem"].Get(extensionContext + "/emitters", _this._emitters, emitterIndex);
  3173. promises.push(_this._loadEmitterAsync(extensionContext + "/emitters/" + emitter.index, emitter).then(function () {
  3174. for (var _i = 0, _a = emitter._babylonSounds; _i < _a.length; _i++) {
  3175. var sound = _a[_i];
  3176. sound.attachToMesh(babylonMesh);
  3177. if (emitter.innerAngle != undefined || emitter.outerAngle != undefined) {
  3178. sound.setLocalDirectionToMesh(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Vector3"].Forward());
  3179. sound.setDirectionalCone(2 * babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].ToDegrees(emitter.innerAngle == undefined ? Math.PI : emitter.innerAngle), 2 * babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].ToDegrees(emitter.outerAngle == undefined ? Math.PI : emitter.outerAngle), 0);
  3180. }
  3181. }
  3182. }));
  3183. };
  3184. for (var _i = 0, _a = extension.emitters; _i < _a.length; _i++) {
  3185. var emitterIndex = _a[_i];
  3186. _loop_1(emitterIndex);
  3187. }
  3188. assign(babylonMesh);
  3189. }).then(function (babylonMesh) {
  3190. return Promise.all(promises).then(function () {
  3191. return babylonMesh;
  3192. });
  3193. });
  3194. });
  3195. };
  3196. /** @hidden */
  3197. MSFT_audio_emitter.prototype.loadAnimationAsync = function (context, animation) {
  3198. var _this = this;
  3199. return _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].LoadExtensionAsync(context, animation, this.name, function (extensionContext, extension) {
  3200. return _this._loader.loadAnimationAsync(context, animation).then(function (babylonAnimationGroup) {
  3201. var promises = new Array();
  3202. _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["ArrayItem"].Assign(extension.events);
  3203. for (var _i = 0, _a = extension.events; _i < _a.length; _i++) {
  3204. var event_1 = _a[_i];
  3205. promises.push(_this._loadAnimationEventAsync(extensionContext + "/events/" + event_1.index, context, animation, event_1, babylonAnimationGroup));
  3206. }
  3207. return Promise.all(promises).then(function () {
  3208. return babylonAnimationGroup;
  3209. });
  3210. });
  3211. });
  3212. };
  3213. MSFT_audio_emitter.prototype._loadClipAsync = function (context, clip) {
  3214. if (clip._objectURL) {
  3215. return clip._objectURL;
  3216. }
  3217. var promise;
  3218. if (clip.uri) {
  3219. promise = this._loader.loadUriAsync(context, clip, clip.uri);
  3220. }
  3221. else {
  3222. var bufferView = _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["ArrayItem"].Get(context + "/bufferView", this._loader.gltf.bufferViews, clip.bufferView);
  3223. promise = this._loader.loadBufferViewAsync("#/bufferViews/" + bufferView.index, bufferView);
  3224. }
  3225. clip._objectURL = promise.then(function (data) {
  3226. return URL.createObjectURL(new Blob([data], { type: clip.mimeType }));
  3227. });
  3228. return clip._objectURL;
  3229. };
  3230. MSFT_audio_emitter.prototype._loadEmitterAsync = function (context, emitter) {
  3231. var _this = this;
  3232. emitter._babylonSounds = emitter._babylonSounds || [];
  3233. if (!emitter._babylonData) {
  3234. var clipPromises = new Array();
  3235. var name_1 = emitter.name || "emitter" + emitter.index;
  3236. var options_1 = {
  3237. loop: false,
  3238. autoplay: false,
  3239. volume: emitter.volume == undefined ? 1 : emitter.volume,
  3240. };
  3241. var _loop_2 = function (i) {
  3242. var clipContext = "#/extensions/" + this_1.name + "/clips";
  3243. var clip = _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["ArrayItem"].Get(clipContext, this_1._clips, emitter.clips[i].clip);
  3244. clipPromises.push(this_1._loadClipAsync(clipContext + "/" + emitter.clips[i].clip, clip).then(function (objectURL) {
  3245. var sound = emitter._babylonSounds[i] = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Sound"](name_1, objectURL, _this._loader.babylonScene, null, options_1);
  3246. sound.refDistance = emitter.refDistance || 1;
  3247. sound.maxDistance = emitter.maxDistance || 256;
  3248. sound.rolloffFactor = emitter.rolloffFactor || 1;
  3249. sound.distanceModel = emitter.distanceModel || 'exponential';
  3250. sound._positionInEmitterSpace = true;
  3251. }));
  3252. };
  3253. var this_1 = this;
  3254. for (var i = 0; i < emitter.clips.length; i++) {
  3255. _loop_2(i);
  3256. }
  3257. var promise = Promise.all(clipPromises).then(function () {
  3258. var weights = emitter.clips.map(function (clip) { return clip.weight || 1; });
  3259. var weightedSound = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["WeightedSound"](emitter.loop || false, emitter._babylonSounds, weights);
  3260. if (emitter.innerAngle) {
  3261. weightedSound.directionalConeInnerAngle = 2 * babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].ToDegrees(emitter.innerAngle);
  3262. }
  3263. if (emitter.outerAngle) {
  3264. weightedSound.directionalConeOuterAngle = 2 * babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].ToDegrees(emitter.outerAngle);
  3265. }
  3266. if (emitter.volume) {
  3267. weightedSound.volume = emitter.volume;
  3268. }
  3269. emitter._babylonData.sound = weightedSound;
  3270. });
  3271. emitter._babylonData = {
  3272. loaded: promise
  3273. };
  3274. }
  3275. return emitter._babylonData.loaded;
  3276. };
  3277. MSFT_audio_emitter.prototype._getEventAction = function (context, sound, action, time, startOffset) {
  3278. switch (action) {
  3279. case "play" /* play */: {
  3280. return function (currentFrame) {
  3281. var frameOffset = (startOffset || 0) + (currentFrame - time);
  3282. sound.play(frameOffset);
  3283. };
  3284. }
  3285. case "stop" /* stop */: {
  3286. return function (currentFrame) {
  3287. sound.stop();
  3288. };
  3289. }
  3290. case "pause" /* pause */: {
  3291. return function (currentFrame) {
  3292. sound.pause();
  3293. };
  3294. }
  3295. default: {
  3296. throw new Error(context + ": Unsupported action " + action);
  3297. }
  3298. }
  3299. };
  3300. MSFT_audio_emitter.prototype._loadAnimationEventAsync = function (context, animationContext, animation, event, babylonAnimationGroup) {
  3301. var _this = this;
  3302. if (babylonAnimationGroup.targetedAnimations.length == 0) {
  3303. return Promise.resolve();
  3304. }
  3305. var babylonAnimation = babylonAnimationGroup.targetedAnimations[0];
  3306. var emitterIndex = event.emitter;
  3307. var emitter = _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["ArrayItem"].Get("#/extensions/" + this.name + "/emitters", this._emitters, emitterIndex);
  3308. return this._loadEmitterAsync(context, emitter).then(function () {
  3309. var sound = emitter._babylonData.sound;
  3310. if (sound) {
  3311. var babylonAnimationEvent = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["AnimationEvent"](event.time, _this._getEventAction(context, sound, event.action, event.time, event.startOffset));
  3312. babylonAnimation.animation.addEvent(babylonAnimationEvent);
  3313. // Make sure all started audio stops when this animation is terminated.
  3314. babylonAnimationGroup.onAnimationGroupEndObservable.add(function () {
  3315. sound.stop();
  3316. });
  3317. babylonAnimationGroup.onAnimationGroupPauseObservable.add(function () {
  3318. sound.pause();
  3319. });
  3320. }
  3321. });
  3322. };
  3323. return MSFT_audio_emitter;
  3324. }());
  3325. _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].RegisterExtension(NAME, function (loader) { return new MSFT_audio_emitter(loader); });
  3326. /***/ }),
  3327. /***/ "./glTF/2.0/Extensions/MSFT_lod.ts":
  3328. /*!*****************************************!*\
  3329. !*** ./glTF/2.0/Extensions/MSFT_lod.ts ***!
  3330. \*****************************************/
  3331. /*! exports provided: MSFT_lod */
  3332. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  3333. "use strict";
  3334. __webpack_require__.r(__webpack_exports__);
  3335. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "MSFT_lod", function() { return MSFT_lod; });
  3336. /* harmony import */ var babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Misc/observable */ "babylonjs/Misc/observable");
  3337. /* harmony import */ var babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__);
  3338. /* harmony import */ var _glTFLoader__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../glTFLoader */ "./glTF/2.0/glTFLoader.ts");
  3339. var NAME = "MSFT_lod";
  3340. /**
  3341. * [Specification](https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Vendor/MSFT_lod)
  3342. */
  3343. var MSFT_lod = /** @class */ (function () {
  3344. /** @hidden */
  3345. function MSFT_lod(loader) {
  3346. /** The name of this extension. */
  3347. this.name = NAME;
  3348. /** Defines whether this extension is enabled. */
  3349. this.enabled = true;
  3350. /**
  3351. * Maximum number of LODs to load, starting from the lowest LOD.
  3352. */
  3353. this.maxLODsToLoad = Number.MAX_VALUE;
  3354. /**
  3355. * Observable raised when all node LODs of one level are loaded.
  3356. * The event data is the index of the loaded LOD starting from zero.
  3357. * Dispose the loader to cancel the loading of the next level of LODs.
  3358. */
  3359. this.onNodeLODsLoadedObservable = new babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["Observable"]();
  3360. /**
  3361. * Observable raised when all material LODs of one level are loaded.
  3362. * The event data is the index of the loaded LOD starting from zero.
  3363. * Dispose the loader to cancel the loading of the next level of LODs.
  3364. */
  3365. this.onMaterialLODsLoadedObservable = new babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["Observable"]();
  3366. this._nodeIndexLOD = null;
  3367. this._nodeSignalLODs = new Array();
  3368. this._nodePromiseLODs = new Array();
  3369. this._materialIndexLOD = null;
  3370. this._materialSignalLODs = new Array();
  3371. this._materialPromiseLODs = new Array();
  3372. this._loader = loader;
  3373. }
  3374. /** @hidden */
  3375. MSFT_lod.prototype.dispose = function () {
  3376. delete this._loader;
  3377. this._nodeIndexLOD = null;
  3378. this._nodeSignalLODs.length = 0;
  3379. this._nodePromiseLODs.length = 0;
  3380. this._materialIndexLOD = null;
  3381. this._materialSignalLODs.length = 0;
  3382. this._materialPromiseLODs.length = 0;
  3383. this.onMaterialLODsLoadedObservable.clear();
  3384. this.onNodeLODsLoadedObservable.clear();
  3385. };
  3386. /** @hidden */
  3387. MSFT_lod.prototype.onReady = function () {
  3388. var _this = this;
  3389. var _loop_1 = function (indexLOD) {
  3390. var promise = Promise.all(this_1._nodePromiseLODs[indexLOD]).then(function () {
  3391. if (indexLOD !== 0) {
  3392. _this._loader.endPerformanceCounter("Node LOD " + indexLOD);
  3393. }
  3394. _this._loader.log("Loaded node LOD " + indexLOD);
  3395. _this.onNodeLODsLoadedObservable.notifyObservers(indexLOD);
  3396. if (indexLOD !== _this._nodePromiseLODs.length - 1) {
  3397. _this._loader.startPerformanceCounter("Node LOD " + (indexLOD + 1));
  3398. if (_this._nodeSignalLODs[indexLOD]) {
  3399. _this._nodeSignalLODs[indexLOD].resolve();
  3400. }
  3401. }
  3402. });
  3403. this_1._loader._completePromises.push(promise);
  3404. };
  3405. var this_1 = this;
  3406. for (var indexLOD = 0; indexLOD < this._nodePromiseLODs.length; indexLOD++) {
  3407. _loop_1(indexLOD);
  3408. }
  3409. var _loop_2 = function (indexLOD) {
  3410. var promise = Promise.all(this_2._materialPromiseLODs[indexLOD]).then(function () {
  3411. if (indexLOD !== 0) {
  3412. _this._loader.endPerformanceCounter("Material LOD " + indexLOD);
  3413. }
  3414. _this._loader.log("Loaded material LOD " + indexLOD);
  3415. _this.onMaterialLODsLoadedObservable.notifyObservers(indexLOD);
  3416. if (indexLOD !== _this._materialPromiseLODs.length - 1) {
  3417. _this._loader.startPerformanceCounter("Material LOD " + (indexLOD + 1));
  3418. if (_this._materialSignalLODs[indexLOD]) {
  3419. _this._materialSignalLODs[indexLOD].resolve();
  3420. }
  3421. }
  3422. });
  3423. this_2._loader._completePromises.push(promise);
  3424. };
  3425. var this_2 = this;
  3426. for (var indexLOD = 0; indexLOD < this._materialPromiseLODs.length; indexLOD++) {
  3427. _loop_2(indexLOD);
  3428. }
  3429. };
  3430. /** @hidden */
  3431. MSFT_lod.prototype.loadNodeAsync = function (context, node, assign) {
  3432. var _this = this;
  3433. return _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].LoadExtensionAsync(context, node, this.name, function (extensionContext, extension) {
  3434. var firstPromise;
  3435. var nodeLODs = _this._getLODs(extensionContext, node, _this._loader.gltf.nodes, extension.ids);
  3436. _this._loader.logOpen("" + extensionContext);
  3437. var _loop_3 = function (indexLOD) {
  3438. var nodeLOD = nodeLODs[indexLOD];
  3439. if (indexLOD !== 0) {
  3440. _this._nodeIndexLOD = indexLOD;
  3441. _this._nodeSignalLODs[indexLOD] = _this._nodeSignalLODs[indexLOD] || new babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["Deferred"]();
  3442. }
  3443. var assign_1 = function (babylonTransformNode) { babylonTransformNode.setEnabled(false); };
  3444. var promise = _this._loader.loadNodeAsync("#/nodes/" + nodeLOD.index, nodeLOD, assign_1).then(function (babylonMesh) {
  3445. if (indexLOD !== 0) {
  3446. // TODO: should not rely on _babylonMesh
  3447. var previousNodeLOD = nodeLODs[indexLOD - 1];
  3448. if (previousNodeLOD._babylonTransformNode) {
  3449. previousNodeLOD._babylonTransformNode.dispose();
  3450. delete previousNodeLOD._babylonTransformNode;
  3451. _this._disposeUnusedMaterials();
  3452. }
  3453. }
  3454. babylonMesh.setEnabled(true);
  3455. return babylonMesh;
  3456. });
  3457. if (indexLOD === 0) {
  3458. firstPromise = promise;
  3459. }
  3460. else {
  3461. _this._nodeIndexLOD = null;
  3462. }
  3463. _this._nodePromiseLODs[indexLOD] = _this._nodePromiseLODs[indexLOD] || [];
  3464. _this._nodePromiseLODs[indexLOD].push(promise);
  3465. };
  3466. for (var indexLOD = 0; indexLOD < nodeLODs.length; indexLOD++) {
  3467. _loop_3(indexLOD);
  3468. }
  3469. _this._loader.logClose();
  3470. return firstPromise;
  3471. });
  3472. };
  3473. /** @hidden */
  3474. MSFT_lod.prototype._loadMaterialAsync = function (context, material, babylonMesh, babylonDrawMode, assign) {
  3475. var _this = this;
  3476. // Don't load material LODs if already loading a node LOD.
  3477. if (this._nodeIndexLOD) {
  3478. return null;
  3479. }
  3480. return _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].LoadExtensionAsync(context, material, this.name, function (extensionContext, extension) {
  3481. var firstPromise;
  3482. var materialLODs = _this._getLODs(extensionContext, material, _this._loader.gltf.materials, extension.ids);
  3483. _this._loader.logOpen("" + extensionContext);
  3484. var _loop_4 = function (indexLOD) {
  3485. var materialLOD = materialLODs[indexLOD];
  3486. if (indexLOD !== 0) {
  3487. _this._materialIndexLOD = indexLOD;
  3488. }
  3489. var promise = _this._loader._loadMaterialAsync("#/materials/" + materialLOD.index, materialLOD, babylonMesh, babylonDrawMode, function (babylonMaterial) {
  3490. if (indexLOD === 0) {
  3491. assign(babylonMaterial);
  3492. }
  3493. }).then(function (babylonMaterial) {
  3494. if (indexLOD !== 0) {
  3495. assign(babylonMaterial);
  3496. // TODO: should not rely on _data
  3497. var previousDataLOD = materialLODs[indexLOD - 1]._data;
  3498. if (previousDataLOD[babylonDrawMode]) {
  3499. previousDataLOD[babylonDrawMode].babylonMaterial.dispose();
  3500. delete previousDataLOD[babylonDrawMode];
  3501. }
  3502. }
  3503. return babylonMaterial;
  3504. });
  3505. if (indexLOD === 0) {
  3506. firstPromise = promise;
  3507. }
  3508. else {
  3509. _this._materialIndexLOD = null;
  3510. }
  3511. _this._materialPromiseLODs[indexLOD] = _this._materialPromiseLODs[indexLOD] || [];
  3512. _this._materialPromiseLODs[indexLOD].push(promise);
  3513. };
  3514. for (var indexLOD = 0; indexLOD < materialLODs.length; indexLOD++) {
  3515. _loop_4(indexLOD);
  3516. }
  3517. _this._loader.logClose();
  3518. return firstPromise;
  3519. });
  3520. };
  3521. /** @hidden */
  3522. MSFT_lod.prototype._loadUriAsync = function (context, property, uri) {
  3523. var _this = this;
  3524. // Defer the loading of uris if loading a material or node LOD.
  3525. if (this._materialIndexLOD !== null) {
  3526. this._loader.log("deferred");
  3527. var previousIndexLOD = this._materialIndexLOD - 1;
  3528. this._materialSignalLODs[previousIndexLOD] = this._materialSignalLODs[previousIndexLOD] || new babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["Deferred"]();
  3529. return this._materialSignalLODs[previousIndexLOD].promise.then(function () {
  3530. return _this._loader.loadUriAsync(context, property, uri);
  3531. });
  3532. }
  3533. else if (this._nodeIndexLOD !== null) {
  3534. this._loader.log("deferred");
  3535. var previousIndexLOD = this._nodeIndexLOD - 1;
  3536. this._nodeSignalLODs[previousIndexLOD] = this._nodeSignalLODs[previousIndexLOD] || new babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["Deferred"]();
  3537. return this._nodeSignalLODs[this._nodeIndexLOD - 1].promise.then(function () {
  3538. return _this._loader.loadUriAsync(context, property, uri);
  3539. });
  3540. }
  3541. return null;
  3542. };
  3543. /**
  3544. * Gets an array of LOD properties from lowest to highest.
  3545. */
  3546. MSFT_lod.prototype._getLODs = function (context, property, array, ids) {
  3547. if (this.maxLODsToLoad <= 0) {
  3548. throw new Error("maxLODsToLoad must be greater than zero");
  3549. }
  3550. var properties = new Array();
  3551. for (var i = ids.length - 1; i >= 0; i--) {
  3552. properties.push(_glTFLoader__WEBPACK_IMPORTED_MODULE_1__["ArrayItem"].Get(context + "/ids/" + ids[i], array, ids[i]));
  3553. if (properties.length === this.maxLODsToLoad) {
  3554. return properties;
  3555. }
  3556. }
  3557. properties.push(property);
  3558. return properties;
  3559. };
  3560. MSFT_lod.prototype._disposeUnusedMaterials = function () {
  3561. // TODO: should not rely on _data
  3562. var materials = this._loader.gltf.materials;
  3563. if (materials) {
  3564. for (var _i = 0, materials_1 = materials; _i < materials_1.length; _i++) {
  3565. var material = materials_1[_i];
  3566. if (material._data) {
  3567. for (var drawMode in material._data) {
  3568. var data = material._data[drawMode];
  3569. if (data.babylonMeshes.length === 0) {
  3570. data.babylonMaterial.dispose(false, true);
  3571. delete material._data[drawMode];
  3572. }
  3573. }
  3574. }
  3575. }
  3576. }
  3577. };
  3578. return MSFT_lod;
  3579. }());
  3580. _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].RegisterExtension(NAME, function (loader) { return new MSFT_lod(loader); });
  3581. /***/ }),
  3582. /***/ "./glTF/2.0/Extensions/MSFT_minecraftMesh.ts":
  3583. /*!***************************************************!*\
  3584. !*** ./glTF/2.0/Extensions/MSFT_minecraftMesh.ts ***!
  3585. \***************************************************/
  3586. /*! exports provided: MSFT_minecraftMesh */
  3587. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  3588. "use strict";
  3589. __webpack_require__.r(__webpack_exports__);
  3590. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "MSFT_minecraftMesh", function() { return MSFT_minecraftMesh; });
  3591. /* harmony import */ var babylonjs_Materials_PBR_pbrMaterial__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Materials/PBR/pbrMaterial */ "babylonjs/Misc/observable");
  3592. /* harmony import */ var babylonjs_Materials_PBR_pbrMaterial__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Materials_PBR_pbrMaterial__WEBPACK_IMPORTED_MODULE_0__);
  3593. /* harmony import */ var _glTFLoader__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../glTFLoader */ "./glTF/2.0/glTFLoader.ts");
  3594. var NAME = "MSFT_minecraftMesh";
  3595. /** @hidden */
  3596. var MSFT_minecraftMesh = /** @class */ (function () {
  3597. function MSFT_minecraftMesh(loader) {
  3598. this.name = NAME;
  3599. this.enabled = true;
  3600. this._loader = loader;
  3601. }
  3602. MSFT_minecraftMesh.prototype.dispose = function () {
  3603. delete this._loader;
  3604. };
  3605. MSFT_minecraftMesh.prototype.loadMaterialPropertiesAsync = function (context, material, babylonMaterial) {
  3606. var _this = this;
  3607. return _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].LoadExtraAsync(context, material, this.name, function (extraContext, extra) {
  3608. if (extra) {
  3609. if (!(babylonMaterial instanceof babylonjs_Materials_PBR_pbrMaterial__WEBPACK_IMPORTED_MODULE_0__["PBRMaterial"])) {
  3610. throw new Error(extraContext + ": Material type not supported");
  3611. }
  3612. var promise = _this._loader.loadMaterialPropertiesAsync(context, material, babylonMaterial);
  3613. if (babylonMaterial.needAlphaBlending()) {
  3614. babylonMaterial.forceDepthWrite = true;
  3615. babylonMaterial.separateCullingPass = true;
  3616. }
  3617. babylonMaterial.backFaceCulling = babylonMaterial.forceDepthWrite;
  3618. babylonMaterial.twoSidedLighting = true;
  3619. return promise;
  3620. }
  3621. return null;
  3622. });
  3623. };
  3624. return MSFT_minecraftMesh;
  3625. }());
  3626. _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].RegisterExtension(NAME, function (loader) { return new MSFT_minecraftMesh(loader); });
  3627. /***/ }),
  3628. /***/ "./glTF/2.0/Extensions/MSFT_sRGBFactors.ts":
  3629. /*!*************************************************!*\
  3630. !*** ./glTF/2.0/Extensions/MSFT_sRGBFactors.ts ***!
  3631. \*************************************************/
  3632. /*! exports provided: MSFT_sRGBFactors */
  3633. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  3634. "use strict";
  3635. __webpack_require__.r(__webpack_exports__);
  3636. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "MSFT_sRGBFactors", function() { return MSFT_sRGBFactors; });
  3637. /* harmony import */ var babylonjs_Materials_PBR_pbrMaterial__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Materials/PBR/pbrMaterial */ "babylonjs/Misc/observable");
  3638. /* harmony import */ var babylonjs_Materials_PBR_pbrMaterial__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Materials_PBR_pbrMaterial__WEBPACK_IMPORTED_MODULE_0__);
  3639. /* harmony import */ var _glTFLoader__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../glTFLoader */ "./glTF/2.0/glTFLoader.ts");
  3640. var NAME = "MSFT_sRGBFactors";
  3641. /** @hidden */
  3642. var MSFT_sRGBFactors = /** @class */ (function () {
  3643. function MSFT_sRGBFactors(loader) {
  3644. this.name = NAME;
  3645. this.enabled = true;
  3646. this._loader = loader;
  3647. }
  3648. MSFT_sRGBFactors.prototype.dispose = function () {
  3649. delete this._loader;
  3650. };
  3651. MSFT_sRGBFactors.prototype.loadMaterialPropertiesAsync = function (context, material, babylonMaterial) {
  3652. var _this = this;
  3653. return _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].LoadExtraAsync(context, material, this.name, function (extraContext, extra) {
  3654. if (extra) {
  3655. if (!(babylonMaterial instanceof babylonjs_Materials_PBR_pbrMaterial__WEBPACK_IMPORTED_MODULE_0__["PBRMaterial"])) {
  3656. throw new Error(extraContext + ": Material type not supported");
  3657. }
  3658. var promise = _this._loader.loadMaterialPropertiesAsync(context, material, babylonMaterial);
  3659. if (!babylonMaterial.albedoTexture) {
  3660. babylonMaterial.albedoColor.toLinearSpaceToRef(babylonMaterial.albedoColor);
  3661. }
  3662. if (!babylonMaterial.reflectivityTexture) {
  3663. babylonMaterial.reflectivityColor.toLinearSpaceToRef(babylonMaterial.reflectivityColor);
  3664. }
  3665. return promise;
  3666. }
  3667. return null;
  3668. });
  3669. };
  3670. return MSFT_sRGBFactors;
  3671. }());
  3672. _glTFLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoader"].RegisterExtension(NAME, function (loader) { return new MSFT_sRGBFactors(loader); });
  3673. /***/ }),
  3674. /***/ "./glTF/2.0/Extensions/index.ts":
  3675. /*!**************************************!*\
  3676. !*** ./glTF/2.0/Extensions/index.ts ***!
  3677. \**************************************/
  3678. /*! exports provided: EXT_lights_image_based, KHR_draco_mesh_compression, KHR_lights, KHR_materials_pbrSpecularGlossiness, KHR_materials_unlit, KHR_texture_transform, MSFT_audio_emitter, MSFT_lod, MSFT_minecraftMesh, MSFT_sRGBFactors, ExtrasAsMetadata */
  3679. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  3680. "use strict";
  3681. __webpack_require__.r(__webpack_exports__);
  3682. /* harmony import */ var _EXT_lights_image_based__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./EXT_lights_image_based */ "./glTF/2.0/Extensions/EXT_lights_image_based.ts");
  3683. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "EXT_lights_image_based", function() { return _EXT_lights_image_based__WEBPACK_IMPORTED_MODULE_0__["EXT_lights_image_based"]; });
  3684. /* harmony import */ var _KHR_draco_mesh_compression__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./KHR_draco_mesh_compression */ "./glTF/2.0/Extensions/KHR_draco_mesh_compression.ts");
  3685. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_draco_mesh_compression", function() { return _KHR_draco_mesh_compression__WEBPACK_IMPORTED_MODULE_1__["KHR_draco_mesh_compression"]; });
  3686. /* harmony import */ var _KHR_lights_punctual__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./KHR_lights_punctual */ "./glTF/2.0/Extensions/KHR_lights_punctual.ts");
  3687. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_lights", function() { return _KHR_lights_punctual__WEBPACK_IMPORTED_MODULE_2__["KHR_lights"]; });
  3688. /* harmony import */ var _KHR_materials_pbrSpecularGlossiness__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./KHR_materials_pbrSpecularGlossiness */ "./glTF/2.0/Extensions/KHR_materials_pbrSpecularGlossiness.ts");
  3689. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_materials_pbrSpecularGlossiness", function() { return _KHR_materials_pbrSpecularGlossiness__WEBPACK_IMPORTED_MODULE_3__["KHR_materials_pbrSpecularGlossiness"]; });
  3690. /* harmony import */ var _KHR_materials_unlit__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./KHR_materials_unlit */ "./glTF/2.0/Extensions/KHR_materials_unlit.ts");
  3691. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_materials_unlit", function() { return _KHR_materials_unlit__WEBPACK_IMPORTED_MODULE_4__["KHR_materials_unlit"]; });
  3692. /* harmony import */ var _KHR_texture_transform__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./KHR_texture_transform */ "./glTF/2.0/Extensions/KHR_texture_transform.ts");
  3693. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_texture_transform", function() { return _KHR_texture_transform__WEBPACK_IMPORTED_MODULE_5__["KHR_texture_transform"]; });
  3694. /* harmony import */ var _MSFT_audio_emitter__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./MSFT_audio_emitter */ "./glTF/2.0/Extensions/MSFT_audio_emitter.ts");
  3695. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MSFT_audio_emitter", function() { return _MSFT_audio_emitter__WEBPACK_IMPORTED_MODULE_6__["MSFT_audio_emitter"]; });
  3696. /* harmony import */ var _MSFT_lod__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./MSFT_lod */ "./glTF/2.0/Extensions/MSFT_lod.ts");
  3697. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MSFT_lod", function() { return _MSFT_lod__WEBPACK_IMPORTED_MODULE_7__["MSFT_lod"]; });
  3698. /* harmony import */ var _MSFT_minecraftMesh__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./MSFT_minecraftMesh */ "./glTF/2.0/Extensions/MSFT_minecraftMesh.ts");
  3699. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MSFT_minecraftMesh", function() { return _MSFT_minecraftMesh__WEBPACK_IMPORTED_MODULE_8__["MSFT_minecraftMesh"]; });
  3700. /* harmony import */ var _MSFT_sRGBFactors__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./MSFT_sRGBFactors */ "./glTF/2.0/Extensions/MSFT_sRGBFactors.ts");
  3701. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MSFT_sRGBFactors", function() { return _MSFT_sRGBFactors__WEBPACK_IMPORTED_MODULE_9__["MSFT_sRGBFactors"]; });
  3702. /* harmony import */ var _ExtrasAsMetadata__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./ExtrasAsMetadata */ "./glTF/2.0/Extensions/ExtrasAsMetadata.ts");
  3703. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ExtrasAsMetadata", function() { return _ExtrasAsMetadata__WEBPACK_IMPORTED_MODULE_10__["ExtrasAsMetadata"]; });
  3704. /***/ }),
  3705. /***/ "./glTF/2.0/glTFLoader.ts":
  3706. /*!********************************!*\
  3707. !*** ./glTF/2.0/glTFLoader.ts ***!
  3708. \********************************/
  3709. /*! exports provided: ArrayItem, GLTFLoader */
  3710. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  3711. "use strict";
  3712. __webpack_require__.r(__webpack_exports__);
  3713. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ArrayItem", function() { return ArrayItem; });
  3714. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GLTFLoader", function() { return GLTFLoader; });
  3715. /* harmony import */ var babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Misc/deferred */ "babylonjs/Misc/observable");
  3716. /* harmony import */ var babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__);
  3717. /* harmony import */ var _glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../glTFFileLoader */ "./glTF/glTFFileLoader.ts");
  3718. /**
  3719. * Helper class for working with arrays when loading the glTF asset
  3720. */
  3721. var ArrayItem = /** @class */ (function () {
  3722. function ArrayItem() {
  3723. }
  3724. /**
  3725. * Gets an item from the given array.
  3726. * @param context The context when loading the asset
  3727. * @param array The array to get the item from
  3728. * @param index The index to the array
  3729. * @returns The array item
  3730. */
  3731. ArrayItem.Get = function (context, array, index) {
  3732. if (!array || index == undefined || !array[index]) {
  3733. throw new Error(context + ": Failed to find index (" + index + ")");
  3734. }
  3735. return array[index];
  3736. };
  3737. /**
  3738. * Assign an `index` field to each item of the given array.
  3739. * @param array The array of items
  3740. */
  3741. ArrayItem.Assign = function (array) {
  3742. if (array) {
  3743. for (var index = 0; index < array.length; index++) {
  3744. array[index].index = index;
  3745. }
  3746. }
  3747. };
  3748. return ArrayItem;
  3749. }());
  3750. /**
  3751. * The glTF 2.0 loader
  3752. */
  3753. var GLTFLoader = /** @class */ (function () {
  3754. /** @hidden */
  3755. function GLTFLoader(parent) {
  3756. /** @hidden */
  3757. this._completePromises = new Array();
  3758. this._disposed = false;
  3759. this._state = null;
  3760. this._extensions = {};
  3761. this._defaultBabylonMaterialData = {};
  3762. this._requests = new Array();
  3763. this._parent = parent;
  3764. }
  3765. /**
  3766. * Registers a loader extension.
  3767. * @param name The name of the loader extension.
  3768. * @param factory The factory function that creates the loader extension.
  3769. */
  3770. GLTFLoader.RegisterExtension = function (name, factory) {
  3771. if (GLTFLoader.UnregisterExtension(name)) {
  3772. babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Tools"].Warn("Extension with the name '" + name + "' already exists");
  3773. }
  3774. GLTFLoader._ExtensionFactories[name] = factory;
  3775. // Keep the order of registration so that extensions registered first are called first.
  3776. GLTFLoader._ExtensionNames.push(name);
  3777. };
  3778. /**
  3779. * Unregisters a loader extension.
  3780. * @param name The name of the loader extenion.
  3781. * @returns A boolean indicating whether the extension has been unregistered
  3782. */
  3783. GLTFLoader.UnregisterExtension = function (name) {
  3784. if (!GLTFLoader._ExtensionFactories[name]) {
  3785. return false;
  3786. }
  3787. delete GLTFLoader._ExtensionFactories[name];
  3788. var index = GLTFLoader._ExtensionNames.indexOf(name);
  3789. if (index !== -1) {
  3790. GLTFLoader._ExtensionNames.splice(index, 1);
  3791. }
  3792. return true;
  3793. };
  3794. Object.defineProperty(GLTFLoader.prototype, "state", {
  3795. /**
  3796. * Gets the loader state.
  3797. */
  3798. get: function () {
  3799. return this._state;
  3800. },
  3801. enumerable: true,
  3802. configurable: true
  3803. });
  3804. Object.defineProperty(GLTFLoader.prototype, "gltf", {
  3805. /**
  3806. * The glTF object parsed from the JSON.
  3807. */
  3808. get: function () {
  3809. return this._gltf;
  3810. },
  3811. enumerable: true,
  3812. configurable: true
  3813. });
  3814. Object.defineProperty(GLTFLoader.prototype, "babylonScene", {
  3815. /**
  3816. * The Babylon scene when loading the asset.
  3817. */
  3818. get: function () {
  3819. return this._babylonScene;
  3820. },
  3821. enumerable: true,
  3822. configurable: true
  3823. });
  3824. Object.defineProperty(GLTFLoader.prototype, "rootBabylonMesh", {
  3825. /**
  3826. * The root Babylon mesh when loading the asset.
  3827. */
  3828. get: function () {
  3829. return this._rootBabylonMesh;
  3830. },
  3831. enumerable: true,
  3832. configurable: true
  3833. });
  3834. /** @hidden */
  3835. GLTFLoader.prototype.dispose = function () {
  3836. if (this._disposed) {
  3837. return;
  3838. }
  3839. this._disposed = true;
  3840. for (var _i = 0, _a = this._requests; _i < _a.length; _i++) {
  3841. var request = _a[_i];
  3842. request.abort();
  3843. }
  3844. this._requests.length = 0;
  3845. this._completePromises.length = 0;
  3846. for (var name_1 in this._extensions) {
  3847. var extension = this._extensions[name_1];
  3848. if (extension.dispose) {
  3849. this._extensions[name_1].dispose();
  3850. }
  3851. }
  3852. this._extensions = {};
  3853. delete this._gltf;
  3854. delete this._babylonScene;
  3855. delete this._rootBabylonMesh;
  3856. delete this._progressCallback;
  3857. this._parent._clear();
  3858. };
  3859. /** @hidden */
  3860. GLTFLoader.prototype.importMeshAsync = function (meshesNames, scene, data, rootUrl, onProgress, fileName) {
  3861. var _this = this;
  3862. return Promise.resolve().then(function () {
  3863. _this._babylonScene = scene;
  3864. _this._rootUrl = rootUrl;
  3865. _this._fileName = fileName || "scene";
  3866. _this._progressCallback = onProgress;
  3867. _this._loadData(data);
  3868. var nodes = null;
  3869. if (meshesNames) {
  3870. var nodeMap_1 = {};
  3871. if (_this._gltf.nodes) {
  3872. for (var _i = 0, _a = _this._gltf.nodes; _i < _a.length; _i++) {
  3873. var node = _a[_i];
  3874. if (node.name) {
  3875. nodeMap_1[node.name] = node.index;
  3876. }
  3877. }
  3878. }
  3879. var names = (meshesNames instanceof Array) ? meshesNames : [meshesNames];
  3880. nodes = names.map(function (name) {
  3881. var node = nodeMap_1[name];
  3882. if (node === undefined) {
  3883. throw new Error("Failed to find node '" + name + "'");
  3884. }
  3885. return node;
  3886. });
  3887. }
  3888. return _this._loadAsync(nodes, function () {
  3889. return {
  3890. meshes: _this._getMeshes(),
  3891. particleSystems: [],
  3892. skeletons: _this._getSkeletons(),
  3893. animationGroups: _this._getAnimationGroups()
  3894. };
  3895. });
  3896. });
  3897. };
  3898. /** @hidden */
  3899. GLTFLoader.prototype.loadAsync = function (scene, data, rootUrl, onProgress, fileName) {
  3900. var _this = this;
  3901. return Promise.resolve().then(function () {
  3902. _this._babylonScene = scene;
  3903. _this._rootUrl = rootUrl;
  3904. _this._fileName = fileName || "scene";
  3905. _this._progressCallback = onProgress;
  3906. _this._loadData(data);
  3907. return _this._loadAsync(null, function () { return undefined; });
  3908. });
  3909. };
  3910. GLTFLoader.prototype._loadAsync = function (nodes, resultFunc) {
  3911. var _this = this;
  3912. return Promise.resolve().then(function () {
  3913. _this._uniqueRootUrl = (_this._rootUrl.indexOf("file:") === -1 && _this._fileName) ? _this._rootUrl : "" + _this._rootUrl + Date.now() + "/";
  3914. _this._loadExtensions();
  3915. _this._checkExtensions();
  3916. var loadingToReadyCounterName = _glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderState"][_glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderState"].LOADING] + " => " + _glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderState"][_glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderState"].READY];
  3917. var loadingToCompleteCounterName = _glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderState"][_glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderState"].LOADING] + " => " + _glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderState"][_glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderState"].COMPLETE];
  3918. _this._parent._startPerformanceCounter(loadingToReadyCounterName);
  3919. _this._parent._startPerformanceCounter(loadingToCompleteCounterName);
  3920. _this._setState(_glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderState"].LOADING);
  3921. _this._extensionsOnLoading();
  3922. var promises = new Array();
  3923. // Block the marking of materials dirty until the scene is loaded.
  3924. var oldBlockMaterialDirtyMechanism = _this._babylonScene.blockMaterialDirtyMechanism;
  3925. _this._babylonScene.blockMaterialDirtyMechanism = true;
  3926. if (nodes) {
  3927. promises.push(_this.loadSceneAsync("/nodes", { nodes: nodes, index: -1 }));
  3928. }
  3929. else if (_this._gltf.scene != undefined || (_this._gltf.scenes && _this._gltf.scenes[0])) {
  3930. var scene = ArrayItem.Get("/scene", _this._gltf.scenes, _this._gltf.scene || 0);
  3931. promises.push(_this.loadSceneAsync("/scenes/" + scene.index, scene));
  3932. }
  3933. // Restore the blocking of material dirty.
  3934. _this._babylonScene.blockMaterialDirtyMechanism = oldBlockMaterialDirtyMechanism;
  3935. if (_this._parent.compileMaterials) {
  3936. promises.push(_this._compileMaterialsAsync());
  3937. }
  3938. if (_this._parent.compileShadowGenerators) {
  3939. promises.push(_this._compileShadowGeneratorsAsync());
  3940. }
  3941. var resultPromise = Promise.all(promises).then(function () {
  3942. if (_this._rootBabylonMesh) {
  3943. _this._rootBabylonMesh.setEnabled(true);
  3944. }
  3945. _this._setState(_glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderState"].READY);
  3946. _this._extensionsOnReady();
  3947. _this._startAnimations();
  3948. return resultFunc();
  3949. });
  3950. resultPromise.then(function () {
  3951. _this._parent._endPerformanceCounter(loadingToReadyCounterName);
  3952. babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Tools"].SetImmediate(function () {
  3953. if (!_this._disposed) {
  3954. Promise.all(_this._completePromises).then(function () {
  3955. _this._parent._endPerformanceCounter(loadingToCompleteCounterName);
  3956. _this._setState(_glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderState"].COMPLETE);
  3957. _this._parent.onCompleteObservable.notifyObservers(undefined);
  3958. _this._parent.onCompleteObservable.clear();
  3959. _this.dispose();
  3960. }, function (error) {
  3961. _this._parent.onErrorObservable.notifyObservers(error);
  3962. _this._parent.onErrorObservable.clear();
  3963. _this.dispose();
  3964. });
  3965. }
  3966. });
  3967. });
  3968. return resultPromise;
  3969. }, function (error) {
  3970. if (!_this._disposed) {
  3971. _this._parent.onErrorObservable.notifyObservers(error);
  3972. _this._parent.onErrorObservable.clear();
  3973. _this.dispose();
  3974. }
  3975. throw error;
  3976. });
  3977. };
  3978. GLTFLoader.prototype._loadData = function (data) {
  3979. this._gltf = data.json;
  3980. this._setupData();
  3981. if (data.bin) {
  3982. var buffers = this._gltf.buffers;
  3983. if (buffers && buffers[0] && !buffers[0].uri) {
  3984. var binaryBuffer = buffers[0];
  3985. if (binaryBuffer.byteLength < data.bin.byteLength - 3 || binaryBuffer.byteLength > data.bin.byteLength) {
  3986. babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Tools"].Warn("Binary buffer length (" + binaryBuffer.byteLength + ") from JSON does not match chunk length (" + data.bin.byteLength + ")");
  3987. }
  3988. binaryBuffer._data = Promise.resolve(data.bin);
  3989. }
  3990. else {
  3991. babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Tools"].Warn("Unexpected BIN chunk");
  3992. }
  3993. }
  3994. };
  3995. GLTFLoader.prototype._setupData = function () {
  3996. ArrayItem.Assign(this._gltf.accessors);
  3997. ArrayItem.Assign(this._gltf.animations);
  3998. ArrayItem.Assign(this._gltf.buffers);
  3999. ArrayItem.Assign(this._gltf.bufferViews);
  4000. ArrayItem.Assign(this._gltf.cameras);
  4001. ArrayItem.Assign(this._gltf.images);
  4002. ArrayItem.Assign(this._gltf.materials);
  4003. ArrayItem.Assign(this._gltf.meshes);
  4004. ArrayItem.Assign(this._gltf.nodes);
  4005. ArrayItem.Assign(this._gltf.samplers);
  4006. ArrayItem.Assign(this._gltf.scenes);
  4007. ArrayItem.Assign(this._gltf.skins);
  4008. ArrayItem.Assign(this._gltf.textures);
  4009. if (this._gltf.nodes) {
  4010. var nodeParents = {};
  4011. for (var _i = 0, _a = this._gltf.nodes; _i < _a.length; _i++) {
  4012. var node = _a[_i];
  4013. if (node.children) {
  4014. for (var _b = 0, _c = node.children; _b < _c.length; _b++) {
  4015. var index = _c[_b];
  4016. nodeParents[index] = node.index;
  4017. }
  4018. }
  4019. }
  4020. var rootNode = this._createRootNode();
  4021. for (var _d = 0, _e = this._gltf.nodes; _d < _e.length; _d++) {
  4022. var node = _e[_d];
  4023. var parentIndex = nodeParents[node.index];
  4024. node.parent = parentIndex === undefined ? rootNode : this._gltf.nodes[parentIndex];
  4025. }
  4026. }
  4027. };
  4028. GLTFLoader.prototype._loadExtensions = function () {
  4029. for (var _i = 0, _a = GLTFLoader._ExtensionNames; _i < _a.length; _i++) {
  4030. var name_2 = _a[_i];
  4031. var extension = GLTFLoader._ExtensionFactories[name_2](this);
  4032. this._extensions[name_2] = extension;
  4033. this._parent.onExtensionLoadedObservable.notifyObservers(extension);
  4034. }
  4035. this._parent.onExtensionLoadedObservable.clear();
  4036. };
  4037. GLTFLoader.prototype._checkExtensions = function () {
  4038. if (this._gltf.extensionsRequired) {
  4039. for (var _i = 0, _a = this._gltf.extensionsRequired; _i < _a.length; _i++) {
  4040. var name_3 = _a[_i];
  4041. var extension = this._extensions[name_3];
  4042. if (!extension || !extension.enabled) {
  4043. throw new Error("Require extension " + name_3 + " is not available");
  4044. }
  4045. }
  4046. }
  4047. };
  4048. GLTFLoader.prototype._setState = function (state) {
  4049. this._state = state;
  4050. this.log(_glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderState"][this._state]);
  4051. };
  4052. GLTFLoader.prototype._createRootNode = function () {
  4053. this._rootBabylonMesh = new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Mesh"]("__root__", this._babylonScene);
  4054. this._rootBabylonMesh.setEnabled(false);
  4055. var rootNode = {
  4056. _babylonTransformNode: this._rootBabylonMesh,
  4057. index: -1
  4058. };
  4059. switch (this._parent.coordinateSystemMode) {
  4060. case _glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderCoordinateSystemMode"].AUTO: {
  4061. if (!this._babylonScene.useRightHandedSystem) {
  4062. rootNode.rotation = [0, 1, 0, 0];
  4063. rootNode.scale = [1, 1, -1];
  4064. GLTFLoader._LoadTransform(rootNode, this._rootBabylonMesh);
  4065. }
  4066. break;
  4067. }
  4068. case _glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderCoordinateSystemMode"].FORCE_RIGHT_HANDED: {
  4069. this._babylonScene.useRightHandedSystem = true;
  4070. break;
  4071. }
  4072. default: {
  4073. throw new Error("Invalid coordinate system mode (" + this._parent.coordinateSystemMode + ")");
  4074. }
  4075. }
  4076. this._parent.onMeshLoadedObservable.notifyObservers(this._rootBabylonMesh);
  4077. return rootNode;
  4078. };
  4079. /**
  4080. * Loads a glTF scene.
  4081. * @param context The context when loading the asset
  4082. * @param scene The glTF scene property
  4083. * @returns A promise that resolves when the load is complete
  4084. */
  4085. GLTFLoader.prototype.loadSceneAsync = function (context, scene) {
  4086. var _this = this;
  4087. var extensionPromise = this._extensionsLoadSceneAsync(context, scene);
  4088. if (extensionPromise) {
  4089. return extensionPromise;
  4090. }
  4091. var promises = new Array();
  4092. this.logOpen(context + " " + (scene.name || ""));
  4093. if (scene.nodes) {
  4094. for (var _i = 0, _a = scene.nodes; _i < _a.length; _i++) {
  4095. var index = _a[_i];
  4096. var node = ArrayItem.Get(context + "/nodes/" + index, this._gltf.nodes, index);
  4097. promises.push(this.loadNodeAsync("/nodes/" + node.index, node, function (babylonMesh) {
  4098. babylonMesh.parent = _this._rootBabylonMesh;
  4099. }));
  4100. }
  4101. }
  4102. // Link all Babylon bones for each glTF node with the corresponding Babylon transform node.
  4103. // A glTF joint is a pointer to a glTF node in the glTF node hierarchy similar to Unity3D.
  4104. if (this._gltf.nodes) {
  4105. for (var _b = 0, _c = this._gltf.nodes; _b < _c.length; _b++) {
  4106. var node = _c[_b];
  4107. if (node._babylonTransformNode && node._babylonBones) {
  4108. for (var _d = 0, _e = node._babylonBones; _d < _e.length; _d++) {
  4109. var babylonBone = _e[_d];
  4110. babylonBone.linkTransformNode(node._babylonTransformNode);
  4111. }
  4112. }
  4113. }
  4114. }
  4115. promises.push(this._loadAnimationsAsync());
  4116. this.logClose();
  4117. return Promise.all(promises).then(function () { });
  4118. };
  4119. GLTFLoader.prototype._forEachPrimitive = function (node, callback) {
  4120. if (node._primitiveBabylonMeshes) {
  4121. for (var _i = 0, _a = node._primitiveBabylonMeshes; _i < _a.length; _i++) {
  4122. var babylonMesh = _a[_i];
  4123. callback(babylonMesh);
  4124. }
  4125. }
  4126. };
  4127. GLTFLoader.prototype._getMeshes = function () {
  4128. var meshes = new Array();
  4129. // Root mesh is always first.
  4130. meshes.push(this._rootBabylonMesh);
  4131. var nodes = this._gltf.nodes;
  4132. if (nodes) {
  4133. for (var _i = 0, nodes_1 = nodes; _i < nodes_1.length; _i++) {
  4134. var node = nodes_1[_i];
  4135. this._forEachPrimitive(node, function (babylonMesh) {
  4136. meshes.push(babylonMesh);
  4137. });
  4138. }
  4139. }
  4140. return meshes;
  4141. };
  4142. GLTFLoader.prototype._getSkeletons = function () {
  4143. var skeletons = new Array();
  4144. var skins = this._gltf.skins;
  4145. if (skins) {
  4146. for (var _i = 0, skins_1 = skins; _i < skins_1.length; _i++) {
  4147. var skin = skins_1[_i];
  4148. if (skin._data) {
  4149. skeletons.push(skin._data.babylonSkeleton);
  4150. }
  4151. }
  4152. }
  4153. return skeletons;
  4154. };
  4155. GLTFLoader.prototype._getAnimationGroups = function () {
  4156. var animationGroups = new Array();
  4157. var animations = this._gltf.animations;
  4158. if (animations) {
  4159. for (var _i = 0, animations_1 = animations; _i < animations_1.length; _i++) {
  4160. var animation = animations_1[_i];
  4161. if (animation._babylonAnimationGroup) {
  4162. animationGroups.push(animation._babylonAnimationGroup);
  4163. }
  4164. }
  4165. }
  4166. return animationGroups;
  4167. };
  4168. GLTFLoader.prototype._startAnimations = function () {
  4169. switch (this._parent.animationStartMode) {
  4170. case _glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderAnimationStartMode"].NONE: {
  4171. // do nothing
  4172. break;
  4173. }
  4174. case _glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderAnimationStartMode"].FIRST: {
  4175. var babylonAnimationGroups = this._getAnimationGroups();
  4176. if (babylonAnimationGroups.length !== 0) {
  4177. babylonAnimationGroups[0].start(true);
  4178. }
  4179. break;
  4180. }
  4181. case _glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderAnimationStartMode"].ALL: {
  4182. var babylonAnimationGroups = this._getAnimationGroups();
  4183. for (var _i = 0, babylonAnimationGroups_1 = babylonAnimationGroups; _i < babylonAnimationGroups_1.length; _i++) {
  4184. var babylonAnimationGroup = babylonAnimationGroups_1[_i];
  4185. babylonAnimationGroup.start(true);
  4186. }
  4187. break;
  4188. }
  4189. default: {
  4190. babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Tools"].Error("Invalid animation start mode (" + this._parent.animationStartMode + ")");
  4191. return;
  4192. }
  4193. }
  4194. };
  4195. /**
  4196. * Loads a glTF node.
  4197. * @param context The context when loading the asset
  4198. * @param node The glTF node property
  4199. * @param assign A function called synchronously after parsing the glTF properties
  4200. * @returns A promise that resolves with the loaded Babylon mesh when the load is complete
  4201. */
  4202. GLTFLoader.prototype.loadNodeAsync = function (context, node, assign) {
  4203. var _this = this;
  4204. if (assign === void 0) { assign = function () { }; }
  4205. var extensionPromise = this._extensionsLoadNodeAsync(context, node, assign);
  4206. if (extensionPromise) {
  4207. return extensionPromise;
  4208. }
  4209. if (node._babylonTransformNode) {
  4210. throw new Error(context + ": Invalid recursive node hierarchy");
  4211. }
  4212. var promises = new Array();
  4213. this.logOpen(context + " " + (node.name || ""));
  4214. var loadNode = function (babylonTransformNode) {
  4215. GLTFLoader.AddPointerMetadata(babylonTransformNode, context);
  4216. GLTFLoader._LoadTransform(node, babylonTransformNode);
  4217. if (node.camera != undefined) {
  4218. var camera = ArrayItem.Get(context + "/camera", _this._gltf.cameras, node.camera);
  4219. promises.push(_this.loadCameraAsync("/cameras/" + camera.index, camera, function (babylonCamera) {
  4220. babylonCamera.parent = babylonTransformNode;
  4221. }));
  4222. }
  4223. if (node.children) {
  4224. for (var _i = 0, _a = node.children; _i < _a.length; _i++) {
  4225. var index = _a[_i];
  4226. var childNode = ArrayItem.Get(context + "/children/" + index, _this._gltf.nodes, index);
  4227. promises.push(_this.loadNodeAsync("/nodes/" + childNode.index, childNode, function (childBabylonMesh) {
  4228. childBabylonMesh.parent = babylonTransformNode;
  4229. }));
  4230. }
  4231. }
  4232. assign(babylonTransformNode);
  4233. };
  4234. if (node.mesh == undefined) {
  4235. var nodeName = node.name || "node" + node.index;
  4236. node._babylonTransformNode = new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["TransformNode"](nodeName, this._babylonScene);
  4237. loadNode(node._babylonTransformNode);
  4238. }
  4239. else {
  4240. var mesh = ArrayItem.Get(context + "/mesh", this._gltf.meshes, node.mesh);
  4241. promises.push(this._loadMeshAsync("/meshes/" + mesh.index, node, mesh, loadNode));
  4242. }
  4243. this.logClose();
  4244. return Promise.all(promises).then(function () {
  4245. _this._forEachPrimitive(node, function (babylonMesh) {
  4246. babylonMesh.refreshBoundingInfo(true);
  4247. });
  4248. return node._babylonTransformNode;
  4249. });
  4250. };
  4251. GLTFLoader.prototype._loadMeshAsync = function (context, node, mesh, assign) {
  4252. var primitives = mesh.primitives;
  4253. if (!primitives || !primitives.length) {
  4254. throw new Error(context + ": Primitives are missing");
  4255. }
  4256. if (primitives[0].index == undefined) {
  4257. ArrayItem.Assign(primitives);
  4258. }
  4259. var promises = new Array();
  4260. this.logOpen(context + " " + (mesh.name || ""));
  4261. var name = node.name || "node" + node.index;
  4262. if (primitives.length === 1) {
  4263. var primitive = mesh.primitives[0];
  4264. promises.push(this._loadMeshPrimitiveAsync(context + "/primitives/" + primitive.index, name, node, mesh, primitive, function (babylonMesh) {
  4265. node._babylonTransformNode = babylonMesh;
  4266. node._primitiveBabylonMeshes = [babylonMesh];
  4267. }));
  4268. }
  4269. else {
  4270. node._babylonTransformNode = new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["TransformNode"](name, this._babylonScene);
  4271. node._primitiveBabylonMeshes = [];
  4272. for (var _i = 0, primitives_1 = primitives; _i < primitives_1.length; _i++) {
  4273. var primitive = primitives_1[_i];
  4274. promises.push(this._loadMeshPrimitiveAsync(context + "/primitives/" + primitive.index, name + "_primitive" + primitive.index, node, mesh, primitive, function (babylonMesh) {
  4275. babylonMesh.parent = node._babylonTransformNode;
  4276. node._primitiveBabylonMeshes.push(babylonMesh);
  4277. }));
  4278. }
  4279. }
  4280. if (node.skin != undefined) {
  4281. var skin = ArrayItem.Get(context + "/skin", this._gltf.skins, node.skin);
  4282. promises.push(this._loadSkinAsync("/skins/" + skin.index, node, skin));
  4283. }
  4284. assign(node._babylonTransformNode);
  4285. this.logClose();
  4286. return Promise.all(promises).then(function () {
  4287. return node._babylonTransformNode;
  4288. });
  4289. };
  4290. /**
  4291. * @hidden Define this method to modify the default behavior when loading data for mesh primitives.
  4292. * @param context The context when loading the asset
  4293. * @param name The mesh name when loading the asset
  4294. * @param node The glTF node when loading the asset
  4295. * @param mesh The glTF mesh when loading the asset
  4296. * @param primitive The glTF mesh primitive property
  4297. * @param assign A function called synchronously after parsing the glTF properties
  4298. * @returns A promise that resolves with the loaded mesh when the load is complete or null if not handled
  4299. */
  4300. GLTFLoader.prototype._loadMeshPrimitiveAsync = function (context, name, node, mesh, primitive, assign) {
  4301. var _this = this;
  4302. var extensionPromise = this._extensionsLoadMeshPrimitiveAsync(context, name, node, mesh, primitive, assign);
  4303. if (extensionPromise) {
  4304. return extensionPromise;
  4305. }
  4306. this.logOpen("" + context);
  4307. var canInstance = (node.skin == undefined && !mesh.primitives[0].targets);
  4308. var babylonAbstractMesh;
  4309. var promise;
  4310. var instanceData = primitive._instanceData;
  4311. if (canInstance && instanceData) {
  4312. babylonAbstractMesh = instanceData.babylonSourceMesh.createInstance(name);
  4313. promise = instanceData.promise;
  4314. }
  4315. else {
  4316. var promises = new Array();
  4317. var babylonMesh_1 = new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Mesh"](name, this._babylonScene);
  4318. this._createMorphTargets(context, node, mesh, primitive, babylonMesh_1);
  4319. promises.push(this._loadVertexDataAsync(context, primitive, babylonMesh_1).then(function (babylonGeometry) {
  4320. return _this._loadMorphTargetsAsync(context, primitive, babylonMesh_1, babylonGeometry).then(function () {
  4321. babylonGeometry.applyToMesh(babylonMesh_1);
  4322. });
  4323. }));
  4324. var babylonDrawMode = GLTFLoader._GetDrawMode(context, primitive.mode);
  4325. if (primitive.material == undefined) {
  4326. var babylonMaterial = this._defaultBabylonMaterialData[babylonDrawMode];
  4327. if (!babylonMaterial) {
  4328. babylonMaterial = this._createDefaultMaterial("__GLTFLoader._default", babylonDrawMode);
  4329. this._parent.onMaterialLoadedObservable.notifyObservers(babylonMaterial);
  4330. this._defaultBabylonMaterialData[babylonDrawMode] = babylonMaterial;
  4331. }
  4332. babylonMesh_1.material = babylonMaterial;
  4333. }
  4334. else {
  4335. var material = ArrayItem.Get(context + "/material", this._gltf.materials, primitive.material);
  4336. promises.push(this._loadMaterialAsync("/materials/" + material.index, material, babylonMesh_1, babylonDrawMode, function (babylonMaterial) {
  4337. babylonMesh_1.material = babylonMaterial;
  4338. }));
  4339. }
  4340. promise = Promise.all(promises);
  4341. if (canInstance) {
  4342. primitive._instanceData = {
  4343. babylonSourceMesh: babylonMesh_1,
  4344. promise: promise
  4345. };
  4346. }
  4347. babylonAbstractMesh = babylonMesh_1;
  4348. }
  4349. GLTFLoader.AddPointerMetadata(babylonAbstractMesh, context);
  4350. this._parent.onMeshLoadedObservable.notifyObservers(babylonAbstractMesh);
  4351. assign(babylonAbstractMesh);
  4352. this.logClose();
  4353. return promise.then(function () {
  4354. return babylonAbstractMesh;
  4355. });
  4356. };
  4357. GLTFLoader.prototype._loadVertexDataAsync = function (context, primitive, babylonMesh) {
  4358. var _this = this;
  4359. var extensionPromise = this._extensionsLoadVertexDataAsync(context, primitive, babylonMesh);
  4360. if (extensionPromise) {
  4361. return extensionPromise;
  4362. }
  4363. var attributes = primitive.attributes;
  4364. if (!attributes) {
  4365. throw new Error(context + ": Attributes are missing");
  4366. }
  4367. var promises = new Array();
  4368. var babylonGeometry = new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Geometry"](babylonMesh.name, this._babylonScene);
  4369. if (primitive.indices == undefined) {
  4370. babylonMesh.isUnIndexed = true;
  4371. }
  4372. else {
  4373. var accessor = ArrayItem.Get(context + "/indices", this._gltf.accessors, primitive.indices);
  4374. promises.push(this._loadIndicesAccessorAsync("/accessors/" + accessor.index, accessor).then(function (data) {
  4375. babylonGeometry.setIndices(data);
  4376. }));
  4377. }
  4378. var loadAttribute = function (attribute, kind, callback) {
  4379. if (attributes[attribute] == undefined) {
  4380. return;
  4381. }
  4382. babylonMesh._delayInfo = babylonMesh._delayInfo || [];
  4383. if (babylonMesh._delayInfo.indexOf(kind) === -1) {
  4384. babylonMesh._delayInfo.push(kind);
  4385. }
  4386. var accessor = ArrayItem.Get(context + "/attributes/" + attribute, _this._gltf.accessors, attributes[attribute]);
  4387. promises.push(_this._loadVertexAccessorAsync("/accessors/" + accessor.index, accessor, kind).then(function (babylonVertexBuffer) {
  4388. babylonGeometry.setVerticesBuffer(babylonVertexBuffer, accessor.count);
  4389. }));
  4390. if (callback) {
  4391. callback(accessor);
  4392. }
  4393. };
  4394. loadAttribute("POSITION", babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].PositionKind);
  4395. loadAttribute("NORMAL", babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].NormalKind);
  4396. loadAttribute("TANGENT", babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].TangentKind);
  4397. loadAttribute("TEXCOORD_0", babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].UVKind);
  4398. loadAttribute("TEXCOORD_1", babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].UV2Kind);
  4399. loadAttribute("JOINTS_0", babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].MatricesIndicesKind);
  4400. loadAttribute("WEIGHTS_0", babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].MatricesWeightsKind);
  4401. loadAttribute("COLOR_0", babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].ColorKind, function (accessor) {
  4402. if (accessor.type === "VEC4" /* VEC4 */) {
  4403. babylonMesh.hasVertexAlpha = true;
  4404. }
  4405. });
  4406. return Promise.all(promises).then(function () {
  4407. return babylonGeometry;
  4408. });
  4409. };
  4410. GLTFLoader.prototype._createMorphTargets = function (context, node, mesh, primitive, babylonMesh) {
  4411. if (!primitive.targets) {
  4412. return;
  4413. }
  4414. if (node._numMorphTargets == undefined) {
  4415. node._numMorphTargets = primitive.targets.length;
  4416. }
  4417. else if (primitive.targets.length !== node._numMorphTargets) {
  4418. throw new Error(context + ": Primitives do not have the same number of targets");
  4419. }
  4420. babylonMesh.morphTargetManager = new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["MorphTargetManager"](babylonMesh.getScene());
  4421. for (var index = 0; index < primitive.targets.length; index++) {
  4422. var weight = node.weights ? node.weights[index] : mesh.weights ? mesh.weights[index] : 0;
  4423. babylonMesh.morphTargetManager.addTarget(new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["MorphTarget"]("morphTarget" + index, weight, babylonMesh.getScene()));
  4424. // TODO: tell the target whether it has positions, normals, tangents
  4425. }
  4426. };
  4427. GLTFLoader.prototype._loadMorphTargetsAsync = function (context, primitive, babylonMesh, babylonGeometry) {
  4428. if (!primitive.targets) {
  4429. return Promise.resolve();
  4430. }
  4431. var promises = new Array();
  4432. var morphTargetManager = babylonMesh.morphTargetManager;
  4433. for (var index = 0; index < morphTargetManager.numTargets; index++) {
  4434. var babylonMorphTarget = morphTargetManager.getTarget(index);
  4435. promises.push(this._loadMorphTargetVertexDataAsync(context + "/targets/" + index, babylonGeometry, primitive.targets[index], babylonMorphTarget));
  4436. }
  4437. return Promise.all(promises).then(function () { });
  4438. };
  4439. GLTFLoader.prototype._loadMorphTargetVertexDataAsync = function (context, babylonGeometry, attributes, babylonMorphTarget) {
  4440. var _this = this;
  4441. var promises = new Array();
  4442. var loadAttribute = function (attribute, kind, setData) {
  4443. if (attributes[attribute] == undefined) {
  4444. return;
  4445. }
  4446. var babylonVertexBuffer = babylonGeometry.getVertexBuffer(kind);
  4447. if (!babylonVertexBuffer) {
  4448. return;
  4449. }
  4450. var accessor = ArrayItem.Get(context + "/" + attribute, _this._gltf.accessors, attributes[attribute]);
  4451. promises.push(_this._loadFloatAccessorAsync("/accessors/" + accessor.index, accessor).then(function (data) {
  4452. setData(babylonVertexBuffer, data);
  4453. }));
  4454. };
  4455. loadAttribute("POSITION", babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].PositionKind, function (babylonVertexBuffer, data) {
  4456. var positions = new Float32Array(data.length);
  4457. babylonVertexBuffer.forEach(data.length, function (value, index) {
  4458. positions[index] = data[index] + value;
  4459. });
  4460. babylonMorphTarget.setPositions(positions);
  4461. });
  4462. loadAttribute("NORMAL", babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].NormalKind, function (babylonVertexBuffer, data) {
  4463. var normals = new Float32Array(data.length);
  4464. babylonVertexBuffer.forEach(normals.length, function (value, index) {
  4465. normals[index] = data[index] + value;
  4466. });
  4467. babylonMorphTarget.setNormals(normals);
  4468. });
  4469. loadAttribute("TANGENT", babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].TangentKind, function (babylonVertexBuffer, data) {
  4470. var tangents = new Float32Array(data.length / 3 * 4);
  4471. var dataIndex = 0;
  4472. babylonVertexBuffer.forEach(data.length / 3 * 4, function (value, index) {
  4473. // Tangent data for morph targets is stored as xyz delta.
  4474. // The vertexData.tangent is stored as xyzw.
  4475. // So we need to skip every fourth vertexData.tangent.
  4476. if (((index + 1) % 4) !== 0) {
  4477. tangents[dataIndex] = data[dataIndex] + value;
  4478. dataIndex++;
  4479. }
  4480. });
  4481. babylonMorphTarget.setTangents(tangents);
  4482. });
  4483. return Promise.all(promises).then(function () { });
  4484. };
  4485. GLTFLoader._LoadTransform = function (node, babylonNode) {
  4486. // Ignore the TRS of skinned nodes.
  4487. // See https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#skins (second implementation note)
  4488. if (node.skin != undefined) {
  4489. return;
  4490. }
  4491. var position = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Vector3"].Zero();
  4492. var rotation = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].Identity();
  4493. var scaling = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Vector3"].One();
  4494. if (node.matrix) {
  4495. var matrix = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Matrix"].FromArray(node.matrix);
  4496. matrix.decompose(scaling, rotation, position);
  4497. }
  4498. else {
  4499. if (node.translation) {
  4500. position = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Vector3"].FromArray(node.translation);
  4501. }
  4502. if (node.rotation) {
  4503. rotation = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].FromArray(node.rotation);
  4504. }
  4505. if (node.scale) {
  4506. scaling = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Vector3"].FromArray(node.scale);
  4507. }
  4508. }
  4509. babylonNode.position = position;
  4510. babylonNode.rotationQuaternion = rotation;
  4511. babylonNode.scaling = scaling;
  4512. };
  4513. GLTFLoader.prototype._loadSkinAsync = function (context, node, skin) {
  4514. var _this = this;
  4515. var extensionPromise = this._extensionsLoadSkinAsync(context, node, skin);
  4516. if (extensionPromise) {
  4517. return extensionPromise;
  4518. }
  4519. var assignSkeleton = function (skeleton) {
  4520. _this._forEachPrimitive(node, function (babylonMesh) {
  4521. babylonMesh.skeleton = skeleton;
  4522. });
  4523. };
  4524. if (skin._data) {
  4525. assignSkeleton(skin._data.babylonSkeleton);
  4526. return skin._data.promise;
  4527. }
  4528. var skeletonId = "skeleton" + skin.index;
  4529. var babylonSkeleton = new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Skeleton"](skin.name || skeletonId, skeletonId, this._babylonScene);
  4530. // See https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#skins (second implementation note)
  4531. babylonSkeleton.overrideMesh = this._rootBabylonMesh;
  4532. this._loadBones(context, skin, babylonSkeleton);
  4533. assignSkeleton(babylonSkeleton);
  4534. var promise = this._loadSkinInverseBindMatricesDataAsync(context, skin).then(function (inverseBindMatricesData) {
  4535. _this._updateBoneMatrices(babylonSkeleton, inverseBindMatricesData);
  4536. });
  4537. skin._data = {
  4538. babylonSkeleton: babylonSkeleton,
  4539. promise: promise
  4540. };
  4541. return promise;
  4542. };
  4543. GLTFLoader.prototype._loadBones = function (context, skin, babylonSkeleton) {
  4544. var babylonBones = {};
  4545. for (var _i = 0, _a = skin.joints; _i < _a.length; _i++) {
  4546. var index = _a[_i];
  4547. var node = ArrayItem.Get(context + "/joints/" + index, this._gltf.nodes, index);
  4548. this._loadBone(node, skin, babylonSkeleton, babylonBones);
  4549. }
  4550. };
  4551. GLTFLoader.prototype._loadBone = function (node, skin, babylonSkeleton, babylonBones) {
  4552. var babylonBone = babylonBones[node.index];
  4553. if (babylonBone) {
  4554. return babylonBone;
  4555. }
  4556. var babylonParentBone = null;
  4557. if (node.parent && node.parent._babylonTransformNode !== this._rootBabylonMesh) {
  4558. babylonParentBone = this._loadBone(node.parent, skin, babylonSkeleton, babylonBones);
  4559. }
  4560. var boneIndex = skin.joints.indexOf(node.index);
  4561. babylonBone = new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Bone"](node.name || "joint" + node.index, babylonSkeleton, babylonParentBone, this._getNodeMatrix(node), null, null, boneIndex);
  4562. babylonBones[node.index] = babylonBone;
  4563. node._babylonBones = node._babylonBones || [];
  4564. node._babylonBones.push(babylonBone);
  4565. return babylonBone;
  4566. };
  4567. GLTFLoader.prototype._loadSkinInverseBindMatricesDataAsync = function (context, skin) {
  4568. if (skin.inverseBindMatrices == undefined) {
  4569. return Promise.resolve(null);
  4570. }
  4571. var accessor = ArrayItem.Get(context + "/inverseBindMatrices", this._gltf.accessors, skin.inverseBindMatrices);
  4572. return this._loadFloatAccessorAsync("/accessors/" + accessor.index, accessor);
  4573. };
  4574. GLTFLoader.prototype._updateBoneMatrices = function (babylonSkeleton, inverseBindMatricesData) {
  4575. for (var _i = 0, _a = babylonSkeleton.bones; _i < _a.length; _i++) {
  4576. var babylonBone = _a[_i];
  4577. var baseMatrix = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Matrix"].Identity();
  4578. var boneIndex = babylonBone._index;
  4579. if (inverseBindMatricesData && boneIndex !== -1) {
  4580. babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Matrix"].FromArrayToRef(inverseBindMatricesData, boneIndex * 16, baseMatrix);
  4581. baseMatrix.invertToRef(baseMatrix);
  4582. }
  4583. var babylonParentBone = babylonBone.getParent();
  4584. if (babylonParentBone) {
  4585. baseMatrix.multiplyToRef(babylonParentBone.getInvertedAbsoluteTransform(), baseMatrix);
  4586. }
  4587. babylonBone.updateMatrix(baseMatrix, false, false);
  4588. babylonBone._updateDifferenceMatrix(undefined, false);
  4589. }
  4590. };
  4591. GLTFLoader.prototype._getNodeMatrix = function (node) {
  4592. return node.matrix ?
  4593. babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Matrix"].FromArray(node.matrix) :
  4594. babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Matrix"].Compose(node.scale ? babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Vector3"].FromArray(node.scale) : babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Vector3"].One(), node.rotation ? babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].FromArray(node.rotation) : babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].Identity(), node.translation ? babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Vector3"].FromArray(node.translation) : babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Vector3"].Zero());
  4595. };
  4596. /**
  4597. * Loads a glTF camera.
  4598. * @param context The context when loading the asset
  4599. * @param camera The glTF camera property
  4600. * @param assign A function called synchronously after parsing the glTF properties
  4601. * @returns A promise that resolves with the loaded Babylon camera when the load is complete
  4602. */
  4603. GLTFLoader.prototype.loadCameraAsync = function (context, camera, assign) {
  4604. if (assign === void 0) { assign = function () { }; }
  4605. var extensionPromise = this._extensionsLoadCameraAsync(context, camera, assign);
  4606. if (extensionPromise) {
  4607. return extensionPromise;
  4608. }
  4609. var promises = new Array();
  4610. this.logOpen(context + " " + (camera.name || ""));
  4611. var babylonCamera = new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["FreeCamera"](camera.name || "camera" + camera.index, babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Vector3"].Zero(), this._babylonScene, false);
  4612. babylonCamera.rotation = new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Vector3"](0, Math.PI, 0);
  4613. switch (camera.type) {
  4614. case "perspective" /* PERSPECTIVE */: {
  4615. var perspective = camera.perspective;
  4616. if (!perspective) {
  4617. throw new Error(context + ": Camera perspective properties are missing");
  4618. }
  4619. babylonCamera.fov = perspective.yfov;
  4620. babylonCamera.minZ = perspective.znear;
  4621. babylonCamera.maxZ = perspective.zfar || Number.MAX_VALUE;
  4622. break;
  4623. }
  4624. case "orthographic" /* ORTHOGRAPHIC */: {
  4625. if (!camera.orthographic) {
  4626. throw new Error(context + ": Camera orthographic properties are missing");
  4627. }
  4628. babylonCamera.mode = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Camera"].ORTHOGRAPHIC_CAMERA;
  4629. babylonCamera.orthoLeft = -camera.orthographic.xmag;
  4630. babylonCamera.orthoRight = camera.orthographic.xmag;
  4631. babylonCamera.orthoBottom = -camera.orthographic.ymag;
  4632. babylonCamera.orthoTop = camera.orthographic.ymag;
  4633. babylonCamera.minZ = camera.orthographic.znear;
  4634. babylonCamera.maxZ = camera.orthographic.zfar;
  4635. break;
  4636. }
  4637. default: {
  4638. throw new Error(context + ": Invalid camera type (" + camera.type + ")");
  4639. }
  4640. }
  4641. GLTFLoader.AddPointerMetadata(babylonCamera, context);
  4642. this._parent.onCameraLoadedObservable.notifyObservers(babylonCamera);
  4643. assign(babylonCamera);
  4644. return Promise.all(promises).then(function () {
  4645. return babylonCamera;
  4646. });
  4647. };
  4648. GLTFLoader.prototype._loadAnimationsAsync = function () {
  4649. var animations = this._gltf.animations;
  4650. if (!animations) {
  4651. return Promise.resolve();
  4652. }
  4653. var promises = new Array();
  4654. for (var index = 0; index < animations.length; index++) {
  4655. var animation = animations[index];
  4656. promises.push(this.loadAnimationAsync("/animations/" + animation.index, animation));
  4657. }
  4658. return Promise.all(promises).then(function () { });
  4659. };
  4660. /**
  4661. * Loads a glTF animation.
  4662. * @param context The context when loading the asset
  4663. * @param animation The glTF animation property
  4664. * @returns A promise that resolves with the loaded Babylon animation group when the load is complete
  4665. */
  4666. GLTFLoader.prototype.loadAnimationAsync = function (context, animation) {
  4667. var promise = this._extensionsLoadAnimationAsync(context, animation);
  4668. if (promise) {
  4669. return promise;
  4670. }
  4671. var babylonAnimationGroup = new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["AnimationGroup"](animation.name || "animation" + animation.index, this._babylonScene);
  4672. animation._babylonAnimationGroup = babylonAnimationGroup;
  4673. var promises = new Array();
  4674. ArrayItem.Assign(animation.channels);
  4675. ArrayItem.Assign(animation.samplers);
  4676. for (var _i = 0, _a = animation.channels; _i < _a.length; _i++) {
  4677. var channel = _a[_i];
  4678. promises.push(this._loadAnimationChannelAsync(context + "/channels/" + channel.index, context, animation, channel, babylonAnimationGroup));
  4679. }
  4680. return Promise.all(promises).then(function () {
  4681. babylonAnimationGroup.normalize(0);
  4682. return babylonAnimationGroup;
  4683. });
  4684. };
  4685. /**
  4686. * @hidden Loads a glTF animation channel.
  4687. * @param context The context when loading the asset
  4688. * @param animationContext The context of the animation when loading the asset
  4689. * @param animation The glTF animation property
  4690. * @param channel The glTF animation channel property
  4691. * @param babylonAnimationGroup The babylon animation group property
  4692. * @param animationTargetOverride The babylon animation channel target override property. My be null.
  4693. * @returns A void promise when the channel load is complete
  4694. */
  4695. GLTFLoader.prototype._loadAnimationChannelAsync = function (context, animationContext, animation, channel, babylonAnimationGroup, animationTargetOverride) {
  4696. var _this = this;
  4697. if (animationTargetOverride === void 0) { animationTargetOverride = null; }
  4698. if (channel.target.node == undefined) {
  4699. return Promise.resolve();
  4700. }
  4701. var targetNode = ArrayItem.Get(context + "/target/node", this._gltf.nodes, channel.target.node);
  4702. // Ignore animations that have no animation targets.
  4703. if ((channel.target.path === "weights" /* WEIGHTS */ && !targetNode._numMorphTargets) ||
  4704. (channel.target.path !== "weights" /* WEIGHTS */ && !targetNode._babylonTransformNode)) {
  4705. return Promise.resolve();
  4706. }
  4707. var sampler = ArrayItem.Get(context + "/sampler", animation.samplers, channel.sampler);
  4708. return this._loadAnimationSamplerAsync(animationContext + "/samplers/" + channel.sampler, sampler).then(function (data) {
  4709. var targetPath;
  4710. var animationType;
  4711. switch (channel.target.path) {
  4712. case "translation" /* TRANSLATION */: {
  4713. targetPath = "position";
  4714. animationType = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Animation"].ANIMATIONTYPE_VECTOR3;
  4715. break;
  4716. }
  4717. case "rotation" /* ROTATION */: {
  4718. targetPath = "rotationQuaternion";
  4719. animationType = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Animation"].ANIMATIONTYPE_QUATERNION;
  4720. break;
  4721. }
  4722. case "scale" /* SCALE */: {
  4723. targetPath = "scaling";
  4724. animationType = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Animation"].ANIMATIONTYPE_VECTOR3;
  4725. break;
  4726. }
  4727. case "weights" /* WEIGHTS */: {
  4728. targetPath = "influence";
  4729. animationType = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Animation"].ANIMATIONTYPE_FLOAT;
  4730. break;
  4731. }
  4732. default: {
  4733. throw new Error(context + "/target/path: Invalid value (" + channel.target.path + ")");
  4734. }
  4735. }
  4736. var outputBufferOffset = 0;
  4737. var getNextOutputValue;
  4738. switch (targetPath) {
  4739. case "position": {
  4740. getNextOutputValue = function () {
  4741. var value = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Vector3"].FromArray(data.output, outputBufferOffset);
  4742. outputBufferOffset += 3;
  4743. return value;
  4744. };
  4745. break;
  4746. }
  4747. case "rotationQuaternion": {
  4748. getNextOutputValue = function () {
  4749. var value = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].FromArray(data.output, outputBufferOffset);
  4750. outputBufferOffset += 4;
  4751. return value;
  4752. };
  4753. break;
  4754. }
  4755. case "scaling": {
  4756. getNextOutputValue = function () {
  4757. var value = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Vector3"].FromArray(data.output, outputBufferOffset);
  4758. outputBufferOffset += 3;
  4759. return value;
  4760. };
  4761. break;
  4762. }
  4763. case "influence": {
  4764. getNextOutputValue = function () {
  4765. var value = new Array(targetNode._numMorphTargets);
  4766. for (var i = 0; i < targetNode._numMorphTargets; i++) {
  4767. value[i] = data.output[outputBufferOffset++];
  4768. }
  4769. return value;
  4770. };
  4771. break;
  4772. }
  4773. }
  4774. var getNextKey;
  4775. switch (data.interpolation) {
  4776. case "STEP" /* STEP */: {
  4777. getNextKey = function (frameIndex) { return ({
  4778. frame: data.input[frameIndex],
  4779. value: getNextOutputValue(),
  4780. interpolation: babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["AnimationKeyInterpolation"].STEP
  4781. }); };
  4782. break;
  4783. }
  4784. case "LINEAR" /* LINEAR */: {
  4785. getNextKey = function (frameIndex) { return ({
  4786. frame: data.input[frameIndex],
  4787. value: getNextOutputValue()
  4788. }); };
  4789. break;
  4790. }
  4791. case "CUBICSPLINE" /* CUBICSPLINE */: {
  4792. getNextKey = function (frameIndex) { return ({
  4793. frame: data.input[frameIndex],
  4794. inTangent: getNextOutputValue(),
  4795. value: getNextOutputValue(),
  4796. outTangent: getNextOutputValue()
  4797. }); };
  4798. break;
  4799. }
  4800. }
  4801. var keys = new Array(data.input.length);
  4802. for (var frameIndex = 0; frameIndex < data.input.length; frameIndex++) {
  4803. keys[frameIndex] = getNextKey(frameIndex);
  4804. }
  4805. if (targetPath === "influence") {
  4806. var _loop_1 = function (targetIndex) {
  4807. var animationName = babylonAnimationGroup.name + "_channel" + babylonAnimationGroup.targetedAnimations.length;
  4808. var babylonAnimation = new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Animation"](animationName, targetPath, 1, animationType);
  4809. babylonAnimation.setKeys(keys.map(function (key) { return ({
  4810. frame: key.frame,
  4811. inTangent: key.inTangent ? key.inTangent[targetIndex] : undefined,
  4812. value: key.value[targetIndex],
  4813. outTangent: key.outTangent ? key.outTangent[targetIndex] : undefined
  4814. }); }));
  4815. _this._forEachPrimitive(targetNode, function (babylonAbstractMesh) {
  4816. var babylonMesh = babylonAbstractMesh;
  4817. var morphTarget = babylonMesh.morphTargetManager.getTarget(targetIndex);
  4818. var babylonAnimationClone = babylonAnimation.clone();
  4819. morphTarget.animations.push(babylonAnimationClone);
  4820. babylonAnimationGroup.addTargetedAnimation(babylonAnimationClone, morphTarget);
  4821. });
  4822. };
  4823. for (var targetIndex = 0; targetIndex < targetNode._numMorphTargets; targetIndex++) {
  4824. _loop_1(targetIndex);
  4825. }
  4826. }
  4827. else {
  4828. var animationName = babylonAnimationGroup.name + "_channel" + babylonAnimationGroup.targetedAnimations.length;
  4829. var babylonAnimation = new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Animation"](animationName, targetPath, 1, animationType);
  4830. babylonAnimation.setKeys(keys);
  4831. if (animationTargetOverride != null && animationTargetOverride.animations != null) {
  4832. animationTargetOverride.animations.push(babylonAnimation);
  4833. babylonAnimationGroup.addTargetedAnimation(babylonAnimation, animationTargetOverride);
  4834. }
  4835. else {
  4836. targetNode._babylonTransformNode.animations.push(babylonAnimation);
  4837. babylonAnimationGroup.addTargetedAnimation(babylonAnimation, targetNode._babylonTransformNode);
  4838. }
  4839. }
  4840. });
  4841. };
  4842. GLTFLoader.prototype._loadAnimationSamplerAsync = function (context, sampler) {
  4843. if (sampler._data) {
  4844. return sampler._data;
  4845. }
  4846. var interpolation = sampler.interpolation || "LINEAR" /* LINEAR */;
  4847. switch (interpolation) {
  4848. case "STEP" /* STEP */:
  4849. case "LINEAR" /* LINEAR */:
  4850. case "CUBICSPLINE" /* CUBICSPLINE */: {
  4851. break;
  4852. }
  4853. default: {
  4854. throw new Error(context + "/interpolation: Invalid value (" + sampler.interpolation + ")");
  4855. }
  4856. }
  4857. var inputAccessor = ArrayItem.Get(context + "/input", this._gltf.accessors, sampler.input);
  4858. var outputAccessor = ArrayItem.Get(context + "/output", this._gltf.accessors, sampler.output);
  4859. sampler._data = Promise.all([
  4860. this._loadFloatAccessorAsync("/accessors/" + inputAccessor.index, inputAccessor),
  4861. this._loadFloatAccessorAsync("/accessors/" + outputAccessor.index, outputAccessor)
  4862. ]).then(function (_a) {
  4863. var inputData = _a[0], outputData = _a[1];
  4864. return {
  4865. input: inputData,
  4866. interpolation: interpolation,
  4867. output: outputData,
  4868. };
  4869. });
  4870. return sampler._data;
  4871. };
  4872. GLTFLoader.prototype._loadBufferAsync = function (context, buffer) {
  4873. if (buffer._data) {
  4874. return buffer._data;
  4875. }
  4876. if (!buffer.uri) {
  4877. throw new Error(context + "/uri: Value is missing");
  4878. }
  4879. buffer._data = this.loadUriAsync(context + "/uri", buffer, buffer.uri);
  4880. return buffer._data;
  4881. };
  4882. /**
  4883. * Loads a glTF buffer view.
  4884. * @param context The context when loading the asset
  4885. * @param bufferView The glTF buffer view property
  4886. * @returns A promise that resolves with the loaded data when the load is complete
  4887. */
  4888. GLTFLoader.prototype.loadBufferViewAsync = function (context, bufferView) {
  4889. if (bufferView._data) {
  4890. return bufferView._data;
  4891. }
  4892. var buffer = ArrayItem.Get(context + "/buffer", this._gltf.buffers, bufferView.buffer);
  4893. bufferView._data = this._loadBufferAsync("/buffers/" + buffer.index, buffer).then(function (data) {
  4894. try {
  4895. return new Uint8Array(data.buffer, data.byteOffset + (bufferView.byteOffset || 0), bufferView.byteLength);
  4896. }
  4897. catch (e) {
  4898. throw new Error(context + ": " + e.message);
  4899. }
  4900. });
  4901. return bufferView._data;
  4902. };
  4903. GLTFLoader.prototype._loadAccessorAsync = function (context, accessor, constructor) {
  4904. var _this = this;
  4905. if (accessor._data) {
  4906. return accessor._data;
  4907. }
  4908. var numComponents = GLTFLoader._GetNumComponents(context, accessor.type);
  4909. var byteStride = numComponents * babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].GetTypeByteLength(accessor.componentType);
  4910. var length = numComponents * accessor.count;
  4911. if (accessor.bufferView == undefined) {
  4912. accessor._data = Promise.resolve(new constructor(length));
  4913. }
  4914. else {
  4915. var bufferView_1 = ArrayItem.Get(context + "/bufferView", this._gltf.bufferViews, accessor.bufferView);
  4916. accessor._data = this.loadBufferViewAsync("/bufferViews/" + bufferView_1.index, bufferView_1).then(function (data) {
  4917. if (accessor.componentType === 5126 /* FLOAT */ && !accessor.normalized) {
  4918. return GLTFLoader._GetTypedArray(context, accessor.componentType, data, accessor.byteOffset, length);
  4919. }
  4920. else {
  4921. var typedArray_1 = new constructor(length);
  4922. babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].ForEach(data, accessor.byteOffset || 0, bufferView_1.byteStride || byteStride, numComponents, accessor.componentType, typedArray_1.length, accessor.normalized || false, function (value, index) {
  4923. typedArray_1[index] = value;
  4924. });
  4925. return typedArray_1;
  4926. }
  4927. });
  4928. }
  4929. if (accessor.sparse) {
  4930. var sparse_1 = accessor.sparse;
  4931. accessor._data = accessor._data.then(function (data) {
  4932. var typedArray = data;
  4933. var indicesBufferView = ArrayItem.Get(context + "/sparse/indices/bufferView", _this._gltf.bufferViews, sparse_1.indices.bufferView);
  4934. var valuesBufferView = ArrayItem.Get(context + "/sparse/values/bufferView", _this._gltf.bufferViews, sparse_1.values.bufferView);
  4935. return Promise.all([
  4936. _this.loadBufferViewAsync("/bufferViews/" + indicesBufferView.index, indicesBufferView),
  4937. _this.loadBufferViewAsync("/bufferViews/" + valuesBufferView.index, valuesBufferView)
  4938. ]).then(function (_a) {
  4939. var indicesData = _a[0], valuesData = _a[1];
  4940. var indices = GLTFLoader._GetTypedArray(context + "/sparse/indices", sparse_1.indices.componentType, indicesData, sparse_1.indices.byteOffset, sparse_1.count);
  4941. var sparseLength = numComponents * sparse_1.count;
  4942. var values;
  4943. if (accessor.componentType === 5126 /* FLOAT */ && !accessor.normalized) {
  4944. values = GLTFLoader._GetTypedArray(context + "/sparse/values", accessor.componentType, valuesData, sparse_1.values.byteOffset, sparseLength);
  4945. }
  4946. else {
  4947. var sparseData = GLTFLoader._GetTypedArray(context + "/sparse/values", accessor.componentType, valuesData, sparse_1.values.byteOffset, sparseLength);
  4948. values = new constructor(sparseLength);
  4949. babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].ForEach(sparseData, 0, byteStride, numComponents, accessor.componentType, values.length, accessor.normalized || false, function (value, index) {
  4950. values[index] = value;
  4951. });
  4952. }
  4953. var valuesIndex = 0;
  4954. for (var indicesIndex = 0; indicesIndex < indices.length; indicesIndex++) {
  4955. var dataIndex = indices[indicesIndex] * numComponents;
  4956. for (var componentIndex = 0; componentIndex < numComponents; componentIndex++) {
  4957. typedArray[dataIndex++] = values[valuesIndex++];
  4958. }
  4959. }
  4960. return typedArray;
  4961. });
  4962. });
  4963. }
  4964. return accessor._data;
  4965. };
  4966. GLTFLoader.prototype._loadFloatAccessorAsync = function (context, accessor) {
  4967. return this._loadAccessorAsync(context, accessor, Float32Array);
  4968. };
  4969. GLTFLoader.prototype._loadIndicesAccessorAsync = function (context, accessor) {
  4970. if (accessor.type !== "SCALAR" /* SCALAR */) {
  4971. throw new Error(context + "/type: Invalid value " + accessor.type);
  4972. }
  4973. if (accessor.componentType !== 5121 /* UNSIGNED_BYTE */ &&
  4974. accessor.componentType !== 5123 /* UNSIGNED_SHORT */ &&
  4975. accessor.componentType !== 5125 /* UNSIGNED_INT */) {
  4976. throw new Error(context + "/componentType: Invalid value " + accessor.componentType);
  4977. }
  4978. if (accessor._data) {
  4979. return accessor._data;
  4980. }
  4981. if (accessor.sparse) {
  4982. var constructor = GLTFLoader._GetTypedArrayConstructor(context + "/componentType", accessor.componentType);
  4983. accessor._data = this._loadAccessorAsync(context, accessor, constructor);
  4984. }
  4985. else {
  4986. var bufferView = ArrayItem.Get(context + "/bufferView", this._gltf.bufferViews, accessor.bufferView);
  4987. accessor._data = this.loadBufferViewAsync("/bufferViews/" + bufferView.index, bufferView).then(function (data) {
  4988. return GLTFLoader._GetTypedArray(context, accessor.componentType, data, accessor.byteOffset, accessor.count);
  4989. });
  4990. }
  4991. return accessor._data;
  4992. };
  4993. GLTFLoader.prototype._loadVertexBufferViewAsync = function (bufferView, kind) {
  4994. var _this = this;
  4995. if (bufferView._babylonBuffer) {
  4996. return bufferView._babylonBuffer;
  4997. }
  4998. bufferView._babylonBuffer = this.loadBufferViewAsync("/bufferViews/" + bufferView.index, bufferView).then(function (data) {
  4999. return new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Buffer"](_this._babylonScene.getEngine(), data, false);
  5000. });
  5001. return bufferView._babylonBuffer;
  5002. };
  5003. GLTFLoader.prototype._loadVertexAccessorAsync = function (context, accessor, kind) {
  5004. var _this = this;
  5005. if (accessor._babylonVertexBuffer) {
  5006. return accessor._babylonVertexBuffer;
  5007. }
  5008. if (accessor.sparse) {
  5009. accessor._babylonVertexBuffer = this._loadFloatAccessorAsync("/accessors/" + accessor.index, accessor).then(function (data) {
  5010. return new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"](_this._babylonScene.getEngine(), data, kind, false);
  5011. });
  5012. }
  5013. // HACK: If byte offset is not a multiple of component type byte length then load as a float array instead of using Babylon buffers.
  5014. else if (accessor.byteOffset && accessor.byteOffset % babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].GetTypeByteLength(accessor.componentType) !== 0) {
  5015. babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Tools"].Warn("Accessor byte offset is not a multiple of component type byte length");
  5016. accessor._babylonVertexBuffer = this._loadFloatAccessorAsync("/accessors/" + accessor.index, accessor).then(function (data) {
  5017. return new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"](_this._babylonScene.getEngine(), data, kind, false);
  5018. });
  5019. }
  5020. else {
  5021. var bufferView_2 = ArrayItem.Get(context + "/bufferView", this._gltf.bufferViews, accessor.bufferView);
  5022. accessor._babylonVertexBuffer = this._loadVertexBufferViewAsync(bufferView_2, kind).then(function (babylonBuffer) {
  5023. var size = GLTFLoader._GetNumComponents(context, accessor.type);
  5024. return new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"](_this._babylonScene.getEngine(), babylonBuffer, kind, false, false, bufferView_2.byteStride, false, accessor.byteOffset, size, accessor.componentType, accessor.normalized, true);
  5025. });
  5026. }
  5027. return accessor._babylonVertexBuffer;
  5028. };
  5029. GLTFLoader.prototype._loadMaterialMetallicRoughnessPropertiesAsync = function (context, properties, babylonMaterial) {
  5030. if (!(babylonMaterial instanceof babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["PBRMaterial"])) {
  5031. throw new Error(context + ": Material type not supported");
  5032. }
  5033. var promises = new Array();
  5034. if (properties) {
  5035. if (properties.baseColorFactor) {
  5036. babylonMaterial.albedoColor = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Color3"].FromArray(properties.baseColorFactor);
  5037. babylonMaterial.alpha = properties.baseColorFactor[3];
  5038. }
  5039. else {
  5040. babylonMaterial.albedoColor = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Color3"].White();
  5041. }
  5042. babylonMaterial.metallic = properties.metallicFactor == undefined ? 1 : properties.metallicFactor;
  5043. babylonMaterial.roughness = properties.roughnessFactor == undefined ? 1 : properties.roughnessFactor;
  5044. if (properties.baseColorTexture) {
  5045. promises.push(this.loadTextureInfoAsync(context + "/baseColorTexture", properties.baseColorTexture, function (texture) {
  5046. texture.name = babylonMaterial.name + " (Base Color)";
  5047. babylonMaterial.albedoTexture = texture;
  5048. }));
  5049. }
  5050. if (properties.metallicRoughnessTexture) {
  5051. promises.push(this.loadTextureInfoAsync(context + "/metallicRoughnessTexture", properties.metallicRoughnessTexture, function (texture) {
  5052. texture.name = babylonMaterial.name + " (Metallic Roughness)";
  5053. babylonMaterial.metallicTexture = texture;
  5054. }));
  5055. babylonMaterial.useMetallnessFromMetallicTextureBlue = true;
  5056. babylonMaterial.useRoughnessFromMetallicTextureGreen = true;
  5057. babylonMaterial.useRoughnessFromMetallicTextureAlpha = false;
  5058. }
  5059. }
  5060. return Promise.all(promises).then(function () { });
  5061. };
  5062. /** @hidden */
  5063. GLTFLoader.prototype._loadMaterialAsync = function (context, material, babylonMesh, babylonDrawMode, assign) {
  5064. if (assign === void 0) { assign = function () { }; }
  5065. var extensionPromise = this._extensionsLoadMaterialAsync(context, material, babylonMesh, babylonDrawMode, assign);
  5066. if (extensionPromise) {
  5067. return extensionPromise;
  5068. }
  5069. material._data = material._data || {};
  5070. var babylonData = material._data[babylonDrawMode];
  5071. if (!babylonData) {
  5072. this.logOpen(context + " " + (material.name || ""));
  5073. var babylonMaterial = this.createMaterial(context, material, babylonDrawMode);
  5074. babylonData = {
  5075. babylonMaterial: babylonMaterial,
  5076. babylonMeshes: [],
  5077. promise: this.loadMaterialPropertiesAsync(context, material, babylonMaterial)
  5078. };
  5079. material._data[babylonDrawMode] = babylonData;
  5080. GLTFLoader.AddPointerMetadata(babylonMaterial, context);
  5081. this._parent.onMaterialLoadedObservable.notifyObservers(babylonMaterial);
  5082. this.logClose();
  5083. }
  5084. babylonData.babylonMeshes.push(babylonMesh);
  5085. babylonMesh.onDisposeObservable.addOnce(function () {
  5086. var index = babylonData.babylonMeshes.indexOf(babylonMesh);
  5087. if (index !== -1) {
  5088. babylonData.babylonMeshes.splice(index, 1);
  5089. }
  5090. });
  5091. assign(babylonData.babylonMaterial);
  5092. return babylonData.promise.then(function () {
  5093. return babylonData.babylonMaterial;
  5094. });
  5095. };
  5096. GLTFLoader.prototype._createDefaultMaterial = function (name, babylonDrawMode) {
  5097. var babylonMaterial = new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["PBRMaterial"](name, this._babylonScene);
  5098. babylonMaterial.sideOrientation = this._babylonScene.useRightHandedSystem ? babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Material"].CounterClockWiseSideOrientation : babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Material"].ClockWiseSideOrientation;
  5099. babylonMaterial.fillMode = babylonDrawMode;
  5100. babylonMaterial.enableSpecularAntiAliasing = true;
  5101. babylonMaterial.useRadianceOverAlpha = !this._parent.transparencyAsCoverage;
  5102. babylonMaterial.useSpecularOverAlpha = !this._parent.transparencyAsCoverage;
  5103. babylonMaterial.transparencyMode = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["PBRMaterial"].PBRMATERIAL_OPAQUE;
  5104. babylonMaterial.metallic = 1;
  5105. babylonMaterial.roughness = 1;
  5106. return babylonMaterial;
  5107. };
  5108. /**
  5109. * Creates a Babylon material from a glTF material.
  5110. * @param context The context when loading the asset
  5111. * @param material The glTF material property
  5112. * @param babylonDrawMode The draw mode for the Babylon material
  5113. * @returns The Babylon material
  5114. */
  5115. GLTFLoader.prototype.createMaterial = function (context, material, babylonDrawMode) {
  5116. var extensionPromise = this._extensionsCreateMaterial(context, material, babylonDrawMode);
  5117. if (extensionPromise) {
  5118. return extensionPromise;
  5119. }
  5120. var name = material.name || "material" + material.index;
  5121. var babylonMaterial = this._createDefaultMaterial(name, babylonDrawMode);
  5122. return babylonMaterial;
  5123. };
  5124. /**
  5125. * Loads properties from a glTF material into a Babylon material.
  5126. * @param context The context when loading the asset
  5127. * @param material The glTF material property
  5128. * @param babylonMaterial The Babylon material
  5129. * @returns A promise that resolves when the load is complete
  5130. */
  5131. GLTFLoader.prototype.loadMaterialPropertiesAsync = function (context, material, babylonMaterial) {
  5132. var extensionPromise = this._extensionsLoadMaterialPropertiesAsync(context, material, babylonMaterial);
  5133. if (extensionPromise) {
  5134. return extensionPromise;
  5135. }
  5136. var promises = new Array();
  5137. promises.push(this.loadMaterialBasePropertiesAsync(context, material, babylonMaterial));
  5138. if (material.pbrMetallicRoughness) {
  5139. promises.push(this._loadMaterialMetallicRoughnessPropertiesAsync(context + "/pbrMetallicRoughness", material.pbrMetallicRoughness, babylonMaterial));
  5140. }
  5141. this.loadMaterialAlphaProperties(context, material, babylonMaterial);
  5142. return Promise.all(promises).then(function () { });
  5143. };
  5144. /**
  5145. * Loads the normal, occlusion, and emissive properties from a glTF material into a Babylon material.
  5146. * @param context The context when loading the asset
  5147. * @param material The glTF material property
  5148. * @param babylonMaterial The Babylon material
  5149. * @returns A promise that resolves when the load is complete
  5150. */
  5151. GLTFLoader.prototype.loadMaterialBasePropertiesAsync = function (context, material, babylonMaterial) {
  5152. if (!(babylonMaterial instanceof babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["PBRMaterial"])) {
  5153. throw new Error(context + ": Material type not supported");
  5154. }
  5155. var promises = new Array();
  5156. babylonMaterial.emissiveColor = material.emissiveFactor ? babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Color3"].FromArray(material.emissiveFactor) : new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Color3"](0, 0, 0);
  5157. if (material.doubleSided) {
  5158. babylonMaterial.backFaceCulling = false;
  5159. babylonMaterial.twoSidedLighting = true;
  5160. }
  5161. if (material.normalTexture) {
  5162. promises.push(this.loadTextureInfoAsync(context + "/normalTexture", material.normalTexture, function (texture) {
  5163. texture.name = babylonMaterial.name + " (Normal)";
  5164. babylonMaterial.bumpTexture = texture;
  5165. }));
  5166. babylonMaterial.invertNormalMapX = !this._babylonScene.useRightHandedSystem;
  5167. babylonMaterial.invertNormalMapY = this._babylonScene.useRightHandedSystem;
  5168. if (material.normalTexture.scale != undefined) {
  5169. babylonMaterial.bumpTexture.level = material.normalTexture.scale;
  5170. }
  5171. babylonMaterial.forceIrradianceInFragment = true;
  5172. }
  5173. if (material.occlusionTexture) {
  5174. promises.push(this.loadTextureInfoAsync(context + "/occlusionTexture", material.occlusionTexture, function (texture) {
  5175. texture.name = babylonMaterial.name + " (Occlusion)";
  5176. babylonMaterial.ambientTexture = texture;
  5177. }));
  5178. babylonMaterial.useAmbientInGrayScale = true;
  5179. if (material.occlusionTexture.strength != undefined) {
  5180. babylonMaterial.ambientTextureStrength = material.occlusionTexture.strength;
  5181. }
  5182. }
  5183. if (material.emissiveTexture) {
  5184. promises.push(this.loadTextureInfoAsync(context + "/emissiveTexture", material.emissiveTexture, function (texture) {
  5185. texture.name = babylonMaterial.name + " (Emissive)";
  5186. babylonMaterial.emissiveTexture = texture;
  5187. }));
  5188. }
  5189. return Promise.all(promises).then(function () { });
  5190. };
  5191. /**
  5192. * Loads the alpha properties from a glTF material into a Babylon material.
  5193. * Must be called after the setting the albedo texture of the Babylon material when the material has an albedo texture.
  5194. * @param context The context when loading the asset
  5195. * @param material The glTF material property
  5196. * @param babylonMaterial The Babylon material
  5197. */
  5198. GLTFLoader.prototype.loadMaterialAlphaProperties = function (context, material, babylonMaterial) {
  5199. if (!(babylonMaterial instanceof babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["PBRMaterial"])) {
  5200. throw new Error(context + ": Material type not supported");
  5201. }
  5202. var alphaMode = material.alphaMode || "OPAQUE" /* OPAQUE */;
  5203. switch (alphaMode) {
  5204. case "OPAQUE" /* OPAQUE */: {
  5205. babylonMaterial.transparencyMode = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["PBRMaterial"].PBRMATERIAL_OPAQUE;
  5206. break;
  5207. }
  5208. case "MASK" /* MASK */: {
  5209. babylonMaterial.transparencyMode = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["PBRMaterial"].PBRMATERIAL_ALPHATEST;
  5210. babylonMaterial.alphaCutOff = (material.alphaCutoff == undefined ? 0.5 : material.alphaCutoff);
  5211. if (babylonMaterial.albedoTexture) {
  5212. babylonMaterial.albedoTexture.hasAlpha = true;
  5213. }
  5214. break;
  5215. }
  5216. case "BLEND" /* BLEND */: {
  5217. babylonMaterial.transparencyMode = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["PBRMaterial"].PBRMATERIAL_ALPHABLEND;
  5218. if (babylonMaterial.albedoTexture) {
  5219. babylonMaterial.albedoTexture.hasAlpha = true;
  5220. babylonMaterial.useAlphaFromAlbedoTexture = true;
  5221. }
  5222. break;
  5223. }
  5224. default: {
  5225. throw new Error(context + "/alphaMode: Invalid value (" + material.alphaMode + ")");
  5226. }
  5227. }
  5228. };
  5229. /**
  5230. * Loads a glTF texture info.
  5231. * @param context The context when loading the asset
  5232. * @param textureInfo The glTF texture info property
  5233. * @param assign A function called synchronously after parsing the glTF properties
  5234. * @returns A promise that resolves with the loaded Babylon texture when the load is complete
  5235. */
  5236. GLTFLoader.prototype.loadTextureInfoAsync = function (context, textureInfo, assign) {
  5237. var _this = this;
  5238. if (assign === void 0) { assign = function () { }; }
  5239. var extensionPromise = this._extensionsLoadTextureInfoAsync(context, textureInfo, assign);
  5240. if (extensionPromise) {
  5241. return extensionPromise;
  5242. }
  5243. this.logOpen("" + context);
  5244. if (textureInfo.texCoord >= 2) {
  5245. throw new Error(context + "/texCoord: Invalid value (" + textureInfo.texCoord + ")");
  5246. }
  5247. var texture = ArrayItem.Get(context + "/index", this._gltf.textures, textureInfo.index);
  5248. var promise = this._loadTextureAsync("/textures/" + textureInfo.index, texture, function (babylonTexture) {
  5249. babylonTexture.coordinatesIndex = textureInfo.texCoord || 0;
  5250. GLTFLoader.AddPointerMetadata(babylonTexture, context);
  5251. _this._parent.onTextureLoadedObservable.notifyObservers(babylonTexture);
  5252. assign(babylonTexture);
  5253. });
  5254. this.logClose();
  5255. return promise;
  5256. };
  5257. GLTFLoader.prototype._loadTextureAsync = function (context, texture, assign) {
  5258. var _this = this;
  5259. if (assign === void 0) { assign = function () { }; }
  5260. var promises = new Array();
  5261. this.logOpen(context + " " + (texture.name || ""));
  5262. var sampler = (texture.sampler == undefined ? GLTFLoader._DefaultSampler : ArrayItem.Get(context + "/sampler", this._gltf.samplers, texture.sampler));
  5263. var samplerData = this._loadSampler("/samplers/" + sampler.index, sampler);
  5264. var image = ArrayItem.Get(context + "/source", this._gltf.images, texture.source);
  5265. var url = null;
  5266. if (image.uri) {
  5267. if (babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Tools"].IsBase64(image.uri)) {
  5268. url = image.uri;
  5269. }
  5270. else if (this._babylonScene.getEngine().textureFormatInUse) {
  5271. // If an image uri and a texture format is set like (eg. KTX) load from url instead of blob to support texture format and fallback
  5272. url = this._rootUrl + image.uri;
  5273. }
  5274. }
  5275. var deferred = new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Deferred"]();
  5276. var babylonTexture = new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Texture"](url, this._babylonScene, samplerData.noMipMaps, false, samplerData.samplingMode, function () {
  5277. if (!_this._disposed) {
  5278. deferred.resolve();
  5279. }
  5280. }, function (message, exception) {
  5281. if (!_this._disposed) {
  5282. deferred.reject(new Error(context + ": " + ((exception && exception.message) ? exception.message : message || "Failed to load texture")));
  5283. }
  5284. });
  5285. promises.push(deferred.promise);
  5286. if (!url) {
  5287. promises.push(this.loadImageAsync("/images/" + image.index, image).then(function (data) {
  5288. var name = image.uri || _this._fileName + "#image" + image.index;
  5289. var dataUrl = "data:" + _this._uniqueRootUrl + name;
  5290. babylonTexture.updateURL(dataUrl, new Blob([data], { type: image.mimeType }));
  5291. }));
  5292. }
  5293. babylonTexture.wrapU = samplerData.wrapU;
  5294. babylonTexture.wrapV = samplerData.wrapV;
  5295. assign(babylonTexture);
  5296. this.logClose();
  5297. return Promise.all(promises).then(function () {
  5298. return babylonTexture;
  5299. });
  5300. };
  5301. GLTFLoader.prototype._loadSampler = function (context, sampler) {
  5302. if (!sampler._data) {
  5303. sampler._data = {
  5304. noMipMaps: (sampler.minFilter === 9728 /* NEAREST */ || sampler.minFilter === 9729 /* LINEAR */),
  5305. samplingMode: GLTFLoader._GetTextureSamplingMode(context, sampler),
  5306. wrapU: GLTFLoader._GetTextureWrapMode(context + "/wrapS", sampler.wrapS),
  5307. wrapV: GLTFLoader._GetTextureWrapMode(context + "/wrapT", sampler.wrapT)
  5308. };
  5309. }
  5310. return sampler._data;
  5311. };
  5312. /**
  5313. * Loads a glTF image.
  5314. * @param context The context when loading the asset
  5315. * @param image The glTF image property
  5316. * @returns A promise that resolves with the loaded data when the load is complete
  5317. */
  5318. GLTFLoader.prototype.loadImageAsync = function (context, image) {
  5319. if (!image._data) {
  5320. this.logOpen(context + " " + (image.name || ""));
  5321. if (image.uri) {
  5322. image._data = this.loadUriAsync(context + "/uri", image, image.uri);
  5323. }
  5324. else {
  5325. var bufferView = ArrayItem.Get(context + "/bufferView", this._gltf.bufferViews, image.bufferView);
  5326. image._data = this.loadBufferViewAsync("/bufferViews/" + bufferView.index, bufferView);
  5327. }
  5328. this.logClose();
  5329. }
  5330. return image._data;
  5331. };
  5332. /**
  5333. * Loads a glTF uri.
  5334. * @param context The context when loading the asset
  5335. * @param property The glTF property associated with the uri
  5336. * @param uri The base64 or relative uri
  5337. * @returns A promise that resolves with the loaded data when the load is complete
  5338. */
  5339. GLTFLoader.prototype.loadUriAsync = function (context, property, uri) {
  5340. var _this = this;
  5341. var extensionPromise = this._extensionsLoadUriAsync(context, property, uri);
  5342. if (extensionPromise) {
  5343. return extensionPromise;
  5344. }
  5345. if (!GLTFLoader._ValidateUri(uri)) {
  5346. throw new Error(context + ": '" + uri + "' is invalid");
  5347. }
  5348. if (babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Tools"].IsBase64(uri)) {
  5349. var data = new Uint8Array(babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Tools"].DecodeBase64(uri));
  5350. this.log("Decoded " + uri.substr(0, 64) + "... (" + data.length + " bytes)");
  5351. return Promise.resolve(data);
  5352. }
  5353. this.log("Loading " + uri);
  5354. return this._parent.preprocessUrlAsync(this._rootUrl + uri).then(function (url) {
  5355. return new Promise(function (resolve, reject) {
  5356. if (!_this._disposed) {
  5357. var request_1 = babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Tools"].LoadFile(url, function (fileData) {
  5358. if (!_this._disposed) {
  5359. var data = new Uint8Array(fileData);
  5360. _this.log("Loaded " + uri + " (" + data.length + " bytes)");
  5361. resolve(data);
  5362. }
  5363. }, function (event) {
  5364. if (!_this._disposed) {
  5365. if (request_1) {
  5366. request_1._lengthComputable = event.lengthComputable;
  5367. request_1._loaded = event.loaded;
  5368. request_1._total = event.total;
  5369. }
  5370. if (_this._state === _glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFLoaderState"].LOADING) {
  5371. try {
  5372. _this._onProgress();
  5373. }
  5374. catch (e) {
  5375. reject(e);
  5376. }
  5377. }
  5378. }
  5379. }, _this._babylonScene.offlineProvider, true, function (request, exception) {
  5380. if (!_this._disposed) {
  5381. reject(new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["LoadFileError"](context + ": Failed to load '" + uri + "'" + (request ? ": " + request.status + " " + request.statusText : ""), request));
  5382. }
  5383. });
  5384. _this._requests.push(request_1);
  5385. }
  5386. });
  5387. });
  5388. };
  5389. GLTFLoader.prototype._onProgress = function () {
  5390. if (!this._progressCallback) {
  5391. return;
  5392. }
  5393. var lengthComputable = true;
  5394. var loaded = 0;
  5395. var total = 0;
  5396. for (var _i = 0, _a = this._requests; _i < _a.length; _i++) {
  5397. var request = _a[_i];
  5398. if (request._lengthComputable === undefined || request._loaded === undefined || request._total === undefined) {
  5399. return;
  5400. }
  5401. lengthComputable = lengthComputable && request._lengthComputable;
  5402. loaded += request._loaded;
  5403. total += request._total;
  5404. }
  5405. this._progressCallback(new babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["SceneLoaderProgressEvent"](lengthComputable, loaded, lengthComputable ? total : 0));
  5406. };
  5407. /**
  5408. * Adds a JSON pointer to the metadata of the Babylon object at `<object>.metadata.gltf.pointers`.
  5409. * @param babylonObject the Babylon object with metadata
  5410. * @param pointer the JSON pointer
  5411. */
  5412. GLTFLoader.AddPointerMetadata = function (babylonObject, pointer) {
  5413. var metadata = (babylonObject.metadata = babylonObject.metadata || {});
  5414. var gltf = (metadata.gltf = metadata.gltf || {});
  5415. var pointers = (gltf.pointers = gltf.pointers || []);
  5416. pointers.push(pointer);
  5417. };
  5418. GLTFLoader._GetTextureWrapMode = function (context, mode) {
  5419. // Set defaults if undefined
  5420. mode = mode == undefined ? 10497 /* REPEAT */ : mode;
  5421. switch (mode) {
  5422. case 33071 /* CLAMP_TO_EDGE */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Texture"].CLAMP_ADDRESSMODE;
  5423. case 33648 /* MIRRORED_REPEAT */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Texture"].MIRROR_ADDRESSMODE;
  5424. case 10497 /* REPEAT */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Texture"].WRAP_ADDRESSMODE;
  5425. default:
  5426. babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Tools"].Warn(context + ": Invalid value (" + mode + ")");
  5427. return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Texture"].WRAP_ADDRESSMODE;
  5428. }
  5429. };
  5430. GLTFLoader._GetTextureSamplingMode = function (context, sampler) {
  5431. // Set defaults if undefined
  5432. var magFilter = sampler.magFilter == undefined ? 9729 /* LINEAR */ : sampler.magFilter;
  5433. var minFilter = sampler.minFilter == undefined ? 9987 /* LINEAR_MIPMAP_LINEAR */ : sampler.minFilter;
  5434. if (magFilter === 9729 /* LINEAR */) {
  5435. switch (minFilter) {
  5436. case 9728 /* NEAREST */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Texture"].LINEAR_NEAREST;
  5437. case 9729 /* LINEAR */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Texture"].LINEAR_LINEAR;
  5438. case 9984 /* NEAREST_MIPMAP_NEAREST */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Texture"].LINEAR_NEAREST_MIPNEAREST;
  5439. case 9985 /* LINEAR_MIPMAP_NEAREST */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Texture"].LINEAR_LINEAR_MIPNEAREST;
  5440. case 9986 /* NEAREST_MIPMAP_LINEAR */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Texture"].LINEAR_NEAREST_MIPLINEAR;
  5441. case 9987 /* LINEAR_MIPMAP_LINEAR */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Texture"].LINEAR_LINEAR_MIPLINEAR;
  5442. default:
  5443. babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Tools"].Warn(context + "/minFilter: Invalid value (" + minFilter + ")");
  5444. return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Texture"].LINEAR_LINEAR_MIPLINEAR;
  5445. }
  5446. }
  5447. else {
  5448. if (magFilter !== 9728 /* NEAREST */) {
  5449. babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Tools"].Warn(context + "/magFilter: Invalid value (" + magFilter + ")");
  5450. }
  5451. switch (minFilter) {
  5452. case 9728 /* NEAREST */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Texture"].NEAREST_NEAREST;
  5453. case 9729 /* LINEAR */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Texture"].NEAREST_LINEAR;
  5454. case 9984 /* NEAREST_MIPMAP_NEAREST */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Texture"].NEAREST_NEAREST_MIPNEAREST;
  5455. case 9985 /* LINEAR_MIPMAP_NEAREST */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Texture"].NEAREST_LINEAR_MIPNEAREST;
  5456. case 9986 /* NEAREST_MIPMAP_LINEAR */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Texture"].NEAREST_NEAREST_MIPLINEAR;
  5457. case 9987 /* LINEAR_MIPMAP_LINEAR */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Texture"].NEAREST_LINEAR_MIPLINEAR;
  5458. default:
  5459. babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Tools"].Warn(context + "/minFilter: Invalid value (" + minFilter + ")");
  5460. return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Texture"].NEAREST_NEAREST_MIPNEAREST;
  5461. }
  5462. }
  5463. };
  5464. GLTFLoader._GetTypedArrayConstructor = function (context, componentType) {
  5465. switch (componentType) {
  5466. case 5120 /* BYTE */: return Int8Array;
  5467. case 5121 /* UNSIGNED_BYTE */: return Uint8Array;
  5468. case 5122 /* SHORT */: return Int16Array;
  5469. case 5123 /* UNSIGNED_SHORT */: return Uint16Array;
  5470. case 5125 /* UNSIGNED_INT */: return Uint32Array;
  5471. case 5126 /* FLOAT */: return Float32Array;
  5472. default: throw new Error(context + ": Invalid component type " + componentType);
  5473. }
  5474. };
  5475. GLTFLoader._GetTypedArray = function (context, componentType, bufferView, byteOffset, length) {
  5476. var buffer = bufferView.buffer;
  5477. byteOffset = bufferView.byteOffset + (byteOffset || 0);
  5478. var constructor = GLTFLoader._GetTypedArrayConstructor(context + "/componentType", componentType);
  5479. try {
  5480. return new constructor(buffer, byteOffset, length);
  5481. }
  5482. catch (e) {
  5483. throw new Error(context + ": " + e);
  5484. }
  5485. };
  5486. GLTFLoader._GetNumComponents = function (context, type) {
  5487. switch (type) {
  5488. case "SCALAR": return 1;
  5489. case "VEC2": return 2;
  5490. case "VEC3": return 3;
  5491. case "VEC4": return 4;
  5492. case "MAT2": return 4;
  5493. case "MAT3": return 9;
  5494. case "MAT4": return 16;
  5495. }
  5496. throw new Error(context + ": Invalid type (" + type + ")");
  5497. };
  5498. GLTFLoader._ValidateUri = function (uri) {
  5499. return (babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Tools"].IsBase64(uri) || uri.indexOf("..") === -1);
  5500. };
  5501. GLTFLoader._GetDrawMode = function (context, mode) {
  5502. if (mode == undefined) {
  5503. mode = 4 /* TRIANGLES */;
  5504. }
  5505. switch (mode) {
  5506. case 0 /* POINTS */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Material"].PointListDrawMode;
  5507. case 1 /* LINES */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Material"].LineListDrawMode;
  5508. case 2 /* LINE_LOOP */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Material"].LineLoopDrawMode;
  5509. case 3 /* LINE_STRIP */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Material"].LineStripDrawMode;
  5510. case 4 /* TRIANGLES */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Material"].TriangleFillMode;
  5511. case 5 /* TRIANGLE_STRIP */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Material"].TriangleStripDrawMode;
  5512. case 6 /* TRIANGLE_FAN */: return babylonjs_Misc_deferred__WEBPACK_IMPORTED_MODULE_0__["Material"].TriangleFanDrawMode;
  5513. }
  5514. throw new Error(context + ": Invalid mesh primitive mode (" + mode + ")");
  5515. };
  5516. GLTFLoader.prototype._compileMaterialsAsync = function () {
  5517. var _this = this;
  5518. this._parent._startPerformanceCounter("Compile materials");
  5519. var promises = new Array();
  5520. if (this._gltf.materials) {
  5521. for (var _i = 0, _a = this._gltf.materials; _i < _a.length; _i++) {
  5522. var material = _a[_i];
  5523. if (material._data) {
  5524. for (var babylonDrawMode in material._data) {
  5525. var babylonData = material._data[babylonDrawMode];
  5526. for (var _b = 0, _c = babylonData.babylonMeshes; _b < _c.length; _b++) {
  5527. var babylonMesh = _c[_b];
  5528. // Ensure nonUniformScaling is set if necessary.
  5529. babylonMesh.computeWorldMatrix(true);
  5530. var babylonMaterial = babylonData.babylonMaterial;
  5531. promises.push(babylonMaterial.forceCompilationAsync(babylonMesh));
  5532. if (this._parent.useClipPlane) {
  5533. promises.push(babylonMaterial.forceCompilationAsync(babylonMesh, { clipPlane: true }));
  5534. }
  5535. }
  5536. }
  5537. }
  5538. }
  5539. }
  5540. return Promise.all(promises).then(function () {
  5541. _this._parent._endPerformanceCounter("Compile materials");
  5542. });
  5543. };
  5544. GLTFLoader.prototype._compileShadowGeneratorsAsync = function () {
  5545. var _this = this;
  5546. this._parent._startPerformanceCounter("Compile shadow generators");
  5547. var promises = new Array();
  5548. var lights = this._babylonScene.lights;
  5549. for (var _i = 0, lights_1 = lights; _i < lights_1.length; _i++) {
  5550. var light = lights_1[_i];
  5551. var generator = light.getShadowGenerator();
  5552. if (generator) {
  5553. promises.push(generator.forceCompilationAsync());
  5554. }
  5555. }
  5556. return Promise.all(promises).then(function () {
  5557. _this._parent._endPerformanceCounter("Compile shadow generators");
  5558. });
  5559. };
  5560. GLTFLoader.prototype._forEachExtensions = function (action) {
  5561. for (var _i = 0, _a = GLTFLoader._ExtensionNames; _i < _a.length; _i++) {
  5562. var name_4 = _a[_i];
  5563. var extension = this._extensions[name_4];
  5564. if (extension.enabled) {
  5565. action(extension);
  5566. }
  5567. }
  5568. };
  5569. GLTFLoader.prototype._applyExtensions = function (property, functionName, actionAsync) {
  5570. for (var _i = 0, _a = GLTFLoader._ExtensionNames; _i < _a.length; _i++) {
  5571. var name_5 = _a[_i];
  5572. var extension = this._extensions[name_5];
  5573. if (extension.enabled) {
  5574. var id = name_5 + "." + functionName;
  5575. var loaderProperty = property;
  5576. loaderProperty._activeLoaderExtensionFunctions = loaderProperty._activeLoaderExtensionFunctions || {};
  5577. var activeLoaderExtensionFunctions = loaderProperty._activeLoaderExtensionFunctions;
  5578. if (!activeLoaderExtensionFunctions[id]) {
  5579. activeLoaderExtensionFunctions[id] = true;
  5580. try {
  5581. var result = actionAsync(extension);
  5582. if (result) {
  5583. return result;
  5584. }
  5585. }
  5586. finally {
  5587. delete activeLoaderExtensionFunctions[id];
  5588. }
  5589. }
  5590. }
  5591. }
  5592. return null;
  5593. };
  5594. GLTFLoader.prototype._extensionsOnLoading = function () {
  5595. this._forEachExtensions(function (extension) { return extension.onLoading && extension.onLoading(); });
  5596. };
  5597. GLTFLoader.prototype._extensionsOnReady = function () {
  5598. this._forEachExtensions(function (extension) { return extension.onReady && extension.onReady(); });
  5599. };
  5600. GLTFLoader.prototype._extensionsLoadSceneAsync = function (context, scene) {
  5601. return this._applyExtensions(scene, "loadScene", function (extension) { return extension.loadSceneAsync && extension.loadSceneAsync(context, scene); });
  5602. };
  5603. GLTFLoader.prototype._extensionsLoadNodeAsync = function (context, node, assign) {
  5604. return this._applyExtensions(node, "loadNode", function (extension) { return extension.loadNodeAsync && extension.loadNodeAsync(context, node, assign); });
  5605. };
  5606. GLTFLoader.prototype._extensionsLoadCameraAsync = function (context, camera, assign) {
  5607. return this._applyExtensions(camera, "loadCamera", function (extension) { return extension.loadCameraAsync && extension.loadCameraAsync(context, camera, assign); });
  5608. };
  5609. GLTFLoader.prototype._extensionsLoadVertexDataAsync = function (context, primitive, babylonMesh) {
  5610. return this._applyExtensions(primitive, "loadVertexData", function (extension) { return extension._loadVertexDataAsync && extension._loadVertexDataAsync(context, primitive, babylonMesh); });
  5611. };
  5612. GLTFLoader.prototype._extensionsLoadMeshPrimitiveAsync = function (context, name, node, mesh, primitive, assign) {
  5613. return this._applyExtensions(primitive, "loadMeshPrimitive", function (extension) { return extension._loadMeshPrimitiveAsync && extension._loadMeshPrimitiveAsync(context, name, node, mesh, primitive, assign); });
  5614. };
  5615. GLTFLoader.prototype._extensionsLoadMaterialAsync = function (context, material, babylonMesh, babylonDrawMode, assign) {
  5616. return this._applyExtensions(material, "loadMaterial", function (extension) { return extension._loadMaterialAsync && extension._loadMaterialAsync(context, material, babylonMesh, babylonDrawMode, assign); });
  5617. };
  5618. GLTFLoader.prototype._extensionsCreateMaterial = function (context, material, babylonDrawMode) {
  5619. return this._applyExtensions(material, "createMaterial", function (extension) { return extension.createMaterial && extension.createMaterial(context, material, babylonDrawMode); });
  5620. };
  5621. GLTFLoader.prototype._extensionsLoadMaterialPropertiesAsync = function (context, material, babylonMaterial) {
  5622. return this._applyExtensions(material, "loadMaterialProperties", function (extension) { return extension.loadMaterialPropertiesAsync && extension.loadMaterialPropertiesAsync(context, material, babylonMaterial); });
  5623. };
  5624. GLTFLoader.prototype._extensionsLoadTextureInfoAsync = function (context, textureInfo, assign) {
  5625. return this._applyExtensions(textureInfo, "loadTextureInfo", function (extension) { return extension.loadTextureInfoAsync && extension.loadTextureInfoAsync(context, textureInfo, assign); });
  5626. };
  5627. GLTFLoader.prototype._extensionsLoadAnimationAsync = function (context, animation) {
  5628. return this._applyExtensions(animation, "loadAnimation", function (extension) { return extension.loadAnimationAsync && extension.loadAnimationAsync(context, animation); });
  5629. };
  5630. GLTFLoader.prototype._extensionsLoadSkinAsync = function (context, node, skin) {
  5631. return this._applyExtensions(skin, "loadSkin", function (extension) { return extension._loadSkinAsync && extension._loadSkinAsync(context, node, skin); });
  5632. };
  5633. GLTFLoader.prototype._extensionsLoadUriAsync = function (context, property, uri) {
  5634. return this._applyExtensions(property, "loadUri", function (extension) { return extension._loadUriAsync && extension._loadUriAsync(context, property, uri); });
  5635. };
  5636. /**
  5637. * Helper method called by a loader extension to load an glTF extension.
  5638. * @param context The context when loading the asset
  5639. * @param property The glTF property to load the extension from
  5640. * @param extensionName The name of the extension to load
  5641. * @param actionAsync The action to run
  5642. * @returns The promise returned by actionAsync or null if the extension does not exist
  5643. */
  5644. GLTFLoader.LoadExtensionAsync = function (context, property, extensionName, actionAsync) {
  5645. if (!property.extensions) {
  5646. return null;
  5647. }
  5648. var extensions = property.extensions;
  5649. var extension = extensions[extensionName];
  5650. if (!extension) {
  5651. return null;
  5652. }
  5653. return actionAsync(context + "/extensions/" + extensionName, extension);
  5654. };
  5655. /**
  5656. * Helper method called by a loader extension to load a glTF extra.
  5657. * @param context The context when loading the asset
  5658. * @param property The glTF property to load the extra from
  5659. * @param extensionName The name of the extension to load
  5660. * @param actionAsync The action to run
  5661. * @returns The promise returned by actionAsync or null if the extra does not exist
  5662. */
  5663. GLTFLoader.LoadExtraAsync = function (context, property, extensionName, actionAsync) {
  5664. if (!property.extras) {
  5665. return null;
  5666. }
  5667. var extras = property.extras;
  5668. var extra = extras[extensionName];
  5669. if (!extra) {
  5670. return null;
  5671. }
  5672. return actionAsync(context + "/extras/" + extensionName, extra);
  5673. };
  5674. /**
  5675. * Increments the indentation level and logs a message.
  5676. * @param message The message to log
  5677. */
  5678. GLTFLoader.prototype.logOpen = function (message) {
  5679. this._parent._logOpen(message);
  5680. };
  5681. /**
  5682. * Decrements the indentation level.
  5683. */
  5684. GLTFLoader.prototype.logClose = function () {
  5685. this._parent._logClose();
  5686. };
  5687. /**
  5688. * Logs a message
  5689. * @param message The message to log
  5690. */
  5691. GLTFLoader.prototype.log = function (message) {
  5692. this._parent._log(message);
  5693. };
  5694. /**
  5695. * Starts a performance counter.
  5696. * @param counterName The name of the performance counter
  5697. */
  5698. GLTFLoader.prototype.startPerformanceCounter = function (counterName) {
  5699. this._parent._startPerformanceCounter(counterName);
  5700. };
  5701. /**
  5702. * Ends a performance counter.
  5703. * @param counterName The name of the performance counter
  5704. */
  5705. GLTFLoader.prototype.endPerformanceCounter = function (counterName) {
  5706. this._parent._endPerformanceCounter(counterName);
  5707. };
  5708. GLTFLoader._DefaultSampler = { index: -1 };
  5709. GLTFLoader._ExtensionNames = new Array();
  5710. GLTFLoader._ExtensionFactories = {};
  5711. return GLTFLoader;
  5712. }());
  5713. _glTFFileLoader__WEBPACK_IMPORTED_MODULE_1__["GLTFFileLoader"]._CreateGLTF2Loader = function (parent) { return new GLTFLoader(parent); };
  5714. /***/ }),
  5715. /***/ "./glTF/2.0/glTFLoaderInterfaces.ts":
  5716. /*!******************************************!*\
  5717. !*** ./glTF/2.0/glTFLoaderInterfaces.ts ***!
  5718. \******************************************/
  5719. /*! no static exports found */
  5720. /***/ (function(module, exports) {
  5721. /***/ }),
  5722. /***/ "./glTF/2.0/index.ts":
  5723. /*!***************************!*\
  5724. !*** ./glTF/2.0/index.ts ***!
  5725. \***************************/
  5726. /*! exports provided: ArrayItem, GLTFLoader, EXT_lights_image_based, KHR_draco_mesh_compression, KHR_lights, KHR_materials_pbrSpecularGlossiness, KHR_materials_unlit, KHR_texture_transform, MSFT_audio_emitter, MSFT_lod, MSFT_minecraftMesh, MSFT_sRGBFactors, ExtrasAsMetadata */
  5727. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  5728. "use strict";
  5729. __webpack_require__.r(__webpack_exports__);
  5730. /* harmony import */ var _glTFLoader__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./glTFLoader */ "./glTF/2.0/glTFLoader.ts");
  5731. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ArrayItem", function() { return _glTFLoader__WEBPACK_IMPORTED_MODULE_0__["ArrayItem"]; });
  5732. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFLoader", function() { return _glTFLoader__WEBPACK_IMPORTED_MODULE_0__["GLTFLoader"]; });
  5733. /* harmony import */ var _Extensions__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Extensions */ "./glTF/2.0/Extensions/index.ts");
  5734. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "EXT_lights_image_based", function() { return _Extensions__WEBPACK_IMPORTED_MODULE_1__["EXT_lights_image_based"]; });
  5735. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_draco_mesh_compression", function() { return _Extensions__WEBPACK_IMPORTED_MODULE_1__["KHR_draco_mesh_compression"]; });
  5736. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_lights", function() { return _Extensions__WEBPACK_IMPORTED_MODULE_1__["KHR_lights"]; });
  5737. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_materials_pbrSpecularGlossiness", function() { return _Extensions__WEBPACK_IMPORTED_MODULE_1__["KHR_materials_pbrSpecularGlossiness"]; });
  5738. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_materials_unlit", function() { return _Extensions__WEBPACK_IMPORTED_MODULE_1__["KHR_materials_unlit"]; });
  5739. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_texture_transform", function() { return _Extensions__WEBPACK_IMPORTED_MODULE_1__["KHR_texture_transform"]; });
  5740. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MSFT_audio_emitter", function() { return _Extensions__WEBPACK_IMPORTED_MODULE_1__["MSFT_audio_emitter"]; });
  5741. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MSFT_lod", function() { return _Extensions__WEBPACK_IMPORTED_MODULE_1__["MSFT_lod"]; });
  5742. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MSFT_minecraftMesh", function() { return _Extensions__WEBPACK_IMPORTED_MODULE_1__["MSFT_minecraftMesh"]; });
  5743. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MSFT_sRGBFactors", function() { return _Extensions__WEBPACK_IMPORTED_MODULE_1__["MSFT_sRGBFactors"]; });
  5744. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ExtrasAsMetadata", function() { return _Extensions__WEBPACK_IMPORTED_MODULE_1__["ExtrasAsMetadata"]; });
  5745. /***/ }),
  5746. /***/ "./glTF/glTFFileLoader.ts":
  5747. /*!********************************!*\
  5748. !*** ./glTF/glTFFileLoader.ts ***!
  5749. \********************************/
  5750. /*! exports provided: GLTFLoaderCoordinateSystemMode, GLTFLoaderAnimationStartMode, GLTFLoaderState, GLTFFileLoader */
  5751. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  5752. "use strict";
  5753. __webpack_require__.r(__webpack_exports__);
  5754. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GLTFLoaderCoordinateSystemMode", function() { return GLTFLoaderCoordinateSystemMode; });
  5755. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GLTFLoaderAnimationStartMode", function() { return GLTFLoaderAnimationStartMode; });
  5756. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GLTFLoaderState", function() { return GLTFLoaderState; });
  5757. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GLTFFileLoader", function() { return GLTFFileLoader; });
  5758. /* harmony import */ var babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Misc/observable */ "babylonjs/Misc/observable");
  5759. /* harmony import */ var babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__);
  5760. /**
  5761. * Mode that determines the coordinate system to use.
  5762. */
  5763. var GLTFLoaderCoordinateSystemMode;
  5764. (function (GLTFLoaderCoordinateSystemMode) {
  5765. /**
  5766. * Automatically convert the glTF right-handed data to the appropriate system based on the current coordinate system mode of the scene.
  5767. */
  5768. GLTFLoaderCoordinateSystemMode[GLTFLoaderCoordinateSystemMode["AUTO"] = 0] = "AUTO";
  5769. /**
  5770. * Sets the useRightHandedSystem flag on the scene.
  5771. */
  5772. GLTFLoaderCoordinateSystemMode[GLTFLoaderCoordinateSystemMode["FORCE_RIGHT_HANDED"] = 1] = "FORCE_RIGHT_HANDED";
  5773. })(GLTFLoaderCoordinateSystemMode || (GLTFLoaderCoordinateSystemMode = {}));
  5774. /**
  5775. * Mode that determines what animations will start.
  5776. */
  5777. var GLTFLoaderAnimationStartMode;
  5778. (function (GLTFLoaderAnimationStartMode) {
  5779. /**
  5780. * No animation will start.
  5781. */
  5782. GLTFLoaderAnimationStartMode[GLTFLoaderAnimationStartMode["NONE"] = 0] = "NONE";
  5783. /**
  5784. * The first animation will start.
  5785. */
  5786. GLTFLoaderAnimationStartMode[GLTFLoaderAnimationStartMode["FIRST"] = 1] = "FIRST";
  5787. /**
  5788. * All animations will start.
  5789. */
  5790. GLTFLoaderAnimationStartMode[GLTFLoaderAnimationStartMode["ALL"] = 2] = "ALL";
  5791. })(GLTFLoaderAnimationStartMode || (GLTFLoaderAnimationStartMode = {}));
  5792. /**
  5793. * Loader state.
  5794. */
  5795. var GLTFLoaderState;
  5796. (function (GLTFLoaderState) {
  5797. /**
  5798. * The asset is loading.
  5799. */
  5800. GLTFLoaderState[GLTFLoaderState["LOADING"] = 0] = "LOADING";
  5801. /**
  5802. * The asset is ready for rendering.
  5803. */
  5804. GLTFLoaderState[GLTFLoaderState["READY"] = 1] = "READY";
  5805. /**
  5806. * The asset is completely loaded.
  5807. */
  5808. GLTFLoaderState[GLTFLoaderState["COMPLETE"] = 2] = "COMPLETE";
  5809. })(GLTFLoaderState || (GLTFLoaderState = {}));
  5810. /**
  5811. * File loader for loading glTF files into a scene.
  5812. */
  5813. var GLTFFileLoader = /** @class */ (function () {
  5814. function GLTFFileLoader() {
  5815. // --------------
  5816. // Common options
  5817. // --------------
  5818. /**
  5819. * Raised when the asset has been parsed
  5820. */
  5821. this.onParsedObservable = new babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["Observable"]();
  5822. // ----------
  5823. // V2 options
  5824. // ----------
  5825. /**
  5826. * The coordinate system mode. Defaults to AUTO.
  5827. */
  5828. this.coordinateSystemMode = GLTFLoaderCoordinateSystemMode.AUTO;
  5829. /**
  5830. * The animation start mode. Defaults to FIRST.
  5831. */
  5832. this.animationStartMode = GLTFLoaderAnimationStartMode.FIRST;
  5833. /**
  5834. * Defines if the loader should compile materials before raising the success callback. Defaults to false.
  5835. */
  5836. this.compileMaterials = false;
  5837. /**
  5838. * Defines if the loader should also compile materials with clip planes. Defaults to false.
  5839. */
  5840. this.useClipPlane = false;
  5841. /**
  5842. * Defines if the loader should compile shadow generators before raising the success callback. Defaults to false.
  5843. */
  5844. this.compileShadowGenerators = false;
  5845. /**
  5846. * Defines if the Alpha blended materials are only applied as coverage.
  5847. * If false, (default) The luminance of each pixel will reduce its opacity to simulate the behaviour of most physical materials.
  5848. * If true, no extra effects are applied to transparent pixels.
  5849. */
  5850. this.transparencyAsCoverage = false;
  5851. /**
  5852. * Function called before loading a url referenced by the asset.
  5853. */
  5854. this.preprocessUrlAsync = function (url) { return Promise.resolve(url); };
  5855. /**
  5856. * Observable raised when the loader creates a mesh after parsing the glTF properties of the mesh.
  5857. */
  5858. this.onMeshLoadedObservable = new babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["Observable"]();
  5859. /**
  5860. * Observable raised when the loader creates a texture after parsing the glTF properties of the texture.
  5861. */
  5862. this.onTextureLoadedObservable = new babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["Observable"]();
  5863. /**
  5864. * Observable raised when the loader creates a material after parsing the glTF properties of the material.
  5865. */
  5866. this.onMaterialLoadedObservable = new babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["Observable"]();
  5867. /**
  5868. * Observable raised when the loader creates a camera after parsing the glTF properties of the camera.
  5869. */
  5870. this.onCameraLoadedObservable = new babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["Observable"]();
  5871. /**
  5872. * Observable raised when the asset is completely loaded, immediately before the loader is disposed.
  5873. * For assets with LODs, raised when all of the LODs are complete.
  5874. * For assets without LODs, raised when the model is complete, immediately after the loader resolves the returned promise.
  5875. */
  5876. this.onCompleteObservable = new babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["Observable"]();
  5877. /**
  5878. * Observable raised when an error occurs.
  5879. */
  5880. this.onErrorObservable = new babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["Observable"]();
  5881. /**
  5882. * Observable raised after the loader is disposed.
  5883. */
  5884. this.onDisposeObservable = new babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["Observable"]();
  5885. /**
  5886. * Observable raised after a loader extension is created.
  5887. * Set additional options for a loader extension in this event.
  5888. */
  5889. this.onExtensionLoadedObservable = new babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["Observable"]();
  5890. /**
  5891. * Defines if the loader should validate the asset.
  5892. */
  5893. this.validate = false;
  5894. /**
  5895. * Observable raised after validation when validate is set to true. The event data is the result of the validation.
  5896. */
  5897. this.onValidatedObservable = new babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["Observable"]();
  5898. this._loader = null;
  5899. /**
  5900. * Name of the loader ("gltf")
  5901. */
  5902. this.name = "gltf";
  5903. /**
  5904. * Supported file extensions of the loader (.gltf, .glb)
  5905. */
  5906. this.extensions = {
  5907. ".gltf": { isBinary: false },
  5908. ".glb": { isBinary: true }
  5909. };
  5910. this._logIndentLevel = 0;
  5911. this._loggingEnabled = false;
  5912. /** @hidden */
  5913. this._log = this._logDisabled;
  5914. this._capturePerformanceCounters = false;
  5915. /** @hidden */
  5916. this._startPerformanceCounter = this._startPerformanceCounterDisabled;
  5917. /** @hidden */
  5918. this._endPerformanceCounter = this._endPerformanceCounterDisabled;
  5919. }
  5920. Object.defineProperty(GLTFFileLoader.prototype, "onParsed", {
  5921. /**
  5922. * Raised when the asset has been parsed
  5923. */
  5924. set: function (callback) {
  5925. if (this._onParsedObserver) {
  5926. this.onParsedObservable.remove(this._onParsedObserver);
  5927. }
  5928. this._onParsedObserver = this.onParsedObservable.add(callback);
  5929. },
  5930. enumerable: true,
  5931. configurable: true
  5932. });
  5933. Object.defineProperty(GLTFFileLoader.prototype, "onMeshLoaded", {
  5934. /**
  5935. * Callback raised when the loader creates a mesh after parsing the glTF properties of the mesh.
  5936. */
  5937. set: function (callback) {
  5938. if (this._onMeshLoadedObserver) {
  5939. this.onMeshLoadedObservable.remove(this._onMeshLoadedObserver);
  5940. }
  5941. this._onMeshLoadedObserver = this.onMeshLoadedObservable.add(callback);
  5942. },
  5943. enumerable: true,
  5944. configurable: true
  5945. });
  5946. Object.defineProperty(GLTFFileLoader.prototype, "onTextureLoaded", {
  5947. /**
  5948. * Callback raised when the loader creates a texture after parsing the glTF properties of the texture.
  5949. */
  5950. set: function (callback) {
  5951. if (this._onTextureLoadedObserver) {
  5952. this.onTextureLoadedObservable.remove(this._onTextureLoadedObserver);
  5953. }
  5954. this._onTextureLoadedObserver = this.onTextureLoadedObservable.add(callback);
  5955. },
  5956. enumerable: true,
  5957. configurable: true
  5958. });
  5959. Object.defineProperty(GLTFFileLoader.prototype, "onMaterialLoaded", {
  5960. /**
  5961. * Callback raised when the loader creates a material after parsing the glTF properties of the material.
  5962. */
  5963. set: function (callback) {
  5964. if (this._onMaterialLoadedObserver) {
  5965. this.onMaterialLoadedObservable.remove(this._onMaterialLoadedObserver);
  5966. }
  5967. this._onMaterialLoadedObserver = this.onMaterialLoadedObservable.add(callback);
  5968. },
  5969. enumerable: true,
  5970. configurable: true
  5971. });
  5972. Object.defineProperty(GLTFFileLoader.prototype, "onCameraLoaded", {
  5973. /**
  5974. * Callback raised when the loader creates a camera after parsing the glTF properties of the camera.
  5975. */
  5976. set: function (callback) {
  5977. if (this._onCameraLoadedObserver) {
  5978. this.onCameraLoadedObservable.remove(this._onCameraLoadedObserver);
  5979. }
  5980. this._onCameraLoadedObserver = this.onCameraLoadedObservable.add(callback);
  5981. },
  5982. enumerable: true,
  5983. configurable: true
  5984. });
  5985. Object.defineProperty(GLTFFileLoader.prototype, "onComplete", {
  5986. /**
  5987. * Callback raised when the asset is completely loaded, immediately before the loader is disposed.
  5988. * For assets with LODs, raised when all of the LODs are complete.
  5989. * For assets without LODs, raised when the model is complete, immediately after the loader resolves the returned promise.
  5990. */
  5991. set: function (callback) {
  5992. if (this._onCompleteObserver) {
  5993. this.onCompleteObservable.remove(this._onCompleteObserver);
  5994. }
  5995. this._onCompleteObserver = this.onCompleteObservable.add(callback);
  5996. },
  5997. enumerable: true,
  5998. configurable: true
  5999. });
  6000. Object.defineProperty(GLTFFileLoader.prototype, "onError", {
  6001. /**
  6002. * Callback raised when an error occurs.
  6003. */
  6004. set: function (callback) {
  6005. if (this._onErrorObserver) {
  6006. this.onErrorObservable.remove(this._onErrorObserver);
  6007. }
  6008. this._onErrorObserver = this.onErrorObservable.add(callback);
  6009. },
  6010. enumerable: true,
  6011. configurable: true
  6012. });
  6013. Object.defineProperty(GLTFFileLoader.prototype, "onDispose", {
  6014. /**
  6015. * Callback raised after the loader is disposed.
  6016. */
  6017. set: function (callback) {
  6018. if (this._onDisposeObserver) {
  6019. this.onDisposeObservable.remove(this._onDisposeObserver);
  6020. }
  6021. this._onDisposeObserver = this.onDisposeObservable.add(callback);
  6022. },
  6023. enumerable: true,
  6024. configurable: true
  6025. });
  6026. Object.defineProperty(GLTFFileLoader.prototype, "onExtensionLoaded", {
  6027. /**
  6028. * Callback raised after a loader extension is created.
  6029. */
  6030. set: function (callback) {
  6031. if (this._onExtensionLoadedObserver) {
  6032. this.onExtensionLoadedObservable.remove(this._onExtensionLoadedObserver);
  6033. }
  6034. this._onExtensionLoadedObserver = this.onExtensionLoadedObservable.add(callback);
  6035. },
  6036. enumerable: true,
  6037. configurable: true
  6038. });
  6039. Object.defineProperty(GLTFFileLoader.prototype, "loggingEnabled", {
  6040. /**
  6041. * Defines if the loader logging is enabled.
  6042. */
  6043. get: function () {
  6044. return this._loggingEnabled;
  6045. },
  6046. set: function (value) {
  6047. if (this._loggingEnabled === value) {
  6048. return;
  6049. }
  6050. this._loggingEnabled = value;
  6051. if (this._loggingEnabled) {
  6052. this._log = this._logEnabled;
  6053. }
  6054. else {
  6055. this._log = this._logDisabled;
  6056. }
  6057. },
  6058. enumerable: true,
  6059. configurable: true
  6060. });
  6061. Object.defineProperty(GLTFFileLoader.prototype, "capturePerformanceCounters", {
  6062. /**
  6063. * Defines if the loader should capture performance counters.
  6064. */
  6065. get: function () {
  6066. return this._capturePerformanceCounters;
  6067. },
  6068. set: function (value) {
  6069. if (this._capturePerformanceCounters === value) {
  6070. return;
  6071. }
  6072. this._capturePerformanceCounters = value;
  6073. if (this._capturePerformanceCounters) {
  6074. this._startPerformanceCounter = this._startPerformanceCounterEnabled;
  6075. this._endPerformanceCounter = this._endPerformanceCounterEnabled;
  6076. }
  6077. else {
  6078. this._startPerformanceCounter = this._startPerformanceCounterDisabled;
  6079. this._endPerformanceCounter = this._endPerformanceCounterDisabled;
  6080. }
  6081. },
  6082. enumerable: true,
  6083. configurable: true
  6084. });
  6085. Object.defineProperty(GLTFFileLoader.prototype, "onValidated", {
  6086. /**
  6087. * Callback raised after a loader extension is created.
  6088. */
  6089. set: function (callback) {
  6090. if (this._onValidatedObserver) {
  6091. this.onValidatedObservable.remove(this._onValidatedObserver);
  6092. }
  6093. this._onValidatedObserver = this.onValidatedObservable.add(callback);
  6094. },
  6095. enumerable: true,
  6096. configurable: true
  6097. });
  6098. /**
  6099. * Disposes the loader, releases resources during load, and cancels any outstanding requests.
  6100. */
  6101. GLTFFileLoader.prototype.dispose = function () {
  6102. if (this._loader) {
  6103. this._loader.dispose();
  6104. this._loader = null;
  6105. }
  6106. this._clear();
  6107. this.onDisposeObservable.notifyObservers(undefined);
  6108. this.onDisposeObservable.clear();
  6109. };
  6110. /** @hidden */
  6111. GLTFFileLoader.prototype._clear = function () {
  6112. this.preprocessUrlAsync = function (url) { return Promise.resolve(url); };
  6113. this.onMeshLoadedObservable.clear();
  6114. this.onTextureLoadedObservable.clear();
  6115. this.onMaterialLoadedObservable.clear();
  6116. this.onCameraLoadedObservable.clear();
  6117. this.onCompleteObservable.clear();
  6118. this.onExtensionLoadedObservable.clear();
  6119. };
  6120. /**
  6121. * Imports one or more meshes from the loaded glTF data and adds them to the scene
  6122. * @param meshesNames a string or array of strings of the mesh names that should be loaded from the file
  6123. * @param scene the scene the meshes should be added to
  6124. * @param data the glTF data to load
  6125. * @param rootUrl root url to load from
  6126. * @param onProgress event that fires when loading progress has occured
  6127. * @param fileName Defines the name of the file to load
  6128. * @returns a promise containg the loaded meshes, particles, skeletons and animations
  6129. */
  6130. GLTFFileLoader.prototype.importMeshAsync = function (meshesNames, scene, data, rootUrl, onProgress, fileName) {
  6131. var _this = this;
  6132. return this._parseAsync(scene, data, rootUrl, fileName).then(function (loaderData) {
  6133. _this._log("Loading " + (fileName || ""));
  6134. _this._loader = _this._getLoader(loaderData);
  6135. return _this._loader.importMeshAsync(meshesNames, scene, loaderData, rootUrl, onProgress, fileName);
  6136. });
  6137. };
  6138. /**
  6139. * Imports all objects from the loaded glTF data and adds them to the scene
  6140. * @param scene the scene the objects should be added to
  6141. * @param data the glTF data to load
  6142. * @param rootUrl root url to load from
  6143. * @param onProgress event that fires when loading progress has occured
  6144. * @param fileName Defines the name of the file to load
  6145. * @returns a promise which completes when objects have been loaded to the scene
  6146. */
  6147. GLTFFileLoader.prototype.loadAsync = function (scene, data, rootUrl, onProgress, fileName) {
  6148. var _this = this;
  6149. return this._parseAsync(scene, data, rootUrl, fileName).then(function (loaderData) {
  6150. _this._log("Loading " + (fileName || ""));
  6151. _this._loader = _this._getLoader(loaderData);
  6152. return _this._loader.loadAsync(scene, loaderData, rootUrl, onProgress, fileName);
  6153. });
  6154. };
  6155. /**
  6156. * Load into an asset container.
  6157. * @param scene The scene to load into
  6158. * @param data The data to import
  6159. * @param rootUrl The root url for scene and resources
  6160. * @param onProgress The callback when the load progresses
  6161. * @param fileName Defines the name of the file to load
  6162. * @returns The loaded asset container
  6163. */
  6164. GLTFFileLoader.prototype.loadAssetContainerAsync = function (scene, data, rootUrl, onProgress, fileName) {
  6165. var _this = this;
  6166. return this._parseAsync(scene, data, rootUrl, fileName).then(function (loaderData) {
  6167. _this._log("Loading " + (fileName || ""));
  6168. _this._loader = _this._getLoader(loaderData);
  6169. // Get materials/textures when loading to add to container
  6170. var materials = [];
  6171. _this.onMaterialLoadedObservable.add(function (material) {
  6172. materials.push(material);
  6173. });
  6174. var textures = [];
  6175. _this.onTextureLoadedObservable.add(function (texture) {
  6176. textures.push(texture);
  6177. });
  6178. return _this._loader.importMeshAsync(null, scene, loaderData, rootUrl, onProgress, fileName).then(function (result) {
  6179. var container = new babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["AssetContainer"](scene);
  6180. Array.prototype.push.apply(container.meshes, result.meshes);
  6181. Array.prototype.push.apply(container.particleSystems, result.particleSystems);
  6182. Array.prototype.push.apply(container.skeletons, result.skeletons);
  6183. Array.prototype.push.apply(container.animationGroups, result.animationGroups);
  6184. Array.prototype.push.apply(container.materials, materials);
  6185. Array.prototype.push.apply(container.textures, textures);
  6186. container.removeAllFromScene();
  6187. return container;
  6188. });
  6189. });
  6190. };
  6191. /**
  6192. * If the data string can be loaded directly.
  6193. * @param data string contianing the file data
  6194. * @returns if the data can be loaded directly
  6195. */
  6196. GLTFFileLoader.prototype.canDirectLoad = function (data) {
  6197. return ((data.indexOf("scene") !== -1) && (data.indexOf("node") !== -1));
  6198. };
  6199. /**
  6200. * Instantiates a glTF file loader plugin.
  6201. * @returns the created plugin
  6202. */
  6203. GLTFFileLoader.prototype.createPlugin = function () {
  6204. return new GLTFFileLoader();
  6205. };
  6206. Object.defineProperty(GLTFFileLoader.prototype, "loaderState", {
  6207. /**
  6208. * The loader state or null if the loader is not active.
  6209. */
  6210. get: function () {
  6211. return this._loader ? this._loader.state : null;
  6212. },
  6213. enumerable: true,
  6214. configurable: true
  6215. });
  6216. /**
  6217. * Returns a promise that resolves when the asset is completely loaded.
  6218. * @returns a promise that resolves when the asset is completely loaded.
  6219. */
  6220. GLTFFileLoader.prototype.whenCompleteAsync = function () {
  6221. var _this = this;
  6222. return new Promise(function (resolve, reject) {
  6223. _this.onCompleteObservable.addOnce(function () {
  6224. resolve();
  6225. });
  6226. _this.onErrorObservable.addOnce(function (reason) {
  6227. reject(reason);
  6228. });
  6229. });
  6230. };
  6231. GLTFFileLoader.prototype._parseAsync = function (scene, data, rootUrl, fileName) {
  6232. var _this = this;
  6233. return Promise.resolve().then(function () {
  6234. return _this._validateAsync(scene, data, rootUrl, fileName).then(function () {
  6235. var unpacked = (data instanceof ArrayBuffer) ? _this._unpackBinary(data) : { json: data, bin: null };
  6236. _this._startPerformanceCounter("Parse JSON");
  6237. _this._log("JSON length: " + unpacked.json.length);
  6238. var loaderData = {
  6239. json: JSON.parse(unpacked.json),
  6240. bin: unpacked.bin
  6241. };
  6242. _this._endPerformanceCounter("Parse JSON");
  6243. _this.onParsedObservable.notifyObservers(loaderData);
  6244. _this.onParsedObservable.clear();
  6245. return loaderData;
  6246. });
  6247. });
  6248. };
  6249. GLTFFileLoader.prototype._validateAsync = function (scene, data, rootUrl, fileName) {
  6250. var _this = this;
  6251. if (!this.validate || typeof GLTFValidator === "undefined") {
  6252. return Promise.resolve();
  6253. }
  6254. this._startPerformanceCounter("Validate JSON");
  6255. var options = {
  6256. externalResourceFunction: function (uri) {
  6257. return _this.preprocessUrlAsync(rootUrl + uri)
  6258. .then(function (url) { return scene._loadFileAsync(url, true, true); })
  6259. .then(function (data) { return new Uint8Array(data); });
  6260. }
  6261. };
  6262. if (fileName && fileName.substr(0, 5) !== "data:") {
  6263. options.uri = (rootUrl === "file:" ? fileName : "" + rootUrl + fileName);
  6264. }
  6265. var promise = (data instanceof ArrayBuffer)
  6266. ? GLTFValidator.validateBytes(new Uint8Array(data), options)
  6267. : GLTFValidator.validateString(data, options);
  6268. return promise.then(function (result) {
  6269. _this._endPerformanceCounter("Validate JSON");
  6270. _this.onValidatedObservable.notifyObservers(result);
  6271. _this.onValidatedObservable.clear();
  6272. }, function (reason) {
  6273. _this._endPerformanceCounter("Validate JSON");
  6274. babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["Tools"].Warn("Failed to validate: " + reason);
  6275. _this.onValidatedObservable.clear();
  6276. });
  6277. };
  6278. GLTFFileLoader.prototype._getLoader = function (loaderData) {
  6279. var asset = loaderData.json.asset || {};
  6280. this._log("Asset version: " + asset.version);
  6281. asset.minVersion && this._log("Asset minimum version: " + asset.minVersion);
  6282. asset.generator && this._log("Asset generator: " + asset.generator);
  6283. var version = GLTFFileLoader._parseVersion(asset.version);
  6284. if (!version) {
  6285. throw new Error("Invalid version: " + asset.version);
  6286. }
  6287. if (asset.minVersion !== undefined) {
  6288. var minVersion = GLTFFileLoader._parseVersion(asset.minVersion);
  6289. if (!minVersion) {
  6290. throw new Error("Invalid minimum version: " + asset.minVersion);
  6291. }
  6292. if (GLTFFileLoader._compareVersion(minVersion, { major: 2, minor: 0 }) > 0) {
  6293. throw new Error("Incompatible minimum version: " + asset.minVersion);
  6294. }
  6295. }
  6296. var createLoaders = {
  6297. 1: GLTFFileLoader._CreateGLTF1Loader,
  6298. 2: GLTFFileLoader._CreateGLTF2Loader
  6299. };
  6300. var createLoader = createLoaders[version.major];
  6301. if (!createLoader) {
  6302. throw new Error("Unsupported version: " + asset.version);
  6303. }
  6304. return createLoader(this);
  6305. };
  6306. GLTFFileLoader.prototype._unpackBinary = function (data) {
  6307. this._startPerformanceCounter("Unpack binary");
  6308. this._log("Binary length: " + data.byteLength);
  6309. var Binary = {
  6310. Magic: 0x46546C67
  6311. };
  6312. var binaryReader = new BinaryReader(data);
  6313. var magic = binaryReader.readUint32();
  6314. if (magic !== Binary.Magic) {
  6315. throw new Error("Unexpected magic: " + magic);
  6316. }
  6317. var version = binaryReader.readUint32();
  6318. if (this.loggingEnabled) {
  6319. this._log("Binary version: " + version);
  6320. }
  6321. var unpacked;
  6322. switch (version) {
  6323. case 1: {
  6324. unpacked = this._unpackBinaryV1(binaryReader);
  6325. break;
  6326. }
  6327. case 2: {
  6328. unpacked = this._unpackBinaryV2(binaryReader);
  6329. break;
  6330. }
  6331. default: {
  6332. throw new Error("Unsupported version: " + version);
  6333. }
  6334. }
  6335. this._endPerformanceCounter("Unpack binary");
  6336. return unpacked;
  6337. };
  6338. GLTFFileLoader.prototype._unpackBinaryV1 = function (binaryReader) {
  6339. var ContentFormat = {
  6340. JSON: 0
  6341. };
  6342. var length = binaryReader.readUint32();
  6343. if (length != binaryReader.getLength()) {
  6344. throw new Error("Length in header does not match actual data length: " + length + " != " + binaryReader.getLength());
  6345. }
  6346. var contentLength = binaryReader.readUint32();
  6347. var contentFormat = binaryReader.readUint32();
  6348. var content;
  6349. switch (contentFormat) {
  6350. case ContentFormat.JSON: {
  6351. content = GLTFFileLoader._decodeBufferToText(binaryReader.readUint8Array(contentLength));
  6352. break;
  6353. }
  6354. default: {
  6355. throw new Error("Unexpected content format: " + contentFormat);
  6356. }
  6357. }
  6358. var bytesRemaining = binaryReader.getLength() - binaryReader.getPosition();
  6359. var body = binaryReader.readUint8Array(bytesRemaining);
  6360. return {
  6361. json: content,
  6362. bin: body
  6363. };
  6364. };
  6365. GLTFFileLoader.prototype._unpackBinaryV2 = function (binaryReader) {
  6366. var ChunkFormat = {
  6367. JSON: 0x4E4F534A,
  6368. BIN: 0x004E4942
  6369. };
  6370. var length = binaryReader.readUint32();
  6371. if (length !== binaryReader.getLength()) {
  6372. throw new Error("Length in header does not match actual data length: " + length + " != " + binaryReader.getLength());
  6373. }
  6374. // JSON chunk
  6375. var chunkLength = binaryReader.readUint32();
  6376. var chunkFormat = binaryReader.readUint32();
  6377. if (chunkFormat !== ChunkFormat.JSON) {
  6378. throw new Error("First chunk format is not JSON");
  6379. }
  6380. var json = GLTFFileLoader._decodeBufferToText(binaryReader.readUint8Array(chunkLength));
  6381. // Look for BIN chunk
  6382. var bin = null;
  6383. while (binaryReader.getPosition() < binaryReader.getLength()) {
  6384. var chunkLength_1 = binaryReader.readUint32();
  6385. var chunkFormat_1 = binaryReader.readUint32();
  6386. switch (chunkFormat_1) {
  6387. case ChunkFormat.JSON: {
  6388. throw new Error("Unexpected JSON chunk");
  6389. }
  6390. case ChunkFormat.BIN: {
  6391. bin = binaryReader.readUint8Array(chunkLength_1);
  6392. break;
  6393. }
  6394. default: {
  6395. // ignore unrecognized chunkFormat
  6396. binaryReader.skipBytes(chunkLength_1);
  6397. break;
  6398. }
  6399. }
  6400. }
  6401. return {
  6402. json: json,
  6403. bin: bin
  6404. };
  6405. };
  6406. GLTFFileLoader._parseVersion = function (version) {
  6407. if (version === "1.0" || version === "1.0.1") {
  6408. return {
  6409. major: 1,
  6410. minor: 0
  6411. };
  6412. }
  6413. var match = (version + "").match(/^(\d+)\.(\d+)/);
  6414. if (!match) {
  6415. return null;
  6416. }
  6417. return {
  6418. major: parseInt(match[1]),
  6419. minor: parseInt(match[2])
  6420. };
  6421. };
  6422. GLTFFileLoader._compareVersion = function (a, b) {
  6423. if (a.major > b.major) {
  6424. return 1;
  6425. }
  6426. if (a.major < b.major) {
  6427. return -1;
  6428. }
  6429. if (a.minor > b.minor) {
  6430. return 1;
  6431. }
  6432. if (a.minor < b.minor) {
  6433. return -1;
  6434. }
  6435. return 0;
  6436. };
  6437. GLTFFileLoader._decodeBufferToText = function (buffer) {
  6438. if (typeof TextDecoder !== "undefined") {
  6439. return new TextDecoder().decode(buffer);
  6440. }
  6441. var result = "";
  6442. var length = buffer.byteLength;
  6443. for (var i = 0; i < length; i++) {
  6444. result += String.fromCharCode(buffer[i]);
  6445. }
  6446. return result;
  6447. };
  6448. /** @hidden */
  6449. GLTFFileLoader.prototype._logOpen = function (message) {
  6450. this._log(message);
  6451. this._logIndentLevel++;
  6452. };
  6453. /** @hidden */
  6454. GLTFFileLoader.prototype._logClose = function () {
  6455. --this._logIndentLevel;
  6456. };
  6457. GLTFFileLoader.prototype._logEnabled = function (message) {
  6458. var spaces = GLTFFileLoader._logSpaces.substr(0, this._logIndentLevel * 2);
  6459. babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["Tools"].Log("" + spaces + message);
  6460. };
  6461. GLTFFileLoader.prototype._logDisabled = function (message) {
  6462. };
  6463. GLTFFileLoader.prototype._startPerformanceCounterEnabled = function (counterName) {
  6464. babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["Tools"].StartPerformanceCounter(counterName);
  6465. };
  6466. GLTFFileLoader.prototype._startPerformanceCounterDisabled = function (counterName) {
  6467. };
  6468. GLTFFileLoader.prototype._endPerformanceCounterEnabled = function (counterName) {
  6469. babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["Tools"].EndPerformanceCounter(counterName);
  6470. };
  6471. GLTFFileLoader.prototype._endPerformanceCounterDisabled = function (counterName) {
  6472. };
  6473. // ----------
  6474. // V1 options
  6475. // ----------
  6476. /**
  6477. * Set this property to false to disable incremental loading which delays the loader from calling the success callback until after loading the meshes and shaders.
  6478. * Textures always loads asynchronously. For example, the success callback can compute the bounding information of the loaded meshes when incremental loading is disabled.
  6479. * Defaults to true.
  6480. * @hidden
  6481. */
  6482. GLTFFileLoader.IncrementalLoading = true;
  6483. /**
  6484. * Set this property to true in order to work with homogeneous coordinates, available with some converters and exporters.
  6485. * Defaults to false. See https://en.wikipedia.org/wiki/Homogeneous_coordinates.
  6486. * @hidden
  6487. */
  6488. GLTFFileLoader.HomogeneousCoordinates = false;
  6489. GLTFFileLoader._logSpaces = " ";
  6490. return GLTFFileLoader;
  6491. }());
  6492. var BinaryReader = /** @class */ (function () {
  6493. function BinaryReader(arrayBuffer) {
  6494. this._arrayBuffer = arrayBuffer;
  6495. this._dataView = new DataView(arrayBuffer);
  6496. this._byteOffset = 0;
  6497. }
  6498. BinaryReader.prototype.getPosition = function () {
  6499. return this._byteOffset;
  6500. };
  6501. BinaryReader.prototype.getLength = function () {
  6502. return this._arrayBuffer.byteLength;
  6503. };
  6504. BinaryReader.prototype.readUint32 = function () {
  6505. var value = this._dataView.getUint32(this._byteOffset, true);
  6506. this._byteOffset += 4;
  6507. return value;
  6508. };
  6509. BinaryReader.prototype.readUint8Array = function (length) {
  6510. var value = new Uint8Array(this._arrayBuffer, this._byteOffset, length);
  6511. this._byteOffset += length;
  6512. return value;
  6513. };
  6514. BinaryReader.prototype.skipBytes = function (length) {
  6515. this._byteOffset += length;
  6516. };
  6517. return BinaryReader;
  6518. }());
  6519. if (babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["SceneLoader"]) {
  6520. babylonjs_Misc_observable__WEBPACK_IMPORTED_MODULE_0__["SceneLoader"].RegisterPlugin(new GLTFFileLoader());
  6521. }
  6522. /***/ }),
  6523. /***/ "./legacy/legacy-glTF.ts":
  6524. /*!*******************************!*\
  6525. !*** ./legacy/legacy-glTF.ts ***!
  6526. \*******************************/
  6527. /*! exports provided: GLTFLoaderCoordinateSystemMode, GLTFLoaderAnimationStartMode, GLTFLoaderState, GLTFFileLoader */
  6528. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  6529. "use strict";
  6530. __webpack_require__.r(__webpack_exports__);
  6531. /* WEBPACK VAR INJECTION */(function(global) {/* harmony import */ var _glTF_glTFFileLoader__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../glTF/glTFFileLoader */ "./glTF/glTFFileLoader.ts");
  6532. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFLoaderCoordinateSystemMode", function() { return _glTF_glTFFileLoader__WEBPACK_IMPORTED_MODULE_0__["GLTFLoaderCoordinateSystemMode"]; });
  6533. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFLoaderAnimationStartMode", function() { return _glTF_glTFFileLoader__WEBPACK_IMPORTED_MODULE_0__["GLTFLoaderAnimationStartMode"]; });
  6534. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFLoaderState", function() { return _glTF_glTFFileLoader__WEBPACK_IMPORTED_MODULE_0__["GLTFLoaderState"]; });
  6535. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFFileLoader", function() { return _glTF_glTFFileLoader__WEBPACK_IMPORTED_MODULE_0__["GLTFFileLoader"]; });
  6536. /**
  6537. * This is the entry point for the UMD module.
  6538. * The entry point for a future ESM package should be index.ts
  6539. */
  6540. var globalObject = (typeof global !== 'undefined') ? global : ((typeof window !== 'undefined') ? window : undefined);
  6541. if (typeof globalObject !== "undefined") {
  6542. globalObject.BABYLON = globalObject.BABYLON || {};
  6543. for (var key in _glTF_glTFFileLoader__WEBPACK_IMPORTED_MODULE_0__) {
  6544. globalObject.BABYLON[key] = _glTF_glTFFileLoader__WEBPACK_IMPORTED_MODULE_0__[key];
  6545. }
  6546. }
  6547. /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../node_modules/webpack/buildin/global.js */ "../../node_modules/webpack/buildin/global.js")))
  6548. /***/ }),
  6549. /***/ "./legacy/legacy-glTF1.ts":
  6550. /*!********************************!*\
  6551. !*** ./legacy/legacy-glTF1.ts ***!
  6552. \********************************/
  6553. /*! exports provided: GLTF1 */
  6554. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  6555. "use strict";
  6556. __webpack_require__.r(__webpack_exports__);
  6557. /* WEBPACK VAR INJECTION */(function(global) {/* harmony import */ var _glTF_1_0__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../glTF/1.0 */ "./glTF/1.0/index.ts");
  6558. /* harmony reexport (module object) */ __webpack_require__.d(__webpack_exports__, "GLTF1", function() { return _glTF_1_0__WEBPACK_IMPORTED_MODULE_0__; });
  6559. /**
  6560. * This is the entry point for the UMD module.
  6561. * The entry point for a future ESM package should be index.ts
  6562. */
  6563. var globalObject = (typeof global !== 'undefined') ? global : ((typeof window !== 'undefined') ? window : undefined);
  6564. if (typeof globalObject !== "undefined") {
  6565. globalObject.BABYLON = globalObject.BABYLON || {};
  6566. globalObject.BABYLON.GLTF1 = globalObject.BABYLON.GLTF1 || {};
  6567. for (var key in _glTF_1_0__WEBPACK_IMPORTED_MODULE_0__) {
  6568. globalObject.BABYLON.GLTF1[key] = _glTF_1_0__WEBPACK_IMPORTED_MODULE_0__[key];
  6569. }
  6570. }
  6571. /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../node_modules/webpack/buildin/global.js */ "../../node_modules/webpack/buildin/global.js")))
  6572. /***/ }),
  6573. /***/ "./legacy/legacy-glTF2.ts":
  6574. /*!********************************!*\
  6575. !*** ./legacy/legacy-glTF2.ts ***!
  6576. \********************************/
  6577. /*! exports provided: GLTF2 */
  6578. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  6579. "use strict";
  6580. __webpack_require__.r(__webpack_exports__);
  6581. /* WEBPACK VAR INJECTION */(function(global) {/* harmony import */ var _glTF_2_0_Extensions__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../glTF/2.0/Extensions */ "./glTF/2.0/Extensions/index.ts");
  6582. /* harmony import */ var _glTF_2_0_glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../glTF/2.0/glTFLoaderInterfaces */ "./glTF/2.0/glTFLoaderInterfaces.ts");
  6583. /* harmony import */ var _glTF_2_0_glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_glTF_2_0_glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_1__);
  6584. /* harmony import */ var _glTF_2_0__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../glTF/2.0 */ "./glTF/2.0/index.ts");
  6585. /* harmony reexport (module object) */ __webpack_require__.d(__webpack_exports__, "GLTF2", function() { return _glTF_2_0__WEBPACK_IMPORTED_MODULE_2__; });
  6586. /**
  6587. * This is the entry point for the UMD module.
  6588. * The entry point for a future ESM package should be index.ts
  6589. */
  6590. var globalObject = (typeof global !== 'undefined') ? global : ((typeof window !== 'undefined') ? window : undefined);
  6591. if (typeof globalObject !== "undefined") {
  6592. globalObject.BABYLON = globalObject.BABYLON || {};
  6593. var BABYLON = globalObject.BABYLON;
  6594. BABYLON.GLTF2 = BABYLON.GLTF2 || {};
  6595. BABYLON.GLTF2.Loader = BABYLON.GLTF2.Loader || {};
  6596. BABYLON.GLTF2.Loader.Extensions = BABYLON.GLTF2.Loader.Extensions || {};
  6597. var keys = [];
  6598. for (var key in _glTF_2_0_Extensions__WEBPACK_IMPORTED_MODULE_0__) {
  6599. BABYLON.GLTF2.Loader.Extensions[key] = _glTF_2_0_Extensions__WEBPACK_IMPORTED_MODULE_0__[key];
  6600. keys.push(key);
  6601. }
  6602. for (var key in _glTF_2_0_glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_1__) {
  6603. BABYLON.GLTF2.Loader[key] = _glTF_2_0_glTFLoaderInterfaces__WEBPACK_IMPORTED_MODULE_1__[key];
  6604. keys.push(key);
  6605. }
  6606. for (var key in _glTF_2_0__WEBPACK_IMPORTED_MODULE_2__) {
  6607. // Prevent Reassignment.
  6608. if (keys.indexOf(key) > -1) {
  6609. continue;
  6610. }
  6611. BABYLON.GLTF2[key] = _glTF_2_0__WEBPACK_IMPORTED_MODULE_2__[key];
  6612. }
  6613. }
  6614. /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../node_modules/webpack/buildin/global.js */ "../../node_modules/webpack/buildin/global.js")))
  6615. /***/ }),
  6616. /***/ "./legacy/legacy-glTFFileLoader.ts":
  6617. /*!*****************************************!*\
  6618. !*** ./legacy/legacy-glTFFileLoader.ts ***!
  6619. \*****************************************/
  6620. /*! exports provided: GLTF1, GLTF2, GLTFLoaderCoordinateSystemMode, GLTFLoaderAnimationStartMode, GLTFLoaderState, GLTFFileLoader */
  6621. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  6622. "use strict";
  6623. __webpack_require__.r(__webpack_exports__);
  6624. /* harmony import */ var _legacy_glTF__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./legacy-glTF */ "./legacy/legacy-glTF.ts");
  6625. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFLoaderCoordinateSystemMode", function() { return _legacy_glTF__WEBPACK_IMPORTED_MODULE_0__["GLTFLoaderCoordinateSystemMode"]; });
  6626. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFLoaderAnimationStartMode", function() { return _legacy_glTF__WEBPACK_IMPORTED_MODULE_0__["GLTFLoaderAnimationStartMode"]; });
  6627. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFLoaderState", function() { return _legacy_glTF__WEBPACK_IMPORTED_MODULE_0__["GLTFLoaderState"]; });
  6628. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFFileLoader", function() { return _legacy_glTF__WEBPACK_IMPORTED_MODULE_0__["GLTFFileLoader"]; });
  6629. /* harmony import */ var _legacy_glTF1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./legacy-glTF1 */ "./legacy/legacy-glTF1.ts");
  6630. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTF1", function() { return _legacy_glTF1__WEBPACK_IMPORTED_MODULE_1__["GLTF1"]; });
  6631. /* harmony import */ var _legacy_glTF2__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./legacy-glTF2 */ "./legacy/legacy-glTF2.ts");
  6632. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTF2", function() { return _legacy_glTF2__WEBPACK_IMPORTED_MODULE_2__["GLTF2"]; });
  6633. /***/ }),
  6634. /***/ "babylonjs/Misc/observable":
  6635. /*!****************************************************************************************************!*\
  6636. !*** external {"root":"BABYLON","commonjs":"babylonjs","commonjs2":"babylonjs","amd":"babylonjs"} ***!
  6637. \****************************************************************************************************/
  6638. /*! no static exports found */
  6639. /***/ (function(module, exports) {
  6640. module.exports = __WEBPACK_EXTERNAL_MODULE_babylonjs_Misc_observable__;
  6641. /***/ })
  6642. /******/ });
  6643. });
  6644. //# sourceMappingURL=babylon.glTFFileLoader.js.map