babylonjs.serializers.js 257 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851
  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-serializers", ["babylonjs"], factory);
  6. else if(typeof exports === 'object')
  7. exports["babylonjs-serializers"] = factory(require("babylonjs"));
  8. else
  9. root["SERIALIZERS"] = factory(root["BABYLON"]);
  10. })((typeof self !== "undefined" ? self : typeof global !== "undefined" ? global : this), function(__WEBPACK_EXTERNAL_MODULE_babylonjs_Maths_math__) {
  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.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. /***/ "./OBJ/index.ts":
  324. /*!**********************!*\
  325. !*** ./OBJ/index.ts ***!
  326. \**********************/
  327. /*! exports provided: OBJExport */
  328. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  329. "use strict";
  330. __webpack_require__.r(__webpack_exports__);
  331. /* harmony import */ var _objSerializer__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./objSerializer */ "./OBJ/objSerializer.ts");
  332. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "OBJExport", function() { return _objSerializer__WEBPACK_IMPORTED_MODULE_0__["OBJExport"]; });
  333. /***/ }),
  334. /***/ "./OBJ/objSerializer.ts":
  335. /*!******************************!*\
  336. !*** ./OBJ/objSerializer.ts ***!
  337. \******************************/
  338. /*! exports provided: OBJExport */
  339. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  340. "use strict";
  341. __webpack_require__.r(__webpack_exports__);
  342. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "OBJExport", function() { return OBJExport; });
  343. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Maths/math */ "babylonjs/Maths/math");
  344. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__);
  345. /**
  346. * Class for generating OBJ data from a Babylon scene.
  347. */
  348. var OBJExport = /** @class */ (function () {
  349. function OBJExport() {
  350. }
  351. /**
  352. * Exports the geometry of a Mesh array in .OBJ file format (text)
  353. * @param mesh defines the list of meshes to serialize
  354. * @param materials defines if materials should be exported
  355. * @param matlibname defines the name of the associated mtl file
  356. * @param globalposition defines if the exported positions are globals or local to the exported mesh
  357. * @returns the OBJ content
  358. */
  359. OBJExport.OBJ = function (mesh, materials, matlibname, globalposition) {
  360. var output = [];
  361. var v = 1;
  362. if (materials) {
  363. if (!matlibname) {
  364. matlibname = 'mat';
  365. }
  366. output.push("mtllib " + matlibname + ".mtl");
  367. }
  368. for (var j = 0; j < mesh.length; j++) {
  369. output.push("g object" + j);
  370. output.push("o object_" + j);
  371. //Uses the position of the item in the scene, to the file (this back to normal in the end)
  372. var lastMatrix = null;
  373. if (globalposition) {
  374. var newMatrix = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Matrix"].Translation(mesh[j].position.x, mesh[j].position.y, mesh[j].position.z);
  375. lastMatrix = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Matrix"].Translation(-(mesh[j].position.x), -(mesh[j].position.y), -(mesh[j].position.z));
  376. mesh[j].bakeTransformIntoVertices(newMatrix);
  377. }
  378. //TODO: submeshes (groups)
  379. //TODO: smoothing groups (s 1, s off);
  380. if (materials) {
  381. var mat = mesh[j].material;
  382. if (mat) {
  383. output.push("usemtl " + mat.id);
  384. }
  385. }
  386. var g = mesh[j].geometry;
  387. if (!g) {
  388. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].Warn("No geometry is present on the mesh");
  389. continue;
  390. }
  391. var trunkVerts = g.getVerticesData('position');
  392. var trunkNormals = g.getVerticesData('normal');
  393. var trunkUV = g.getVerticesData('uv');
  394. var trunkFaces = g.getIndices();
  395. var curV = 0;
  396. if (!trunkVerts || !trunkFaces) {
  397. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].Warn("There are no position vertices or indices on the mesh!");
  398. continue;
  399. }
  400. for (var i = 0; i < trunkVerts.length; i += 3) {
  401. output.push("v " + trunkVerts[i] + " " + trunkVerts[i + 1] + " " + trunkVerts[i + 2]);
  402. curV++;
  403. }
  404. if (trunkNormals != null) {
  405. for (i = 0; i < trunkNormals.length; i += 3) {
  406. output.push("vn " + trunkNormals[i] + " " + trunkNormals[i + 1] + " " + trunkNormals[i + 2]);
  407. }
  408. }
  409. if (trunkUV != null) {
  410. for (i = 0; i < trunkUV.length; i += 2) {
  411. output.push("vt " + trunkUV[i] + " " + trunkUV[i + 1]);
  412. }
  413. }
  414. for (i = 0; i < trunkFaces.length; i += 3) {
  415. var indices = [String(trunkFaces[i + 2] + v), String(trunkFaces[i + 1] + v), String(trunkFaces[i] + v)];
  416. var blanks = ["", "", ""];
  417. var facePositions = indices;
  418. var faceUVs = trunkUV != null ? indices : blanks;
  419. var faceNormals = trunkNormals != null ? indices : blanks;
  420. output.push("f " + facePositions[0] + "/" + faceUVs[0] + "/" + faceNormals[0] +
  421. " " + facePositions[1] + "/" + faceUVs[1] + "/" + faceNormals[1] +
  422. " " + facePositions[2] + "/" + faceUVs[2] + "/" + faceNormals[2]);
  423. }
  424. //back de previous matrix, to not change the original mesh in the scene
  425. if (globalposition && lastMatrix) {
  426. mesh[j].bakeTransformIntoVertices(lastMatrix);
  427. }
  428. v += curV;
  429. }
  430. var text = output.join("\n");
  431. return (text);
  432. };
  433. /**
  434. * Exports the material(s) of a mesh in .MTL file format (text)
  435. * @param mesh defines the mesh to extract the material from
  436. * @returns the mtl content
  437. */
  438. //TODO: Export the materials of mesh array
  439. OBJExport.MTL = function (mesh) {
  440. var output = [];
  441. var m = mesh.material;
  442. output.push("newmtl mat1");
  443. output.push(" Ns " + m.specularPower.toFixed(4));
  444. output.push(" Ni 1.5000");
  445. output.push(" d " + m.alpha.toFixed(4));
  446. output.push(" Tr 0.0000");
  447. output.push(" Tf 1.0000 1.0000 1.0000");
  448. output.push(" illum 2");
  449. output.push(" Ka " + m.ambientColor.r.toFixed(4) + " " + m.ambientColor.g.toFixed(4) + " " + m.ambientColor.b.toFixed(4));
  450. output.push(" Kd " + m.diffuseColor.r.toFixed(4) + " " + m.diffuseColor.g.toFixed(4) + " " + m.diffuseColor.b.toFixed(4));
  451. output.push(" Ks " + m.specularColor.r.toFixed(4) + " " + m.specularColor.g.toFixed(4) + " " + m.specularColor.b.toFixed(4));
  452. output.push(" Ke " + m.emissiveColor.r.toFixed(4) + " " + m.emissiveColor.g.toFixed(4) + " " + m.emissiveColor.b.toFixed(4));
  453. //TODO: uv scale, offset, wrap
  454. //TODO: UV mirrored in Blender? second UV channel? lightMap? reflection textures?
  455. var uvscale = "";
  456. if (m.ambientTexture) {
  457. output.push(" map_Ka " + uvscale + m.ambientTexture.name);
  458. }
  459. if (m.diffuseTexture) {
  460. output.push(" map_Kd " + uvscale + m.diffuseTexture.name);
  461. //TODO: alpha testing, opacity in diffuse texture alpha channel (diffuseTexture.hasAlpha -> map_d)
  462. }
  463. if (m.specularTexture) {
  464. output.push(" map_Ks " + uvscale + m.specularTexture.name);
  465. /* TODO: glossiness = specular highlight component is in alpha channel of specularTexture. (???)
  466. if (m.useGlossinessFromSpecularMapAlpha) {
  467. output.push(" map_Ns "+uvscale + m.specularTexture.name);
  468. }
  469. */
  470. }
  471. /* TODO: emissive texture not in .MAT format (???)
  472. if (m.emissiveTexture) {
  473. output.push(" map_d "+uvscale+m.emissiveTexture.name);
  474. }
  475. */
  476. if (m.bumpTexture) {
  477. output.push(" map_bump -imfchan z " + uvscale + m.bumpTexture.name);
  478. }
  479. if (m.opacityTexture) {
  480. output.push(" map_d " + uvscale + m.opacityTexture.name);
  481. }
  482. var text = output.join("\n");
  483. return (text);
  484. };
  485. return OBJExport;
  486. }());
  487. /***/ }),
  488. /***/ "./glTF/2.0/Extensions/KHR_lights_punctual.ts":
  489. /*!****************************************************!*\
  490. !*** ./glTF/2.0/Extensions/KHR_lights_punctual.ts ***!
  491. \****************************************************/
  492. /*! exports provided: KHR_lights_punctual */
  493. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  494. "use strict";
  495. __webpack_require__.r(__webpack_exports__);
  496. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "KHR_lights_punctual", function() { return KHR_lights_punctual; });
  497. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Maths/math */ "babylonjs/Maths/math");
  498. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__);
  499. /* harmony import */ var _glTFExporter__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../glTFExporter */ "./glTF/2.0/glTFExporter.ts");
  500. /* harmony import */ var _glTFUtilities__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../glTFUtilities */ "./glTF/2.0/glTFUtilities.ts");
  501. var NAME = "KHR_lights_punctual";
  502. var LightType;
  503. (function (LightType) {
  504. LightType["DIRECTIONAL"] = "directional";
  505. LightType["POINT"] = "point";
  506. LightType["SPOT"] = "spot";
  507. })(LightType || (LightType = {}));
  508. /**
  509. * [Specification](https://github.com/KhronosGroup/glTF/blob/master/extensions/2.0/Khronos/KHR_lights_punctual/README.md)
  510. */
  511. var KHR_lights_punctual = /** @class */ (function () {
  512. /** @hidden */
  513. function KHR_lights_punctual(exporter) {
  514. /** The name of this extension. */
  515. this.name = NAME;
  516. /** Defines whether this extension is enabled. */
  517. this.enabled = true;
  518. /** Defines whether this extension is required */
  519. this.required = false;
  520. this._exporter = exporter;
  521. }
  522. /** @hidden */
  523. KHR_lights_punctual.prototype.dispose = function () {
  524. delete this._exporter;
  525. delete this._lights;
  526. };
  527. /** @hidden */
  528. KHR_lights_punctual.prototype.onExporting = function () {
  529. if (this._lights) {
  530. if (this._exporter._glTF.extensionsUsed == null) {
  531. this._exporter._glTF.extensionsUsed = [];
  532. }
  533. if (this._exporter._glTF.extensionsUsed.indexOf(NAME) === -1) {
  534. this._exporter._glTF.extensionsUsed.push(NAME);
  535. }
  536. if (this.required) {
  537. if (this._exporter._glTF.extensionsRequired == null) {
  538. this._exporter._glTF.extensionsRequired = [];
  539. }
  540. if (this._exporter._glTF.extensionsRequired.indexOf(NAME) === -1) {
  541. this._exporter._glTF.extensionsRequired.push(NAME);
  542. }
  543. }
  544. if (this._exporter._glTF.extensions == null) {
  545. this._exporter._glTF.extensions = {};
  546. }
  547. this._exporter._glTF.extensions[NAME] = this._lights;
  548. }
  549. };
  550. /**
  551. * Define this method to modify the default behavior when exporting a node
  552. * @param context The context when exporting the node
  553. * @param node glTF node
  554. * @param babylonNode BabylonJS node
  555. * @returns nullable INode promise
  556. */
  557. KHR_lights_punctual.prototype.postExportNodeAsync = function (context, node, babylonNode) {
  558. var _this = this;
  559. return new Promise(function (resolve, reject) {
  560. if (babylonNode instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["ShadowLight"]) {
  561. var babylonLight = babylonNode;
  562. var light = void 0;
  563. var lightType = (babylonLight.getTypeID() == babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Light"].LIGHTTYPEID_POINTLIGHT ? LightType.POINT : (babylonLight.getTypeID() == babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Light"].LIGHTTYPEID_DIRECTIONALLIGHT ? LightType.DIRECTIONAL : (babylonLight.getTypeID() == babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Light"].LIGHTTYPEID_SPOTLIGHT ? LightType.SPOT : null)));
  564. if (lightType == null) {
  565. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Logger"].Warn(context + ": Light " + babylonLight.name + " is not supported in " + NAME);
  566. }
  567. else {
  568. var lightPosition = babylonLight.position.clone();
  569. if (!lightPosition.equals(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Vector3"].Zero())) {
  570. if (_this._exporter._convertToRightHandedSystem) {
  571. _glTFUtilities__WEBPACK_IMPORTED_MODULE_2__["_GLTFUtilities"]._GetRightHandedPositionVector3FromRef(lightPosition);
  572. }
  573. node.translation = lightPosition.asArray();
  574. }
  575. if (lightType !== LightType.POINT) {
  576. var localAxis = babylonLight.direction;
  577. var yaw = -Math.atan2(localAxis.z, localAxis.x) + Math.PI / 2;
  578. var len = Math.sqrt(localAxis.x * localAxis.x + localAxis.z * localAxis.z);
  579. var pitch = -Math.atan2(localAxis.y, len);
  580. var lightRotationQuaternion = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].RotationYawPitchRoll(yaw, pitch, 0);
  581. if (_this._exporter._convertToRightHandedSystem) {
  582. _glTFUtilities__WEBPACK_IMPORTED_MODULE_2__["_GLTFUtilities"]._GetRightHandedQuaternionFromRef(lightRotationQuaternion);
  583. }
  584. if (!lightRotationQuaternion.equals(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].Identity())) {
  585. node.rotation = lightRotationQuaternion.asArray();
  586. }
  587. }
  588. if (babylonLight.falloffType !== babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Light"].FALLOFF_GLTF) {
  589. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Logger"].Warn(context + ": Light falloff for " + babylonLight.name + " does not match the " + NAME + " specification!");
  590. }
  591. light = {
  592. type: lightType
  593. };
  594. if (!babylonLight.diffuse.equals(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].White())) {
  595. light.color = babylonLight.diffuse.asArray();
  596. }
  597. if (babylonLight.intensity !== 1.0) {
  598. light.intensity = babylonLight.intensity;
  599. }
  600. if (babylonLight.range !== Number.MAX_VALUE) {
  601. light.range = babylonLight.range;
  602. }
  603. if (lightType === LightType.SPOT) {
  604. var babylonSpotLight = babylonLight;
  605. if (babylonSpotLight.angle !== Math.PI / 2.0) {
  606. if (light.spot == null) {
  607. light.spot = {};
  608. }
  609. light.spot.outerConeAngle = babylonSpotLight.angle / 2.0;
  610. }
  611. if (babylonSpotLight.innerAngle !== 0) {
  612. if (light.spot == null) {
  613. light.spot = {};
  614. }
  615. light.spot.innerConeAngle = babylonSpotLight.innerAngle / 2.0;
  616. }
  617. }
  618. if (_this._lights == null) {
  619. _this._lights = {
  620. lights: []
  621. };
  622. }
  623. _this._lights.lights.push(light);
  624. if (node.extensions == null) {
  625. node.extensions = {};
  626. }
  627. var lightReference = {
  628. light: _this._lights.lights.length - 1
  629. };
  630. node.extensions[NAME] = lightReference;
  631. }
  632. }
  633. resolve(node);
  634. });
  635. };
  636. return KHR_lights_punctual;
  637. }());
  638. _glTFExporter__WEBPACK_IMPORTED_MODULE_1__["_Exporter"].RegisterExtension(NAME, function (exporter) { return new KHR_lights_punctual(exporter); });
  639. /***/ }),
  640. /***/ "./glTF/2.0/Extensions/KHR_texture_transform.ts":
  641. /*!******************************************************!*\
  642. !*** ./glTF/2.0/Extensions/KHR_texture_transform.ts ***!
  643. \******************************************************/
  644. /*! exports provided: KHR_texture_transform */
  645. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  646. "use strict";
  647. __webpack_require__.r(__webpack_exports__);
  648. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "KHR_texture_transform", function() { return KHR_texture_transform; });
  649. /* harmony import */ var babylonjs_Misc_tools__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Misc/tools */ "babylonjs/Maths/math");
  650. /* harmony import */ var babylonjs_Misc_tools__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Misc_tools__WEBPACK_IMPORTED_MODULE_0__);
  651. /* harmony import */ var _glTFExporter__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../glTFExporter */ "./glTF/2.0/glTFExporter.ts");
  652. /* harmony import */ var _shaders_textureTransform_fragment__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../shaders/textureTransform.fragment */ "./glTF/2.0/shaders/textureTransform.fragment.ts");
  653. var NAME = "KHR_texture_transform";
  654. /**
  655. * @hidden
  656. */
  657. var KHR_texture_transform = /** @class */ (function () {
  658. function KHR_texture_transform(exporter) {
  659. /** Name of this extension */
  660. this.name = NAME;
  661. /** Defines whether this extension is enabled */
  662. this.enabled = true;
  663. /** Defines whether this extension is required */
  664. this.required = false;
  665. this._exporter = exporter;
  666. }
  667. KHR_texture_transform.prototype.dispose = function () {
  668. delete this._exporter;
  669. };
  670. KHR_texture_transform.prototype.preExportTextureAsync = function (context, babylonTexture, mimeType) {
  671. var _this = this;
  672. return new Promise(function (resolve, reject) {
  673. var scene = babylonTexture.getScene();
  674. if (!scene) {
  675. reject(context + ": \"scene\" is not defined for Babylon texture " + babylonTexture.name + "!");
  676. return;
  677. }
  678. // TODO: this doesn't take into account rotation center values
  679. var texture_transform_extension = {};
  680. if (babylonTexture.uOffset !== 0 || babylonTexture.vOffset !== 0) {
  681. texture_transform_extension.offset = [babylonTexture.uOffset, babylonTexture.vOffset];
  682. }
  683. if (babylonTexture.uScale !== 1 || babylonTexture.vScale !== 1) {
  684. texture_transform_extension.scale = [babylonTexture.uScale, babylonTexture.vScale];
  685. }
  686. if (babylonTexture.wAng !== 0) {
  687. texture_transform_extension.rotation = babylonTexture.wAng;
  688. }
  689. if (!Object.keys(texture_transform_extension).length) {
  690. resolve(babylonTexture);
  691. return;
  692. }
  693. return _this._textureTransformTextureAsync(babylonTexture, scene)
  694. .then(function (proceduralTexture) {
  695. resolve(proceduralTexture);
  696. })
  697. .catch(function (e) {
  698. reject(e);
  699. });
  700. });
  701. };
  702. /**
  703. * Transform the babylon texture by the offset, rotation and scale parameters using a procedural texture
  704. * @param babylonTexture
  705. * @param offset
  706. * @param rotation
  707. * @param scale
  708. * @param scene
  709. */
  710. KHR_texture_transform.prototype._textureTransformTextureAsync = function (babylonTexture, scene) {
  711. return new Promise(function (resolve) {
  712. var proceduralTexture = new babylonjs_Misc_tools__WEBPACK_IMPORTED_MODULE_0__["ProceduralTexture"]("" + babylonTexture.name, babylonTexture.getSize(), "textureTransform", scene);
  713. if (!proceduralTexture) {
  714. babylonjs_Misc_tools__WEBPACK_IMPORTED_MODULE_0__["Tools"].Log("Cannot create procedural texture for " + babylonTexture.name + "!");
  715. resolve(babylonTexture);
  716. }
  717. proceduralTexture.setTexture("textureSampler", babylonTexture);
  718. proceduralTexture.setMatrix("textureTransformMat", babylonTexture.getTextureMatrix());
  719. // isReady trigger creation of effect if it doesnt exist yet
  720. if (proceduralTexture.isReady()) {
  721. proceduralTexture.render();
  722. resolve(proceduralTexture);
  723. }
  724. else {
  725. proceduralTexture.getEffect().executeWhenCompiled(function () {
  726. proceduralTexture.render();
  727. resolve(proceduralTexture);
  728. });
  729. }
  730. });
  731. };
  732. return KHR_texture_transform;
  733. }());
  734. _glTFExporter__WEBPACK_IMPORTED_MODULE_1__["_Exporter"].RegisterExtension(NAME, function (exporter) { return new KHR_texture_transform(exporter); });
  735. /***/ }),
  736. /***/ "./glTF/2.0/Extensions/index.ts":
  737. /*!**************************************!*\
  738. !*** ./glTF/2.0/Extensions/index.ts ***!
  739. \**************************************/
  740. /*! exports provided: KHR_texture_transform, KHR_lights_punctual */
  741. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  742. "use strict";
  743. __webpack_require__.r(__webpack_exports__);
  744. /* harmony import */ var _KHR_texture_transform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./KHR_texture_transform */ "./glTF/2.0/Extensions/KHR_texture_transform.ts");
  745. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_texture_transform", function() { return _KHR_texture_transform__WEBPACK_IMPORTED_MODULE_0__["KHR_texture_transform"]; });
  746. /* harmony import */ var _KHR_lights_punctual__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./KHR_lights_punctual */ "./glTF/2.0/Extensions/KHR_lights_punctual.ts");
  747. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_lights_punctual", function() { return _KHR_lights_punctual__WEBPACK_IMPORTED_MODULE_1__["KHR_lights_punctual"]; });
  748. /***/ }),
  749. /***/ "./glTF/2.0/glTFAnimation.ts":
  750. /*!***********************************!*\
  751. !*** ./glTF/2.0/glTFAnimation.ts ***!
  752. \***********************************/
  753. /*! exports provided: _GLTFAnimation */
  754. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  755. "use strict";
  756. __webpack_require__.r(__webpack_exports__);
  757. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "_GLTFAnimation", function() { return _GLTFAnimation; });
  758. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Maths/math */ "babylonjs/Maths/math");
  759. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__);
  760. /* harmony import */ var _glTFUtilities__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./glTFUtilities */ "./glTF/2.0/glTFUtilities.ts");
  761. /**
  762. * @hidden
  763. * Enum for handling in tangent and out tangent.
  764. */
  765. var _TangentType;
  766. (function (_TangentType) {
  767. /**
  768. * Specifies that input tangents are used.
  769. */
  770. _TangentType[_TangentType["INTANGENT"] = 0] = "INTANGENT";
  771. /**
  772. * Specifies that output tangents are used.
  773. */
  774. _TangentType[_TangentType["OUTTANGENT"] = 1] = "OUTTANGENT";
  775. })(_TangentType || (_TangentType = {}));
  776. /**
  777. * @hidden
  778. * Utility class for generating glTF animation data from BabylonJS.
  779. */
  780. var _GLTFAnimation = /** @class */ (function () {
  781. function _GLTFAnimation() {
  782. }
  783. /**
  784. * @ignore
  785. *
  786. * Creates glTF channel animation from BabylonJS animation.
  787. * @param babylonTransformNode - BabylonJS mesh.
  788. * @param animation - animation.
  789. * @param animationChannelTargetPath - The target animation channel.
  790. * @param convertToRightHandedSystem - Specifies if the values should be converted to right-handed.
  791. * @param useQuaternion - Specifies if quaternions are used.
  792. * @returns nullable IAnimationData
  793. */
  794. _GLTFAnimation._CreateNodeAnimation = function (babylonTransformNode, animation, animationChannelTargetPath, convertToRightHandedSystem, useQuaternion, animationSampleRate) {
  795. var inputs = [];
  796. var outputs = [];
  797. var keyFrames = animation.getKeys();
  798. var minMaxKeyFrames = _GLTFAnimation.calculateMinMaxKeyFrames(keyFrames);
  799. var interpolationOrBake = _GLTFAnimation._DeduceInterpolation(keyFrames, animationChannelTargetPath, useQuaternion);
  800. var frameDelta = minMaxKeyFrames.max - minMaxKeyFrames.min;
  801. var interpolation = interpolationOrBake.interpolationType;
  802. var shouldBakeAnimation = interpolationOrBake.shouldBakeAnimation;
  803. if (shouldBakeAnimation) {
  804. _GLTFAnimation._CreateBakedAnimation(babylonTransformNode, animation, animationChannelTargetPath, minMaxKeyFrames.min, minMaxKeyFrames.max, animation.framePerSecond, animationSampleRate, inputs, outputs, minMaxKeyFrames, convertToRightHandedSystem, useQuaternion);
  805. }
  806. else {
  807. if (interpolation === "LINEAR" /* LINEAR */ || interpolation === "STEP" /* STEP */) {
  808. _GLTFAnimation._CreateLinearOrStepAnimation(babylonTransformNode, animation, animationChannelTargetPath, frameDelta, inputs, outputs, convertToRightHandedSystem, useQuaternion);
  809. }
  810. else if (interpolation === "CUBICSPLINE" /* CUBICSPLINE */) {
  811. _GLTFAnimation._CreateCubicSplineAnimation(babylonTransformNode, animation, animationChannelTargetPath, frameDelta, inputs, outputs, convertToRightHandedSystem, useQuaternion);
  812. }
  813. else {
  814. _GLTFAnimation._CreateBakedAnimation(babylonTransformNode, animation, animationChannelTargetPath, minMaxKeyFrames.min, minMaxKeyFrames.max, animation.framePerSecond, animationSampleRate, inputs, outputs, minMaxKeyFrames, convertToRightHandedSystem, useQuaternion);
  815. }
  816. }
  817. if (inputs.length && outputs.length) {
  818. var result = {
  819. inputs: inputs,
  820. outputs: outputs,
  821. samplerInterpolation: interpolation,
  822. inputsMin: shouldBakeAnimation ? minMaxKeyFrames.min : babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].FloatRound(minMaxKeyFrames.min / animation.framePerSecond),
  823. inputsMax: shouldBakeAnimation ? minMaxKeyFrames.max : babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].FloatRound(minMaxKeyFrames.max / animation.framePerSecond)
  824. };
  825. return result;
  826. }
  827. return null;
  828. };
  829. _GLTFAnimation._DeduceAnimationInfo = function (animation) {
  830. var animationChannelTargetPath = null;
  831. var dataAccessorType = "VEC3" /* VEC3 */;
  832. var useQuaternion = false;
  833. var property = animation.targetProperty.split('.');
  834. switch (property[0]) {
  835. case 'scaling': {
  836. animationChannelTargetPath = "scale" /* SCALE */;
  837. break;
  838. }
  839. case 'position': {
  840. animationChannelTargetPath = "translation" /* TRANSLATION */;
  841. break;
  842. }
  843. case 'rotation': {
  844. dataAccessorType = "VEC4" /* VEC4 */;
  845. animationChannelTargetPath = "rotation" /* ROTATION */;
  846. break;
  847. }
  848. case 'rotationQuaternion': {
  849. dataAccessorType = "VEC4" /* VEC4 */;
  850. useQuaternion = true;
  851. animationChannelTargetPath = "rotation" /* ROTATION */;
  852. break;
  853. }
  854. default: {
  855. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].Error("Unsupported animatable property " + property[0]);
  856. }
  857. }
  858. if (animationChannelTargetPath) {
  859. return { animationChannelTargetPath: animationChannelTargetPath, dataAccessorType: dataAccessorType, useQuaternion: useQuaternion };
  860. }
  861. else {
  862. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].Error('animation channel target path and data accessor type could be deduced');
  863. }
  864. return null;
  865. };
  866. /**
  867. * @ignore
  868. * Create node animations from the transform node animations
  869. * @param babylonNode
  870. * @param runtimeGLTFAnimation
  871. * @param idleGLTFAnimations
  872. * @param nodeMap
  873. * @param nodes
  874. * @param binaryWriter
  875. * @param bufferViews
  876. * @param accessors
  877. * @param convertToRightHandedSystem
  878. */
  879. _GLTFAnimation._CreateNodeAnimationFromNodeAnimations = function (babylonNode, runtimeGLTFAnimation, idleGLTFAnimations, nodeMap, nodes, binaryWriter, bufferViews, accessors, convertToRightHandedSystem, animationSampleRate) {
  880. var glTFAnimation;
  881. if (babylonNode instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["TransformNode"]) {
  882. if (babylonNode.animations) {
  883. for (var _i = 0, _a = babylonNode.animations; _i < _a.length; _i++) {
  884. var animation = _a[_i];
  885. var animationInfo = _GLTFAnimation._DeduceAnimationInfo(animation);
  886. if (animationInfo) {
  887. glTFAnimation = {
  888. name: animation.name,
  889. samplers: [],
  890. channels: []
  891. };
  892. _GLTFAnimation.AddAnimation("" + animation.name, animation.hasRunningRuntimeAnimations ? runtimeGLTFAnimation : glTFAnimation, babylonNode, animation, animationInfo.dataAccessorType, animationInfo.animationChannelTargetPath, nodeMap, binaryWriter, bufferViews, accessors, convertToRightHandedSystem, animationInfo.useQuaternion, animationSampleRate);
  893. if (glTFAnimation.samplers.length && glTFAnimation.channels.length) {
  894. idleGLTFAnimations.push(glTFAnimation);
  895. }
  896. }
  897. }
  898. }
  899. }
  900. };
  901. /**
  902. * @ignore
  903. * Create node animations from the animation groups
  904. * @param babylonScene
  905. * @param glTFAnimations
  906. * @param nodeMap
  907. * @param nodes
  908. * @param binaryWriter
  909. * @param bufferViews
  910. * @param accessors
  911. * @param convertToRightHandedSystem
  912. */
  913. _GLTFAnimation._CreateNodeAnimationFromAnimationGroups = function (babylonScene, glTFAnimations, nodeMap, nodes, binaryWriter, bufferViews, accessors, convertToRightHandedSystem, animationSampleRate) {
  914. var glTFAnimation;
  915. if (babylonScene.animationGroups) {
  916. var animationGroups = babylonScene.animationGroups;
  917. for (var _i = 0, animationGroups_1 = animationGroups; _i < animationGroups_1.length; _i++) {
  918. var animationGroup = animationGroups_1[_i];
  919. glTFAnimation = {
  920. name: animationGroup.name,
  921. channels: [],
  922. samplers: []
  923. };
  924. for (var _a = 0, _b = animationGroup.targetedAnimations; _a < _b.length; _a++) {
  925. var targetAnimation = _b[_a];
  926. var target = targetAnimation.target;
  927. var animation = targetAnimation.animation;
  928. if (target instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Mesh"] || target.length === 1 && target[0] instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Mesh"]) { // TODO: Update to support bones
  929. var animationInfo = _GLTFAnimation._DeduceAnimationInfo(targetAnimation.animation);
  930. if (animationInfo) {
  931. var babylonMesh = target instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Mesh"] ? target : target[0];
  932. _GLTFAnimation.AddAnimation("" + animation.name, glTFAnimation, babylonMesh, animation, animationInfo.dataAccessorType, animationInfo.animationChannelTargetPath, nodeMap, binaryWriter, bufferViews, accessors, convertToRightHandedSystem, animationInfo.useQuaternion, animationSampleRate);
  933. }
  934. }
  935. }
  936. if (glTFAnimation.channels.length && glTFAnimation.samplers.length) {
  937. glTFAnimations.push(glTFAnimation);
  938. }
  939. }
  940. }
  941. };
  942. _GLTFAnimation.AddAnimation = function (name, glTFAnimation, babylonTransformNode, animation, dataAccessorType, animationChannelTargetPath, nodeMap, binaryWriter, bufferViews, accessors, convertToRightHandedSystem, useQuaternion, animationSampleRate) {
  943. var animationData = _GLTFAnimation._CreateNodeAnimation(babylonTransformNode, animation, animationChannelTargetPath, convertToRightHandedSystem, useQuaternion, animationSampleRate);
  944. var bufferView;
  945. var accessor;
  946. var keyframeAccessorIndex;
  947. var dataAccessorIndex;
  948. var outputLength;
  949. var animationSampler;
  950. var animationChannel;
  951. if (animationData) {
  952. var nodeIndex = nodeMap[babylonTransformNode.uniqueId];
  953. // Creates buffer view and accessor for key frames.
  954. var byteLength = animationData.inputs.length * 4;
  955. bufferView = _glTFUtilities__WEBPACK_IMPORTED_MODULE_1__["_GLTFUtilities"]._CreateBufferView(0, binaryWriter.getByteOffset(), byteLength, undefined, name + " keyframe data view");
  956. bufferViews.push(bufferView);
  957. animationData.inputs.forEach(function (input) {
  958. binaryWriter.setFloat32(input);
  959. });
  960. accessor = _glTFUtilities__WEBPACK_IMPORTED_MODULE_1__["_GLTFUtilities"]._CreateAccessor(bufferViews.length - 1, name + " keyframes", "SCALAR" /* SCALAR */, 5126 /* FLOAT */, animationData.inputs.length, null, [animationData.inputsMin], [animationData.inputsMax]);
  961. accessors.push(accessor);
  962. keyframeAccessorIndex = accessors.length - 1;
  963. // create bufferview and accessor for keyed values.
  964. outputLength = animationData.outputs.length;
  965. byteLength = dataAccessorType === "VEC3" /* VEC3 */ ? animationData.outputs.length * 12 : animationData.outputs.length * 16;
  966. // check for in and out tangents
  967. bufferView = _glTFUtilities__WEBPACK_IMPORTED_MODULE_1__["_GLTFUtilities"]._CreateBufferView(0, binaryWriter.getByteOffset(), byteLength, undefined, name + " data view");
  968. bufferViews.push(bufferView);
  969. animationData.outputs.forEach(function (output) {
  970. output.forEach(function (entry) {
  971. binaryWriter.setFloat32(entry);
  972. });
  973. });
  974. accessor = _glTFUtilities__WEBPACK_IMPORTED_MODULE_1__["_GLTFUtilities"]._CreateAccessor(bufferViews.length - 1, name + " data", dataAccessorType, 5126 /* FLOAT */, outputLength, null, null, null);
  975. accessors.push(accessor);
  976. dataAccessorIndex = accessors.length - 1;
  977. // create sampler
  978. animationSampler = {
  979. interpolation: animationData.samplerInterpolation,
  980. input: keyframeAccessorIndex,
  981. output: dataAccessorIndex
  982. };
  983. glTFAnimation.samplers.push(animationSampler);
  984. // create channel
  985. animationChannel = {
  986. sampler: glTFAnimation.samplers.length - 1,
  987. target: {
  988. node: nodeIndex,
  989. path: animationChannelTargetPath
  990. }
  991. };
  992. glTFAnimation.channels.push(animationChannel);
  993. }
  994. };
  995. /**
  996. * Create a baked animation
  997. * @param babylonTransformNode BabylonJS mesh
  998. * @param animation BabylonJS animation corresponding to the BabylonJS mesh
  999. * @param animationChannelTargetPath animation target channel
  1000. * @param minFrame minimum animation frame
  1001. * @param maxFrame maximum animation frame
  1002. * @param fps frames per second of the animation
  1003. * @param inputs input key frames of the animation
  1004. * @param outputs output key frame data of the animation
  1005. * @param convertToRightHandedSystem converts the values to right-handed
  1006. * @param useQuaternion specifies if quaternions should be used
  1007. */
  1008. _GLTFAnimation._CreateBakedAnimation = function (babylonTransformNode, animation, animationChannelTargetPath, minFrame, maxFrame, fps, sampleRate, inputs, outputs, minMaxFrames, convertToRightHandedSystem, useQuaternion) {
  1009. var value;
  1010. var quaternionCache = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].Identity();
  1011. var previousTime = null;
  1012. var time;
  1013. var maxUsedFrame = null;
  1014. var currKeyFrame = null;
  1015. var nextKeyFrame = null;
  1016. var prevKeyFrame = null;
  1017. var endFrame = null;
  1018. minMaxFrames.min = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].FloatRound(minFrame / fps);
  1019. var keyFrames = animation.getKeys();
  1020. for (var i = 0, length_1 = keyFrames.length; i < length_1; ++i) {
  1021. endFrame = null;
  1022. currKeyFrame = keyFrames[i];
  1023. if (i + 1 < length_1) {
  1024. nextKeyFrame = keyFrames[i + 1];
  1025. if (currKeyFrame.value.equals && currKeyFrame.value.equals(nextKeyFrame.value) || currKeyFrame.value === nextKeyFrame.value) {
  1026. if (i === 0) { // set the first frame to itself
  1027. endFrame = currKeyFrame.frame;
  1028. }
  1029. else {
  1030. continue;
  1031. }
  1032. }
  1033. else {
  1034. endFrame = nextKeyFrame.frame;
  1035. }
  1036. }
  1037. else {
  1038. // at the last key frame
  1039. prevKeyFrame = keyFrames[i - 1];
  1040. if (currKeyFrame.value.equals && currKeyFrame.value.equals(prevKeyFrame.value) || currKeyFrame.value === prevKeyFrame.value) {
  1041. continue;
  1042. }
  1043. else {
  1044. endFrame = maxFrame;
  1045. }
  1046. }
  1047. if (endFrame) {
  1048. for (var f = currKeyFrame.frame; f <= endFrame; f += sampleRate) {
  1049. time = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].FloatRound(f / fps);
  1050. if (time === previousTime) {
  1051. continue;
  1052. }
  1053. previousTime = time;
  1054. maxUsedFrame = time;
  1055. var state = {
  1056. key: 0,
  1057. repeatCount: 0,
  1058. loopMode: animation.loopMode
  1059. };
  1060. value = animation._interpolate(f, state);
  1061. _GLTFAnimation._SetInterpolatedValue(babylonTransformNode, value, time, animation, animationChannelTargetPath, quaternionCache, inputs, outputs, convertToRightHandedSystem, useQuaternion);
  1062. }
  1063. }
  1064. }
  1065. if (maxUsedFrame) {
  1066. minMaxFrames.max = maxUsedFrame;
  1067. }
  1068. };
  1069. _GLTFAnimation._ConvertFactorToVector3OrQuaternion = function (factor, babylonTransformNode, animation, animationType, animationChannelTargetPath, convertToRightHandedSystem, useQuaternion) {
  1070. var property;
  1071. var componentName;
  1072. var value = null;
  1073. var basePositionRotationOrScale = _GLTFAnimation._GetBasePositionRotationOrScale(babylonTransformNode, animationChannelTargetPath, convertToRightHandedSystem, useQuaternion);
  1074. if (animationType === babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Animation"].ANIMATIONTYPE_FLOAT) { // handles single component x, y, z or w component animation by using a base property and animating over a component.
  1075. property = animation.targetProperty.split('.');
  1076. componentName = property ? property[1] : ''; // x, y, or z component
  1077. value = useQuaternion ? babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].FromArray(basePositionRotationOrScale).normalize() : babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Vector3"].FromArray(basePositionRotationOrScale);
  1078. switch (componentName) {
  1079. case 'x': {
  1080. value[componentName] = (convertToRightHandedSystem && useQuaternion && (animationChannelTargetPath !== "scale" /* SCALE */)) ? -factor : factor;
  1081. break;
  1082. }
  1083. case 'y': {
  1084. value[componentName] = (convertToRightHandedSystem && useQuaternion && (animationChannelTargetPath !== "scale" /* SCALE */)) ? -factor : factor;
  1085. break;
  1086. }
  1087. case 'z': {
  1088. value[componentName] = (convertToRightHandedSystem && !useQuaternion && (animationChannelTargetPath !== "scale" /* SCALE */)) ? -factor : factor;
  1089. break;
  1090. }
  1091. case 'w': {
  1092. value.w = factor;
  1093. break;
  1094. }
  1095. default: {
  1096. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].Error("glTFAnimation: Unsupported component type \"" + componentName + "\" for scale animation!");
  1097. }
  1098. }
  1099. }
  1100. return value;
  1101. };
  1102. _GLTFAnimation._SetInterpolatedValue = function (babylonTransformNode, value, time, animation, animationChannelTargetPath, quaternionCache, inputs, outputs, convertToRightHandedSystem, useQuaternion) {
  1103. var animationType = animation.dataType;
  1104. var cacheValue;
  1105. inputs.push(time);
  1106. if (typeof value === "number") {
  1107. value = this._ConvertFactorToVector3OrQuaternion(value, babylonTransformNode, animation, animationType, animationChannelTargetPath, convertToRightHandedSystem, useQuaternion);
  1108. }
  1109. if (value) {
  1110. if (animationChannelTargetPath === "rotation" /* ROTATION */) {
  1111. if (useQuaternion) {
  1112. quaternionCache = value;
  1113. }
  1114. else {
  1115. cacheValue = value;
  1116. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].RotationYawPitchRollToRef(cacheValue.y, cacheValue.x, cacheValue.z, quaternionCache);
  1117. }
  1118. if (convertToRightHandedSystem) {
  1119. _glTFUtilities__WEBPACK_IMPORTED_MODULE_1__["_GLTFUtilities"]._GetRightHandedQuaternionFromRef(quaternionCache);
  1120. if (!babylonTransformNode.parent) {
  1121. quaternionCache = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].FromArray([0, 1, 0, 0]).multiply(quaternionCache);
  1122. }
  1123. }
  1124. outputs.push(quaternionCache.asArray());
  1125. }
  1126. else {
  1127. cacheValue = value;
  1128. if (convertToRightHandedSystem && (animationChannelTargetPath !== "scale" /* SCALE */)) {
  1129. _glTFUtilities__WEBPACK_IMPORTED_MODULE_1__["_GLTFUtilities"]._GetRightHandedPositionVector3FromRef(cacheValue);
  1130. if (!babylonTransformNode.parent) {
  1131. cacheValue.x *= -1;
  1132. cacheValue.z *= -1;
  1133. }
  1134. }
  1135. outputs.push(cacheValue.asArray());
  1136. }
  1137. }
  1138. };
  1139. /**
  1140. * Creates linear animation from the animation key frames
  1141. * @param babylonTransformNode BabylonJS mesh
  1142. * @param animation BabylonJS animation
  1143. * @param animationChannelTargetPath The target animation channel
  1144. * @param frameDelta The difference between the last and first frame of the animation
  1145. * @param inputs Array to store the key frame times
  1146. * @param outputs Array to store the key frame data
  1147. * @param convertToRightHandedSystem Specifies if the position data should be converted to right handed
  1148. * @param useQuaternion Specifies if quaternions are used in the animation
  1149. */
  1150. _GLTFAnimation._CreateLinearOrStepAnimation = function (babylonTransformNode, animation, animationChannelTargetPath, frameDelta, inputs, outputs, convertToRightHandedSystem, useQuaternion) {
  1151. for (var _i = 0, _a = animation.getKeys(); _i < _a.length; _i++) {
  1152. var keyFrame = _a[_i];
  1153. inputs.push(keyFrame.frame / animation.framePerSecond); // keyframes in seconds.
  1154. _GLTFAnimation._AddKeyframeValue(keyFrame, animation, outputs, animationChannelTargetPath, babylonTransformNode, convertToRightHandedSystem, useQuaternion);
  1155. }
  1156. };
  1157. /**
  1158. * Creates cubic spline animation from the animation key frames
  1159. * @param babylonTransformNode BabylonJS mesh
  1160. * @param animation BabylonJS animation
  1161. * @param animationChannelTargetPath The target animation channel
  1162. * @param frameDelta The difference between the last and first frame of the animation
  1163. * @param inputs Array to store the key frame times
  1164. * @param outputs Array to store the key frame data
  1165. * @param convertToRightHandedSystem Specifies if the position data should be converted to right handed
  1166. * @param useQuaternion Specifies if quaternions are used in the animation
  1167. */
  1168. _GLTFAnimation._CreateCubicSplineAnimation = function (babylonTransformNode, animation, animationChannelTargetPath, frameDelta, inputs, outputs, convertToRightHandedSystem, useQuaternion) {
  1169. animation.getKeys().forEach(function (keyFrame) {
  1170. inputs.push(keyFrame.frame / animation.framePerSecond); // keyframes in seconds.
  1171. _GLTFAnimation.AddSplineTangent(babylonTransformNode, _TangentType.INTANGENT, outputs, animationChannelTargetPath, "CUBICSPLINE" /* CUBICSPLINE */, keyFrame, frameDelta, useQuaternion, convertToRightHandedSystem);
  1172. _GLTFAnimation._AddKeyframeValue(keyFrame, animation, outputs, animationChannelTargetPath, babylonTransformNode, convertToRightHandedSystem, useQuaternion);
  1173. _GLTFAnimation.AddSplineTangent(babylonTransformNode, _TangentType.OUTTANGENT, outputs, animationChannelTargetPath, "CUBICSPLINE" /* CUBICSPLINE */, keyFrame, frameDelta, useQuaternion, convertToRightHandedSystem);
  1174. });
  1175. };
  1176. _GLTFAnimation._GetBasePositionRotationOrScale = function (babylonTransformNode, animationChannelTargetPath, convertToRightHandedSystem, useQuaternion) {
  1177. var basePositionRotationOrScale;
  1178. if (animationChannelTargetPath === "rotation" /* ROTATION */) {
  1179. if (useQuaternion) {
  1180. if (babylonTransformNode.rotationQuaternion) {
  1181. basePositionRotationOrScale = babylonTransformNode.rotationQuaternion.asArray();
  1182. if (convertToRightHandedSystem) {
  1183. _glTFUtilities__WEBPACK_IMPORTED_MODULE_1__["_GLTFUtilities"]._GetRightHandedQuaternionArrayFromRef(basePositionRotationOrScale);
  1184. if (!babylonTransformNode.parent) {
  1185. basePositionRotationOrScale = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].FromArray([0, 1, 0, 0]).multiply(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].FromArray(basePositionRotationOrScale)).asArray();
  1186. }
  1187. }
  1188. }
  1189. else {
  1190. basePositionRotationOrScale = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].Identity().asArray();
  1191. }
  1192. }
  1193. else {
  1194. basePositionRotationOrScale = babylonTransformNode.rotation.asArray();
  1195. _glTFUtilities__WEBPACK_IMPORTED_MODULE_1__["_GLTFUtilities"]._GetRightHandedNormalArray3FromRef(basePositionRotationOrScale);
  1196. }
  1197. }
  1198. else if (animationChannelTargetPath === "translation" /* TRANSLATION */) {
  1199. basePositionRotationOrScale = babylonTransformNode.position.asArray();
  1200. if (convertToRightHandedSystem) {
  1201. _glTFUtilities__WEBPACK_IMPORTED_MODULE_1__["_GLTFUtilities"]._GetRightHandedPositionArray3FromRef(basePositionRotationOrScale);
  1202. }
  1203. }
  1204. else { // scale
  1205. basePositionRotationOrScale = babylonTransformNode.scaling.asArray();
  1206. }
  1207. return basePositionRotationOrScale;
  1208. };
  1209. /**
  1210. * Adds a key frame value
  1211. * @param keyFrame
  1212. * @param animation
  1213. * @param outputs
  1214. * @param animationChannelTargetPath
  1215. * @param basePositionRotationOrScale
  1216. * @param convertToRightHandedSystem
  1217. * @param useQuaternion
  1218. */
  1219. _GLTFAnimation._AddKeyframeValue = function (keyFrame, animation, outputs, animationChannelTargetPath, babylonTransformNode, convertToRightHandedSystem, useQuaternion) {
  1220. var value;
  1221. var newPositionRotationOrScale;
  1222. var animationType = animation.dataType;
  1223. if (animationType === babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Animation"].ANIMATIONTYPE_VECTOR3) {
  1224. value = keyFrame.value.asArray();
  1225. if (animationChannelTargetPath === "rotation" /* ROTATION */) {
  1226. var array = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Vector3"].FromArray(value);
  1227. var rotationQuaternion = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].RotationYawPitchRoll(array.y, array.x, array.z);
  1228. if (convertToRightHandedSystem) {
  1229. _glTFUtilities__WEBPACK_IMPORTED_MODULE_1__["_GLTFUtilities"]._GetRightHandedQuaternionFromRef(rotationQuaternion);
  1230. if (!babylonTransformNode.parent) {
  1231. rotationQuaternion = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].FromArray([0, 1, 0, 0]).multiply(rotationQuaternion);
  1232. }
  1233. }
  1234. value = rotationQuaternion.asArray();
  1235. }
  1236. else if (animationChannelTargetPath === "translation" /* TRANSLATION */) {
  1237. if (convertToRightHandedSystem) {
  1238. _glTFUtilities__WEBPACK_IMPORTED_MODULE_1__["_GLTFUtilities"]._GetRightHandedNormalArray3FromRef(value);
  1239. if (!babylonTransformNode.parent) {
  1240. value[0] *= -1;
  1241. value[2] *= -1;
  1242. }
  1243. }
  1244. }
  1245. outputs.push(value); // scale vector.
  1246. }
  1247. else if (animationType === babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Animation"].ANIMATIONTYPE_FLOAT) { // handles single component x, y, z or w component animation by using a base property and animating over a component.
  1248. newPositionRotationOrScale = this._ConvertFactorToVector3OrQuaternion(keyFrame.value, babylonTransformNode, animation, animationType, animationChannelTargetPath, convertToRightHandedSystem, useQuaternion);
  1249. if (newPositionRotationOrScale) {
  1250. if (animationChannelTargetPath === "rotation" /* ROTATION */) {
  1251. var posRotScale = useQuaternion ? newPositionRotationOrScale : babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].RotationYawPitchRoll(newPositionRotationOrScale.y, newPositionRotationOrScale.x, newPositionRotationOrScale.z).normalize();
  1252. if (convertToRightHandedSystem) {
  1253. _glTFUtilities__WEBPACK_IMPORTED_MODULE_1__["_GLTFUtilities"]._GetRightHandedQuaternionFromRef(posRotScale);
  1254. if (!babylonTransformNode.parent) {
  1255. posRotScale = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].FromArray([0, 1, 0, 0]).multiply(posRotScale);
  1256. }
  1257. }
  1258. outputs.push(posRotScale.asArray());
  1259. }
  1260. else if (animationChannelTargetPath === "translation" /* TRANSLATION */) {
  1261. if (convertToRightHandedSystem) {
  1262. _glTFUtilities__WEBPACK_IMPORTED_MODULE_1__["_GLTFUtilities"]._GetRightHandedNormalVector3FromRef(newPositionRotationOrScale);
  1263. if (!babylonTransformNode.parent) {
  1264. newPositionRotationOrScale.x *= -1;
  1265. newPositionRotationOrScale.z *= -1;
  1266. }
  1267. }
  1268. }
  1269. outputs.push(newPositionRotationOrScale.asArray());
  1270. }
  1271. }
  1272. else if (animationType === babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Animation"].ANIMATIONTYPE_QUATERNION) {
  1273. value = keyFrame.value.normalize().asArray();
  1274. if (convertToRightHandedSystem) {
  1275. _glTFUtilities__WEBPACK_IMPORTED_MODULE_1__["_GLTFUtilities"]._GetRightHandedQuaternionArrayFromRef(value);
  1276. if (!babylonTransformNode.parent) {
  1277. value = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].FromArray([0, 1, 0, 0]).multiply(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].FromArray(value)).asArray();
  1278. }
  1279. }
  1280. outputs.push(value);
  1281. }
  1282. else {
  1283. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].Error('glTFAnimation: Unsupported key frame values for animation!');
  1284. }
  1285. };
  1286. /**
  1287. * Determine the interpolation based on the key frames
  1288. * @param keyFrames
  1289. * @param animationChannelTargetPath
  1290. * @param useQuaternion
  1291. */
  1292. _GLTFAnimation._DeduceInterpolation = function (keyFrames, animationChannelTargetPath, useQuaternion) {
  1293. var interpolationType;
  1294. var shouldBakeAnimation = false;
  1295. var key;
  1296. if (animationChannelTargetPath === "rotation" /* ROTATION */ && !useQuaternion) {
  1297. return { interpolationType: "LINEAR" /* LINEAR */, shouldBakeAnimation: true };
  1298. }
  1299. for (var i = 0, length_2 = keyFrames.length; i < length_2; ++i) {
  1300. key = keyFrames[i];
  1301. if (key.inTangent || key.outTangent) {
  1302. if (interpolationType) {
  1303. if (interpolationType !== "CUBICSPLINE" /* CUBICSPLINE */) {
  1304. interpolationType = "LINEAR" /* LINEAR */;
  1305. shouldBakeAnimation = true;
  1306. break;
  1307. }
  1308. }
  1309. else {
  1310. interpolationType = "CUBICSPLINE" /* CUBICSPLINE */;
  1311. }
  1312. }
  1313. else {
  1314. if (interpolationType) {
  1315. if (interpolationType === "CUBICSPLINE" /* CUBICSPLINE */ ||
  1316. (key.interpolation && (key.interpolation === babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["AnimationKeyInterpolation"].STEP) && interpolationType !== "STEP" /* STEP */)) {
  1317. interpolationType = "LINEAR" /* LINEAR */;
  1318. shouldBakeAnimation = true;
  1319. break;
  1320. }
  1321. }
  1322. else {
  1323. if (key.interpolation && (key.interpolation === babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["AnimationKeyInterpolation"].STEP)) {
  1324. interpolationType = "STEP" /* STEP */;
  1325. }
  1326. else {
  1327. interpolationType = "LINEAR" /* LINEAR */;
  1328. }
  1329. }
  1330. }
  1331. }
  1332. if (!interpolationType) {
  1333. interpolationType = "LINEAR" /* LINEAR */;
  1334. }
  1335. return { interpolationType: interpolationType, shouldBakeAnimation: shouldBakeAnimation };
  1336. };
  1337. /**
  1338. * Adds an input tangent or output tangent to the output data
  1339. * If an input tangent or output tangent is missing, it uses the zero vector or zero quaternion
  1340. * @param tangentType Specifies which type of tangent to handle (inTangent or outTangent)
  1341. * @param outputs The animation data by keyframe
  1342. * @param animationChannelTargetPath The target animation channel
  1343. * @param interpolation The interpolation type
  1344. * @param keyFrame The key frame with the animation data
  1345. * @param frameDelta Time difference between two frames used to scale the tangent by the frame delta
  1346. * @param useQuaternion Specifies if quaternions are used
  1347. * @param convertToRightHandedSystem Specifies if the values should be converted to right-handed
  1348. */
  1349. _GLTFAnimation.AddSplineTangent = function (babylonTransformNode, tangentType, outputs, animationChannelTargetPath, interpolation, keyFrame, frameDelta, useQuaternion, convertToRightHandedSystem) {
  1350. var tangent;
  1351. var tangentValue = tangentType === _TangentType.INTANGENT ? keyFrame.inTangent : keyFrame.outTangent;
  1352. if (interpolation === "CUBICSPLINE" /* CUBICSPLINE */) {
  1353. if (animationChannelTargetPath === "rotation" /* ROTATION */) {
  1354. if (tangentValue) {
  1355. if (useQuaternion) {
  1356. tangent = tangentValue.scale(frameDelta).asArray();
  1357. }
  1358. else {
  1359. var array = tangentValue.scale(frameDelta);
  1360. tangent = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].RotationYawPitchRoll(array.y, array.x, array.z).asArray();
  1361. }
  1362. if (convertToRightHandedSystem) {
  1363. _glTFUtilities__WEBPACK_IMPORTED_MODULE_1__["_GLTFUtilities"]._GetRightHandedQuaternionArrayFromRef(tangent);
  1364. if (!babylonTransformNode.parent) {
  1365. tangent = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].FromArray([0, 1, 0, 0]).multiply(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Quaternion"].FromArray(tangent)).asArray();
  1366. }
  1367. }
  1368. }
  1369. else {
  1370. tangent = [0, 0, 0, 0];
  1371. }
  1372. }
  1373. else {
  1374. if (tangentValue) {
  1375. tangent = tangentValue.scale(frameDelta).asArray();
  1376. if (convertToRightHandedSystem) {
  1377. if (animationChannelTargetPath === "translation" /* TRANSLATION */) {
  1378. _glTFUtilities__WEBPACK_IMPORTED_MODULE_1__["_GLTFUtilities"]._GetRightHandedPositionArray3FromRef(tangent);
  1379. if (!babylonTransformNode.parent) {
  1380. tangent[0] *= -1; // x
  1381. tangent[2] *= -1; // z
  1382. }
  1383. }
  1384. }
  1385. }
  1386. else {
  1387. tangent = [0, 0, 0];
  1388. }
  1389. }
  1390. outputs.push(tangent);
  1391. }
  1392. };
  1393. /**
  1394. * Get the minimum and maximum key frames' frame values
  1395. * @param keyFrames animation key frames
  1396. * @returns the minimum and maximum key frame value
  1397. */
  1398. _GLTFAnimation.calculateMinMaxKeyFrames = function (keyFrames) {
  1399. var min = Infinity;
  1400. var max = -Infinity;
  1401. keyFrames.forEach(function (keyFrame) {
  1402. min = Math.min(min, keyFrame.frame);
  1403. max = Math.max(max, keyFrame.frame);
  1404. });
  1405. return { min: min, max: max };
  1406. };
  1407. return _GLTFAnimation;
  1408. }());
  1409. /***/ }),
  1410. /***/ "./glTF/2.0/glTFData.ts":
  1411. /*!******************************!*\
  1412. !*** ./glTF/2.0/glTFData.ts ***!
  1413. \******************************/
  1414. /*! exports provided: GLTFData */
  1415. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  1416. "use strict";
  1417. __webpack_require__.r(__webpack_exports__);
  1418. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GLTFData", function() { return GLTFData; });
  1419. /**
  1420. * Class for holding and downloading glTF file data
  1421. */
  1422. var GLTFData = /** @class */ (function () {
  1423. /**
  1424. * Initializes the glTF file object
  1425. */
  1426. function GLTFData() {
  1427. this.glTFFiles = {};
  1428. }
  1429. /**
  1430. * Downloads the glTF data as files based on their names and data
  1431. */
  1432. GLTFData.prototype.downloadFiles = function () {
  1433. /**
  1434. * Checks for a matching suffix at the end of a string (for ES5 and lower)
  1435. * @param str Source string
  1436. * @param suffix Suffix to search for in the source string
  1437. * @returns Boolean indicating whether the suffix was found (true) or not (false)
  1438. */
  1439. function endsWith(str, suffix) {
  1440. return str.indexOf(suffix, str.length - suffix.length) !== -1;
  1441. }
  1442. for (var key in this.glTFFiles) {
  1443. var link = document.createElement('a');
  1444. document.body.appendChild(link);
  1445. link.setAttribute("type", "hidden");
  1446. link.download = key;
  1447. var blob = this.glTFFiles[key];
  1448. var mimeType = void 0;
  1449. if (endsWith(key, ".glb")) {
  1450. mimeType = { type: "model/gltf-binary" };
  1451. }
  1452. else if (endsWith(key, ".bin")) {
  1453. mimeType = { type: "application/octet-stream" };
  1454. }
  1455. else if (endsWith(key, ".gltf")) {
  1456. mimeType = { type: "model/gltf+json" };
  1457. }
  1458. else if (endsWith(key, ".jpeg" || false)) {
  1459. mimeType = { type: "image/jpeg" /* JPEG */ };
  1460. }
  1461. else if (endsWith(key, ".png")) {
  1462. mimeType = { type: "image/png" /* PNG */ };
  1463. }
  1464. link.href = window.URL.createObjectURL(new Blob([blob], mimeType));
  1465. link.click();
  1466. }
  1467. };
  1468. return GLTFData;
  1469. }());
  1470. /***/ }),
  1471. /***/ "./glTF/2.0/glTFExporter.ts":
  1472. /*!**********************************!*\
  1473. !*** ./glTF/2.0/glTFExporter.ts ***!
  1474. \**********************************/
  1475. /*! exports provided: _Exporter, _BinaryWriter */
  1476. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  1477. "use strict";
  1478. __webpack_require__.r(__webpack_exports__);
  1479. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "_Exporter", function() { return _Exporter; });
  1480. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "_BinaryWriter", function() { return _BinaryWriter; });
  1481. /* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
  1482. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! babylonjs/Maths/math */ "babylonjs/Maths/math");
  1483. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__);
  1484. /* harmony import */ var _glTFMaterialExporter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./glTFMaterialExporter */ "./glTF/2.0/glTFMaterialExporter.ts");
  1485. /* harmony import */ var _glTFUtilities__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./glTFUtilities */ "./glTF/2.0/glTFUtilities.ts");
  1486. /* harmony import */ var _glTFData__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./glTFData */ "./glTF/2.0/glTFData.ts");
  1487. /* harmony import */ var _glTFAnimation__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./glTFAnimation */ "./glTF/2.0/glTFAnimation.ts");
  1488. /**
  1489. * Converts Babylon Scene into glTF 2.0.
  1490. * @hidden
  1491. */
  1492. var _Exporter = /** @class */ (function () {
  1493. /**
  1494. * Creates a glTF Exporter instance, which can accept optional exporter options
  1495. * @param babylonScene Babylon scene object
  1496. * @param options Options to modify the behavior of the exporter
  1497. */
  1498. function _Exporter(babylonScene, options) {
  1499. this._extensions = {};
  1500. this._glTF = {
  1501. asset: { generator: "BabylonJS", version: "2.0" }
  1502. };
  1503. this._babylonScene = babylonScene;
  1504. this._bufferViews = [];
  1505. this._accessors = [];
  1506. this._meshes = [];
  1507. this._scenes = [];
  1508. this._nodes = [];
  1509. this._images = [];
  1510. this._materials = [];
  1511. this._materialMap = [];
  1512. this._textures = [];
  1513. this._samplers = [];
  1514. this._animations = [];
  1515. this._imageData = {};
  1516. this._convertToRightHandedSystem = !this._babylonScene.useRightHandedSystem;
  1517. this._options = options || {};
  1518. this._animationSampleRate = options && options.animationSampleRate ? options.animationSampleRate : 1 / 60;
  1519. this._glTFMaterialExporter = new _glTFMaterialExporter__WEBPACK_IMPORTED_MODULE_2__["_GLTFMaterialExporter"](this);
  1520. this._loadExtensions();
  1521. }
  1522. _Exporter.prototype._applyExtensions = function (property, actionAsync) {
  1523. for (var _i = 0, _a = _Exporter._ExtensionNames; _i < _a.length; _i++) {
  1524. var name_1 = _a[_i];
  1525. var extension = this._extensions[name_1];
  1526. if (extension.enabled) {
  1527. var exporterProperty = property;
  1528. exporterProperty._activeLoaderExtensions = exporterProperty._activeLoaderExtensions || {};
  1529. var activeLoaderExtensions = exporterProperty._activeLoaderExtensions;
  1530. if (!activeLoaderExtensions[name_1]) {
  1531. activeLoaderExtensions[name_1] = true;
  1532. try {
  1533. var result = actionAsync(extension);
  1534. if (result) {
  1535. return result;
  1536. }
  1537. }
  1538. finally {
  1539. delete activeLoaderExtensions[name_1];
  1540. delete exporterProperty._activeLoaderExtensions;
  1541. }
  1542. }
  1543. }
  1544. }
  1545. return null;
  1546. };
  1547. _Exporter.prototype._extensionsPreExportTextureAsync = function (context, babylonTexture, mimeType) {
  1548. return this._applyExtensions(babylonTexture, function (extension) { return extension.preExportTextureAsync && extension.preExportTextureAsync(context, babylonTexture, mimeType); });
  1549. };
  1550. _Exporter.prototype._extensionsPostExportMeshPrimitiveAsync = function (context, meshPrimitive, babylonSubMesh, binaryWriter) {
  1551. return this._applyExtensions(meshPrimitive, function (extension) { return extension.postExportMeshPrimitiveAsync && extension.postExportMeshPrimitiveAsync(context, meshPrimitive, babylonSubMesh, binaryWriter); });
  1552. };
  1553. _Exporter.prototype._extensionsPostExportNodeAsync = function (context, node, babylonNode) {
  1554. return this._applyExtensions(node, function (extension) { return extension.postExportNodeAsync && extension.postExportNodeAsync(context, node, babylonNode); });
  1555. };
  1556. _Exporter.prototype._forEachExtensions = function (action) {
  1557. for (var _i = 0, _a = _Exporter._ExtensionNames; _i < _a.length; _i++) {
  1558. var name_2 = _a[_i];
  1559. var extension = this._extensions[name_2];
  1560. if (extension.enabled) {
  1561. action(extension);
  1562. }
  1563. }
  1564. };
  1565. _Exporter.prototype._extensionsOnExporting = function () {
  1566. this._forEachExtensions(function (extension) { return extension.onExporting && extension.onExporting(); });
  1567. };
  1568. /**
  1569. * Load glTF serializer extensions
  1570. */
  1571. _Exporter.prototype._loadExtensions = function () {
  1572. for (var _i = 0, _a = _Exporter._ExtensionNames; _i < _a.length; _i++) {
  1573. var name_3 = _a[_i];
  1574. var extension = _Exporter._ExtensionFactories[name_3](this);
  1575. this._extensions[name_3] = extension;
  1576. }
  1577. };
  1578. /**
  1579. * Registers a glTF exporter extension
  1580. * @param name Name of the extension to export
  1581. * @param factory The factory function that creates the exporter extension
  1582. */
  1583. _Exporter.RegisterExtension = function (name, factory) {
  1584. if (_Exporter.UnregisterExtension(name)) {
  1585. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Warn("Extension with the name " + name + " already exists");
  1586. }
  1587. _Exporter._ExtensionFactories[name] = factory;
  1588. _Exporter._ExtensionNames.push(name);
  1589. };
  1590. /**
  1591. * Un-registers an exporter extension
  1592. * @param name The name fo the exporter extension
  1593. * @returns A boolean indicating whether the extension has been un-registered
  1594. */
  1595. _Exporter.UnregisterExtension = function (name) {
  1596. if (!_Exporter._ExtensionFactories[name]) {
  1597. return false;
  1598. }
  1599. delete _Exporter._ExtensionFactories[name];
  1600. var index = _Exporter._ExtensionNames.indexOf(name);
  1601. if (index !== -1) {
  1602. _Exporter._ExtensionNames.splice(index, 1);
  1603. }
  1604. return true;
  1605. };
  1606. /**
  1607. * Lazy load a local engine with premultiplied alpha set to false
  1608. */
  1609. _Exporter.prototype._getLocalEngine = function () {
  1610. if (!this._localEngine) {
  1611. var localCanvas = document.createElement('canvas');
  1612. localCanvas.id = "WriteCanvas";
  1613. localCanvas.width = 2048;
  1614. localCanvas.height = 2048;
  1615. this._localEngine = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Engine"](localCanvas, true, { premultipliedAlpha: false, preserveDrawingBuffer: true });
  1616. this._localEngine.setViewport(new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Viewport"](0, 0, 1, 1));
  1617. }
  1618. return this._localEngine;
  1619. };
  1620. _Exporter.prototype.reorderIndicesBasedOnPrimitiveMode = function (submesh, primitiveMode, babylonIndices, byteOffset, binaryWriter) {
  1621. switch (primitiveMode) {
  1622. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].TriangleFillMode: {
  1623. if (!byteOffset) {
  1624. byteOffset = 0;
  1625. }
  1626. for (var i = submesh.indexStart, length_1 = submesh.indexStart + submesh.indexCount; i < length_1; i = i + 3) {
  1627. var index = byteOffset + i * 4;
  1628. // swap the second and third indices
  1629. var secondIndex = binaryWriter.getUInt32(index + 4);
  1630. var thirdIndex = binaryWriter.getUInt32(index + 8);
  1631. binaryWriter.setUInt32(thirdIndex, index + 4);
  1632. binaryWriter.setUInt32(secondIndex, index + 8);
  1633. }
  1634. break;
  1635. }
  1636. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].TriangleFanDrawMode: {
  1637. for (var i = submesh.indexStart + submesh.indexCount - 1, start = submesh.indexStart; i >= start; --i) {
  1638. binaryWriter.setUInt32(babylonIndices[i], byteOffset);
  1639. byteOffset += 4;
  1640. }
  1641. break;
  1642. }
  1643. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].TriangleStripDrawMode: {
  1644. if (submesh.indexCount >= 3) {
  1645. binaryWriter.setUInt32(babylonIndices[submesh.indexStart + 2], byteOffset + 4);
  1646. binaryWriter.setUInt32(babylonIndices[submesh.indexStart + 1], byteOffset + 8);
  1647. }
  1648. break;
  1649. }
  1650. }
  1651. };
  1652. /**
  1653. * Reorders the vertex attribute data based on the primitive mode. This is necessary when indices are not available and the winding order is
  1654. * clock-wise during export to glTF
  1655. * @param submesh BabylonJS submesh
  1656. * @param primitiveMode Primitive mode of the mesh
  1657. * @param sideOrientation the winding order of the submesh
  1658. * @param vertexBufferKind The type of vertex attribute
  1659. * @param meshAttributeArray The vertex attribute data
  1660. * @param byteOffset The offset to the binary data
  1661. * @param binaryWriter The binary data for the glTF file
  1662. */
  1663. _Exporter.prototype.reorderVertexAttributeDataBasedOnPrimitiveMode = function (submesh, primitiveMode, sideOrientation, vertexBufferKind, meshAttributeArray, byteOffset, binaryWriter) {
  1664. if (this._convertToRightHandedSystem && sideOrientation === babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].ClockWiseSideOrientation) {
  1665. switch (primitiveMode) {
  1666. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].TriangleFillMode: {
  1667. this.reorderTriangleFillMode(submesh, primitiveMode, sideOrientation, vertexBufferKind, meshAttributeArray, byteOffset, binaryWriter);
  1668. break;
  1669. }
  1670. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].TriangleStripDrawMode: {
  1671. this.reorderTriangleStripDrawMode(submesh, primitiveMode, sideOrientation, vertexBufferKind, meshAttributeArray, byteOffset, binaryWriter);
  1672. break;
  1673. }
  1674. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].TriangleFanDrawMode: {
  1675. this.reorderTriangleFanMode(submesh, primitiveMode, sideOrientation, vertexBufferKind, meshAttributeArray, byteOffset, binaryWriter);
  1676. break;
  1677. }
  1678. }
  1679. }
  1680. };
  1681. /**
  1682. * Reorders the vertex attributes in the correct triangle mode order . This is necessary when indices are not available and the winding order is
  1683. * clock-wise during export to glTF
  1684. * @param submesh BabylonJS submesh
  1685. * @param primitiveMode Primitive mode of the mesh
  1686. * @param sideOrientation the winding order of the submesh
  1687. * @param vertexBufferKind The type of vertex attribute
  1688. * @param meshAttributeArray The vertex attribute data
  1689. * @param byteOffset The offset to the binary data
  1690. * @param binaryWriter The binary data for the glTF file
  1691. */
  1692. _Exporter.prototype.reorderTriangleFillMode = function (submesh, primitiveMode, sideOrientation, vertexBufferKind, meshAttributeArray, byteOffset, binaryWriter) {
  1693. var vertexBuffer = this.getVertexBufferFromMesh(vertexBufferKind, submesh.getMesh());
  1694. if (vertexBuffer) {
  1695. var stride = vertexBuffer.byteStride / babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].GetTypeByteLength(vertexBuffer.type);
  1696. if (submesh.verticesCount % 3 !== 0) {
  1697. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error('The submesh vertices for the triangle fill mode is not divisible by 3!');
  1698. }
  1699. else {
  1700. var vertexData = [];
  1701. var index = 0;
  1702. switch (vertexBufferKind) {
  1703. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].PositionKind:
  1704. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].NormalKind: {
  1705. for (var x = submesh.verticesStart; x < submesh.verticesStart + submesh.verticesCount; x = x + 3) {
  1706. index = x * stride;
  1707. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(meshAttributeArray, index));
  1708. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(meshAttributeArray, index + 2 * stride));
  1709. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(meshAttributeArray, index + stride));
  1710. }
  1711. break;
  1712. }
  1713. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].TangentKind: {
  1714. for (var x = submesh.verticesStart; x < submesh.verticesStart + submesh.verticesCount; x = x + 3) {
  1715. index = x * stride;
  1716. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector4"].FromArray(meshAttributeArray, index));
  1717. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector4"].FromArray(meshAttributeArray, index + 2 * stride));
  1718. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector4"].FromArray(meshAttributeArray, index + stride));
  1719. }
  1720. break;
  1721. }
  1722. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].ColorKind: {
  1723. var size = vertexBuffer.getSize();
  1724. for (var x = submesh.verticesStart; x < submesh.verticesStart + submesh.verticesCount; x = x + size) {
  1725. index = x * stride;
  1726. if (size === 4) {
  1727. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector4"].FromArray(meshAttributeArray, index));
  1728. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector4"].FromArray(meshAttributeArray, index + 2 * stride));
  1729. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector4"].FromArray(meshAttributeArray, index + stride));
  1730. }
  1731. else {
  1732. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(meshAttributeArray, index));
  1733. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(meshAttributeArray, index + 2 * stride));
  1734. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(meshAttributeArray, index + stride));
  1735. }
  1736. }
  1737. break;
  1738. }
  1739. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].UVKind:
  1740. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].UV2Kind: {
  1741. for (var x = submesh.verticesStart; x < submesh.verticesStart + submesh.verticesCount; x = x + 3) {
  1742. index = x * stride;
  1743. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector2"].FromArray(meshAttributeArray, index));
  1744. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector2"].FromArray(meshAttributeArray, index + 2 * stride));
  1745. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector2"].FromArray(meshAttributeArray, index + stride));
  1746. }
  1747. break;
  1748. }
  1749. default: {
  1750. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error("Unsupported Vertex Buffer type: " + vertexBufferKind);
  1751. }
  1752. }
  1753. this.writeVertexAttributeData(vertexData, byteOffset, vertexBufferKind, meshAttributeArray, binaryWriter);
  1754. }
  1755. }
  1756. else {
  1757. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Warn("reorderTriangleFillMode: Vertex Buffer Kind " + vertexBufferKind + " not present!");
  1758. }
  1759. };
  1760. /**
  1761. * Reorders the vertex attributes in the correct triangle strip order. This is necessary when indices are not available and the winding order is
  1762. * clock-wise during export to glTF
  1763. * @param submesh BabylonJS submesh
  1764. * @param primitiveMode Primitive mode of the mesh
  1765. * @param sideOrientation the winding order of the submesh
  1766. * @param vertexBufferKind The type of vertex attribute
  1767. * @param meshAttributeArray The vertex attribute data
  1768. * @param byteOffset The offset to the binary data
  1769. * @param binaryWriter The binary data for the glTF file
  1770. */
  1771. _Exporter.prototype.reorderTriangleStripDrawMode = function (submesh, primitiveMode, sideOrientation, vertexBufferKind, meshAttributeArray, byteOffset, binaryWriter) {
  1772. var vertexBuffer = this.getVertexBufferFromMesh(vertexBufferKind, submesh.getMesh());
  1773. if (vertexBuffer) {
  1774. var stride = vertexBuffer.byteStride / babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].GetTypeByteLength(vertexBuffer.type);
  1775. var vertexData = [];
  1776. var index = 0;
  1777. switch (vertexBufferKind) {
  1778. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].PositionKind:
  1779. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].NormalKind: {
  1780. index = submesh.verticesStart;
  1781. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(meshAttributeArray, index + 2 * stride));
  1782. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(meshAttributeArray, index + stride));
  1783. break;
  1784. }
  1785. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].TangentKind: {
  1786. for (var x = submesh.verticesStart + submesh.verticesCount - 1; x >= submesh.verticesStart; --x) {
  1787. index = x * stride;
  1788. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector4"].FromArray(meshAttributeArray, index));
  1789. }
  1790. break;
  1791. }
  1792. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].ColorKind: {
  1793. for (var x = submesh.verticesStart + submesh.verticesCount - 1; x >= submesh.verticesStart; --x) {
  1794. index = x * stride;
  1795. vertexBuffer.getSize() === 4 ? vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector4"].FromArray(meshAttributeArray, index)) : vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(meshAttributeArray, index));
  1796. }
  1797. break;
  1798. }
  1799. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].UVKind:
  1800. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].UV2Kind: {
  1801. for (var x = submesh.verticesStart + submesh.verticesCount - 1; x >= submesh.verticesStart; --x) {
  1802. index = x * stride;
  1803. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector2"].FromArray(meshAttributeArray, index));
  1804. }
  1805. break;
  1806. }
  1807. default: {
  1808. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error("Unsupported Vertex Buffer type: " + vertexBufferKind);
  1809. }
  1810. }
  1811. this.writeVertexAttributeData(vertexData, byteOffset + 12, vertexBufferKind, meshAttributeArray, binaryWriter);
  1812. }
  1813. else {
  1814. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Warn("reorderTriangleStripDrawMode: Vertex buffer kind " + vertexBufferKind + " not present!");
  1815. }
  1816. };
  1817. /**
  1818. * Reorders the vertex attributes in the correct triangle fan order. This is necessary when indices are not available and the winding order is
  1819. * clock-wise during export to glTF
  1820. * @param submesh BabylonJS submesh
  1821. * @param primitiveMode Primitive mode of the mesh
  1822. * @param sideOrientation the winding order of the submesh
  1823. * @param vertexBufferKind The type of vertex attribute
  1824. * @param meshAttributeArray The vertex attribute data
  1825. * @param byteOffset The offset to the binary data
  1826. * @param binaryWriter The binary data for the glTF file
  1827. */
  1828. _Exporter.prototype.reorderTriangleFanMode = function (submesh, primitiveMode, sideOrientation, vertexBufferKind, meshAttributeArray, byteOffset, binaryWriter) {
  1829. var vertexBuffer = this.getVertexBufferFromMesh(vertexBufferKind, submesh.getMesh());
  1830. if (vertexBuffer) {
  1831. var stride = vertexBuffer.byteStride / babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].GetTypeByteLength(vertexBuffer.type);
  1832. var vertexData = [];
  1833. var index = 0;
  1834. switch (vertexBufferKind) {
  1835. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].PositionKind:
  1836. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].NormalKind: {
  1837. for (var x = submesh.verticesStart + submesh.verticesCount - 1; x >= submesh.verticesStart; --x) {
  1838. index = x * stride;
  1839. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(meshAttributeArray, index));
  1840. }
  1841. break;
  1842. }
  1843. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].TangentKind: {
  1844. for (var x = submesh.verticesStart + submesh.verticesCount - 1; x >= submesh.verticesStart; --x) {
  1845. index = x * stride;
  1846. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector4"].FromArray(meshAttributeArray, index));
  1847. }
  1848. break;
  1849. }
  1850. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].ColorKind: {
  1851. for (var x = submesh.verticesStart + submesh.verticesCount - 1; x >= submesh.verticesStart; --x) {
  1852. index = x * stride;
  1853. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector4"].FromArray(meshAttributeArray, index));
  1854. vertexBuffer.getSize() === 4 ? vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector4"].FromArray(meshAttributeArray, index)) : vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(meshAttributeArray, index));
  1855. }
  1856. break;
  1857. }
  1858. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].UVKind:
  1859. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].UV2Kind: {
  1860. for (var x = submesh.verticesStart + submesh.verticesCount - 1; x >= submesh.verticesStart; --x) {
  1861. index = x * stride;
  1862. vertexData.push(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector2"].FromArray(meshAttributeArray, index));
  1863. }
  1864. break;
  1865. }
  1866. default: {
  1867. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error("Unsupported Vertex Buffer type: " + vertexBufferKind);
  1868. }
  1869. }
  1870. this.writeVertexAttributeData(vertexData, byteOffset, vertexBufferKind, meshAttributeArray, binaryWriter);
  1871. }
  1872. else {
  1873. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Warn("reorderTriangleFanMode: Vertex buffer kind " + vertexBufferKind + " not present!");
  1874. }
  1875. };
  1876. /**
  1877. * Writes the vertex attribute data to binary
  1878. * @param vertices The vertices to write to the binary writer
  1879. * @param byteOffset The offset into the binary writer to overwrite binary data
  1880. * @param vertexAttributeKind The vertex attribute type
  1881. * @param meshAttributeArray The vertex attribute data
  1882. * @param binaryWriter The writer containing the binary data
  1883. */
  1884. _Exporter.prototype.writeVertexAttributeData = function (vertices, byteOffset, vertexAttributeKind, meshAttributeArray, binaryWriter) {
  1885. for (var _i = 0, vertices_1 = vertices; _i < vertices_1.length; _i++) {
  1886. var vertex = vertices_1[_i];
  1887. if (this._convertToRightHandedSystem && !(vertexAttributeKind === babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].ColorKind) && !(vertex instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector2"])) {
  1888. if (vertex instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"]) {
  1889. if (vertexAttributeKind === babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].NormalKind) {
  1890. _glTFUtilities__WEBPACK_IMPORTED_MODULE_3__["_GLTFUtilities"]._GetRightHandedNormalVector3FromRef(vertex);
  1891. }
  1892. else if (vertexAttributeKind === babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].PositionKind) {
  1893. _glTFUtilities__WEBPACK_IMPORTED_MODULE_3__["_GLTFUtilities"]._GetRightHandedPositionVector3FromRef(vertex);
  1894. }
  1895. else {
  1896. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error('Unsupported vertex attribute kind!');
  1897. }
  1898. }
  1899. else {
  1900. _glTFUtilities__WEBPACK_IMPORTED_MODULE_3__["_GLTFUtilities"]._GetRightHandedVector4FromRef(vertex);
  1901. }
  1902. }
  1903. if (vertexAttributeKind === babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].NormalKind) {
  1904. vertex.normalize();
  1905. }
  1906. else if (vertexAttributeKind === babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].TangentKind && vertex instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector4"]) {
  1907. _glTFUtilities__WEBPACK_IMPORTED_MODULE_3__["_GLTFUtilities"]._NormalizeTangentFromRef(vertex);
  1908. }
  1909. for (var _a = 0, _b = vertex.asArray(); _a < _b.length; _a++) {
  1910. var component = _b[_a];
  1911. binaryWriter.setFloat32(component, byteOffset);
  1912. byteOffset += 4;
  1913. }
  1914. }
  1915. };
  1916. /**
  1917. * Writes mesh attribute data to a data buffer
  1918. * Returns the bytelength of the data
  1919. * @param vertexBufferKind Indicates what kind of vertex data is being passed in
  1920. * @param meshAttributeArray Array containing the attribute data
  1921. * @param binaryWriter The buffer to write the binary data to
  1922. * @param indices Used to specify the order of the vertex data
  1923. */
  1924. _Exporter.prototype.writeAttributeData = function (vertexBufferKind, meshAttributeArray, byteStride, binaryWriter) {
  1925. var stride = byteStride / 4;
  1926. var vertexAttributes = [];
  1927. var index;
  1928. switch (vertexBufferKind) {
  1929. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].PositionKind: {
  1930. for (var k = 0, length_2 = meshAttributeArray.length / stride; k < length_2; ++k) {
  1931. index = k * stride;
  1932. var vertexData = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(meshAttributeArray, index);
  1933. if (this._convertToRightHandedSystem) {
  1934. _glTFUtilities__WEBPACK_IMPORTED_MODULE_3__["_GLTFUtilities"]._GetRightHandedPositionVector3FromRef(vertexData);
  1935. }
  1936. vertexAttributes.push(vertexData.asArray());
  1937. }
  1938. break;
  1939. }
  1940. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].NormalKind: {
  1941. for (var k = 0, length_3 = meshAttributeArray.length / stride; k < length_3; ++k) {
  1942. index = k * stride;
  1943. var vertexData = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(meshAttributeArray, index);
  1944. if (this._convertToRightHandedSystem) {
  1945. _glTFUtilities__WEBPACK_IMPORTED_MODULE_3__["_GLTFUtilities"]._GetRightHandedNormalVector3FromRef(vertexData);
  1946. }
  1947. vertexData.normalize();
  1948. vertexAttributes.push(vertexData.asArray());
  1949. }
  1950. break;
  1951. }
  1952. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].TangentKind: {
  1953. for (var k = 0, length_4 = meshAttributeArray.length / stride; k < length_4; ++k) {
  1954. index = k * stride;
  1955. var vertexData = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector4"].FromArray(meshAttributeArray, index);
  1956. if (this._convertToRightHandedSystem) {
  1957. _glTFUtilities__WEBPACK_IMPORTED_MODULE_3__["_GLTFUtilities"]._GetRightHandedVector4FromRef(vertexData);
  1958. }
  1959. _glTFUtilities__WEBPACK_IMPORTED_MODULE_3__["_GLTFUtilities"]._NormalizeTangentFromRef(vertexData);
  1960. vertexAttributes.push(vertexData.asArray());
  1961. }
  1962. break;
  1963. }
  1964. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].ColorKind: {
  1965. for (var k = 0, length_5 = meshAttributeArray.length / stride; k < length_5; ++k) {
  1966. index = k * stride;
  1967. var vertexData = stride === 3 ? babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector3"].FromArray(meshAttributeArray, index) : babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Vector4"].FromArray(meshAttributeArray, index);
  1968. vertexAttributes.push(vertexData.asArray());
  1969. }
  1970. break;
  1971. }
  1972. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].UVKind:
  1973. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].UV2Kind: {
  1974. for (var k = 0, length_6 = meshAttributeArray.length / stride; k < length_6; ++k) {
  1975. index = k * stride;
  1976. vertexAttributes.push(this._convertToRightHandedSystem ? [meshAttributeArray[index], meshAttributeArray[index + 1]] : [meshAttributeArray[index], meshAttributeArray[index + 1]]);
  1977. }
  1978. break;
  1979. }
  1980. default: {
  1981. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Warn("Unsupported Vertex Buffer Type: " + vertexBufferKind);
  1982. vertexAttributes = [];
  1983. }
  1984. }
  1985. for (var _i = 0, vertexAttributes_1 = vertexAttributes; _i < vertexAttributes_1.length; _i++) {
  1986. var vertexAttribute = vertexAttributes_1[_i];
  1987. for (var _a = 0, vertexAttribute_1 = vertexAttribute; _a < vertexAttribute_1.length; _a++) {
  1988. var component = vertexAttribute_1[_a];
  1989. binaryWriter.setFloat32(component);
  1990. }
  1991. }
  1992. };
  1993. /**
  1994. * Generates glTF json data
  1995. * @param shouldUseGlb Indicates whether the json should be written for a glb file
  1996. * @param glTFPrefix Text to use when prefixing a glTF file
  1997. * @param prettyPrint Indicates whether the json file should be pretty printed (true) or not (false)
  1998. * @returns json data as string
  1999. */
  2000. _Exporter.prototype.generateJSON = function (shouldUseGlb, glTFPrefix, prettyPrint) {
  2001. var _this = this;
  2002. var buffer = { byteLength: this._totalByteLength };
  2003. var imageName;
  2004. var imageData;
  2005. var bufferView;
  2006. var byteOffset = this._totalByteLength;
  2007. if (buffer.byteLength) {
  2008. this._glTF.buffers = [buffer];
  2009. }
  2010. if (this._nodes && this._nodes.length) {
  2011. this._glTF.nodes = this._nodes;
  2012. }
  2013. if (this._meshes && this._meshes.length) {
  2014. this._glTF.meshes = this._meshes;
  2015. }
  2016. if (this._scenes && this._scenes.length) {
  2017. this._glTF.scenes = this._scenes;
  2018. this._glTF.scene = 0;
  2019. }
  2020. if (this._bufferViews && this._bufferViews.length) {
  2021. this._glTF.bufferViews = this._bufferViews;
  2022. }
  2023. if (this._accessors && this._accessors.length) {
  2024. this._glTF.accessors = this._accessors;
  2025. }
  2026. if (this._animations && this._animations.length) {
  2027. this._glTF.animations = this._animations;
  2028. }
  2029. if (this._materials && this._materials.length) {
  2030. this._glTF.materials = this._materials;
  2031. }
  2032. if (this._textures && this._textures.length) {
  2033. this._glTF.textures = this._textures;
  2034. }
  2035. if (this._samplers && this._samplers.length) {
  2036. this._glTF.samplers = this._samplers;
  2037. }
  2038. if (this._images && this._images.length) {
  2039. if (!shouldUseGlb) {
  2040. this._glTF.images = this._images;
  2041. }
  2042. else {
  2043. this._glTF.images = [];
  2044. this._images.forEach(function (image) {
  2045. if (image.uri) {
  2046. imageData = _this._imageData[image.uri];
  2047. imageName = image.uri.split('.')[0] + " image";
  2048. bufferView = _glTFUtilities__WEBPACK_IMPORTED_MODULE_3__["_GLTFUtilities"]._CreateBufferView(0, byteOffset, imageData.data.length, undefined, imageName);
  2049. byteOffset += imageData.data.buffer.byteLength;
  2050. _this._bufferViews.push(bufferView);
  2051. image.bufferView = _this._bufferViews.length - 1;
  2052. image.name = imageName;
  2053. image.mimeType = imageData.mimeType;
  2054. image.uri = undefined;
  2055. if (!_this._glTF.images) {
  2056. _this._glTF.images = [];
  2057. }
  2058. _this._glTF.images.push(image);
  2059. }
  2060. });
  2061. // Replace uri with bufferview and mime type for glb
  2062. buffer.byteLength = byteOffset;
  2063. }
  2064. }
  2065. if (!shouldUseGlb) {
  2066. buffer.uri = glTFPrefix + ".bin";
  2067. }
  2068. var jsonText = prettyPrint ? JSON.stringify(this._glTF, null, 2) : JSON.stringify(this._glTF);
  2069. return jsonText;
  2070. };
  2071. /**
  2072. * Generates data for .gltf and .bin files based on the glTF prefix string
  2073. * @param glTFPrefix Text to use when prefixing a glTF file
  2074. * @returns GLTFData with glTF file data
  2075. */
  2076. _Exporter.prototype._generateGLTFAsync = function (glTFPrefix) {
  2077. var _this = this;
  2078. return this._generateBinaryAsync().then(function (binaryBuffer) {
  2079. _this._extensionsOnExporting();
  2080. var jsonText = _this.generateJSON(false, glTFPrefix, true);
  2081. var bin = new Blob([binaryBuffer], { type: 'application/octet-stream' });
  2082. var glTFFileName = glTFPrefix + '.gltf';
  2083. var glTFBinFile = glTFPrefix + '.bin';
  2084. var container = new _glTFData__WEBPACK_IMPORTED_MODULE_4__["GLTFData"]();
  2085. container.glTFFiles[glTFFileName] = jsonText;
  2086. container.glTFFiles[glTFBinFile] = bin;
  2087. if (_this._imageData) {
  2088. for (var image in _this._imageData) {
  2089. container.glTFFiles[image] = new Blob([_this._imageData[image].data], { type: _this._imageData[image].mimeType });
  2090. }
  2091. }
  2092. return container;
  2093. });
  2094. };
  2095. /**
  2096. * Creates a binary buffer for glTF
  2097. * @returns array buffer for binary data
  2098. */
  2099. _Exporter.prototype._generateBinaryAsync = function () {
  2100. var _this = this;
  2101. var binaryWriter = new _BinaryWriter(4);
  2102. return this.createSceneAsync(this._babylonScene, binaryWriter).then(function () {
  2103. if (_this._localEngine) {
  2104. _this._localEngine.dispose();
  2105. }
  2106. return binaryWriter.getArrayBuffer();
  2107. });
  2108. };
  2109. /**
  2110. * Pads the number to a multiple of 4
  2111. * @param num number to pad
  2112. * @returns padded number
  2113. */
  2114. _Exporter.prototype._getPadding = function (num) {
  2115. var remainder = num % 4;
  2116. var padding = remainder === 0 ? remainder : 4 - remainder;
  2117. return padding;
  2118. };
  2119. /**
  2120. * Generates a glb file from the json and binary data
  2121. * Returns an object with the glb file name as the key and data as the value
  2122. * @param glTFPrefix
  2123. * @returns object with glb filename as key and data as value
  2124. */
  2125. _Exporter.prototype._generateGLBAsync = function (glTFPrefix) {
  2126. var _this = this;
  2127. return this._generateBinaryAsync().then(function (binaryBuffer) {
  2128. _this._extensionsOnExporting();
  2129. var jsonText = _this.generateJSON(true);
  2130. var glbFileName = glTFPrefix + '.glb';
  2131. var headerLength = 12;
  2132. var chunkLengthPrefix = 8;
  2133. var jsonLength = jsonText.length;
  2134. var imageByteLength = 0;
  2135. for (var key in _this._imageData) {
  2136. imageByteLength += _this._imageData[key].data.byteLength;
  2137. }
  2138. var jsonPadding = _this._getPadding(jsonLength);
  2139. var binPadding = _this._getPadding(binaryBuffer.byteLength);
  2140. var imagePadding = _this._getPadding(imageByteLength);
  2141. var byteLength = headerLength + (2 * chunkLengthPrefix) + jsonLength + jsonPadding + binaryBuffer.byteLength + binPadding + imageByteLength + imagePadding;
  2142. //header
  2143. var headerBuffer = new ArrayBuffer(headerLength);
  2144. var headerBufferView = new DataView(headerBuffer);
  2145. headerBufferView.setUint32(0, 0x46546C67, true); //glTF
  2146. headerBufferView.setUint32(4, 2, true); // version
  2147. headerBufferView.setUint32(8, byteLength, true); // total bytes in file
  2148. //json chunk
  2149. var jsonChunkBuffer = new ArrayBuffer(chunkLengthPrefix + jsonLength + jsonPadding);
  2150. var jsonChunkBufferView = new DataView(jsonChunkBuffer);
  2151. jsonChunkBufferView.setUint32(0, jsonLength + jsonPadding, true);
  2152. jsonChunkBufferView.setUint32(4, 0x4E4F534A, true);
  2153. //json chunk bytes
  2154. var jsonData = new Uint8Array(jsonChunkBuffer, chunkLengthPrefix);
  2155. for (var i = 0; i < jsonLength; ++i) {
  2156. jsonData[i] = jsonText.charCodeAt(i);
  2157. }
  2158. //json padding
  2159. var jsonPaddingView = new Uint8Array(jsonChunkBuffer, chunkLengthPrefix + jsonLength);
  2160. for (var i = 0; i < jsonPadding; ++i) {
  2161. jsonPaddingView[i] = 0x20;
  2162. }
  2163. //binary chunk
  2164. var binaryChunkBuffer = new ArrayBuffer(chunkLengthPrefix);
  2165. var binaryChunkBufferView = new DataView(binaryChunkBuffer);
  2166. binaryChunkBufferView.setUint32(0, binaryBuffer.byteLength + imageByteLength + imagePadding, true);
  2167. binaryChunkBufferView.setUint32(4, 0x004E4942, true);
  2168. // binary padding
  2169. var binPaddingBuffer = new ArrayBuffer(binPadding);
  2170. var binPaddingView = new Uint8Array(binPaddingBuffer);
  2171. for (var i = 0; i < binPadding; ++i) {
  2172. binPaddingView[i] = 0;
  2173. }
  2174. var imagePaddingBuffer = new ArrayBuffer(imagePadding);
  2175. var imagePaddingView = new Uint8Array(imagePaddingBuffer);
  2176. for (var i = 0; i < imagePadding; ++i) {
  2177. imagePaddingView[i] = 0;
  2178. }
  2179. var glbData = [headerBuffer, jsonChunkBuffer, binaryChunkBuffer, binaryBuffer];
  2180. // binary data
  2181. for (var key in _this._imageData) {
  2182. glbData.push(_this._imageData[key].data.buffer);
  2183. }
  2184. glbData.push(binPaddingBuffer);
  2185. glbData.push(imagePaddingBuffer);
  2186. var glbFile = new Blob(glbData, { type: 'application/octet-stream' });
  2187. var container = new _glTFData__WEBPACK_IMPORTED_MODULE_4__["GLTFData"]();
  2188. container.glTFFiles[glbFileName] = glbFile;
  2189. if (_this._localEngine != null) {
  2190. _this._localEngine.dispose();
  2191. }
  2192. return container;
  2193. });
  2194. };
  2195. /**
  2196. * Sets the TRS for each node
  2197. * @param node glTF Node for storing the transformation data
  2198. * @param babylonTransformNode Babylon mesh used as the source for the transformation data
  2199. */
  2200. _Exporter.prototype.setNodeTransformation = function (node, babylonTransformNode) {
  2201. if (!babylonTransformNode.getPivotPoint().equalsToFloats(0, 0, 0)) {
  2202. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Warn("Pivot points are not supported in the glTF serializer");
  2203. }
  2204. if (!babylonTransformNode.position.equalsToFloats(0, 0, 0)) {
  2205. node.translation = this._convertToRightHandedSystem ? _glTFUtilities__WEBPACK_IMPORTED_MODULE_3__["_GLTFUtilities"]._GetRightHandedPositionVector3(babylonTransformNode.position).asArray() : babylonTransformNode.position.asArray();
  2206. }
  2207. if (!babylonTransformNode.scaling.equalsToFloats(1, 1, 1)) {
  2208. node.scale = babylonTransformNode.scaling.asArray();
  2209. }
  2210. var rotationQuaternion = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Quaternion"].RotationYawPitchRoll(babylonTransformNode.rotation.y, babylonTransformNode.rotation.x, babylonTransformNode.rotation.z);
  2211. if (babylonTransformNode.rotationQuaternion) {
  2212. rotationQuaternion.multiplyInPlace(babylonTransformNode.rotationQuaternion);
  2213. }
  2214. if (!(rotationQuaternion.x === 0 && rotationQuaternion.y === 0 && rotationQuaternion.z === 0 && rotationQuaternion.w === 1)) {
  2215. if (this._convertToRightHandedSystem) {
  2216. _glTFUtilities__WEBPACK_IMPORTED_MODULE_3__["_GLTFUtilities"]._GetRightHandedQuaternionFromRef(rotationQuaternion);
  2217. }
  2218. node.rotation = rotationQuaternion.normalize().asArray();
  2219. }
  2220. };
  2221. _Exporter.prototype.getVertexBufferFromMesh = function (attributeKind, bufferMesh) {
  2222. if (bufferMesh.isVerticesDataPresent(attributeKind)) {
  2223. var vertexBuffer = bufferMesh.getVertexBuffer(attributeKind);
  2224. if (vertexBuffer) {
  2225. return vertexBuffer;
  2226. }
  2227. }
  2228. return null;
  2229. };
  2230. /**
  2231. * Creates a bufferview based on the vertices type for the Babylon mesh
  2232. * @param kind Indicates the type of vertices data
  2233. * @param babylonTransformNode The Babylon mesh to get the vertices data from
  2234. * @param binaryWriter The buffer to write the bufferview data to
  2235. */
  2236. _Exporter.prototype.createBufferViewKind = function (kind, babylonTransformNode, binaryWriter, byteStride) {
  2237. var bufferMesh = babylonTransformNode instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Mesh"] ?
  2238. babylonTransformNode : babylonTransformNode instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["InstancedMesh"] ?
  2239. babylonTransformNode.sourceMesh : null;
  2240. if (bufferMesh) {
  2241. var vertexData = bufferMesh.getVerticesData(kind);
  2242. if (vertexData) {
  2243. var byteLength = vertexData.length * 4;
  2244. var bufferView = _glTFUtilities__WEBPACK_IMPORTED_MODULE_3__["_GLTFUtilities"]._CreateBufferView(0, binaryWriter.getByteOffset(), byteLength, byteStride, kind + " - " + bufferMesh.name);
  2245. this._bufferViews.push(bufferView);
  2246. this.writeAttributeData(kind, vertexData, byteStride, binaryWriter);
  2247. }
  2248. }
  2249. };
  2250. /**
  2251. * The primitive mode of the Babylon mesh
  2252. * @param babylonMesh The BabylonJS mesh
  2253. */
  2254. _Exporter.prototype.getMeshPrimitiveMode = function (babylonMesh) {
  2255. if (babylonMesh instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["LinesMesh"]) {
  2256. return babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].LineListDrawMode;
  2257. }
  2258. return babylonMesh.material ? babylonMesh.material.fillMode : babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].TriangleFillMode;
  2259. };
  2260. /**
  2261. * Sets the primitive mode of the glTF mesh primitive
  2262. * @param meshPrimitive glTF mesh primitive
  2263. * @param primitiveMode The primitive mode
  2264. */
  2265. _Exporter.prototype.setPrimitiveMode = function (meshPrimitive, primitiveMode) {
  2266. switch (primitiveMode) {
  2267. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].TriangleFillMode: {
  2268. // glTF defaults to using Triangle Mode
  2269. break;
  2270. }
  2271. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].TriangleStripDrawMode: {
  2272. meshPrimitive.mode = 5 /* TRIANGLE_STRIP */;
  2273. break;
  2274. }
  2275. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].TriangleFanDrawMode: {
  2276. meshPrimitive.mode = 6 /* TRIANGLE_FAN */;
  2277. break;
  2278. }
  2279. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].PointListDrawMode: {
  2280. meshPrimitive.mode = 0 /* POINTS */;
  2281. }
  2282. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].PointFillMode: {
  2283. meshPrimitive.mode = 0 /* POINTS */;
  2284. break;
  2285. }
  2286. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].LineLoopDrawMode: {
  2287. meshPrimitive.mode = 2 /* LINE_LOOP */;
  2288. break;
  2289. }
  2290. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].LineListDrawMode: {
  2291. meshPrimitive.mode = 1 /* LINES */;
  2292. break;
  2293. }
  2294. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].LineStripDrawMode: {
  2295. meshPrimitive.mode = 3 /* LINE_STRIP */;
  2296. break;
  2297. }
  2298. }
  2299. };
  2300. /**
  2301. * Sets the vertex attribute accessor based of the glTF mesh primitive
  2302. * @param meshPrimitive glTF mesh primitive
  2303. * @param attributeKind vertex attribute
  2304. * @returns boolean specifying if uv coordinates are present
  2305. */
  2306. _Exporter.prototype.setAttributeKind = function (meshPrimitive, attributeKind) {
  2307. switch (attributeKind) {
  2308. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].PositionKind: {
  2309. meshPrimitive.attributes.POSITION = this._accessors.length - 1;
  2310. break;
  2311. }
  2312. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].NormalKind: {
  2313. meshPrimitive.attributes.NORMAL = this._accessors.length - 1;
  2314. break;
  2315. }
  2316. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].ColorKind: {
  2317. meshPrimitive.attributes.COLOR_0 = this._accessors.length - 1;
  2318. break;
  2319. }
  2320. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].TangentKind: {
  2321. meshPrimitive.attributes.TANGENT = this._accessors.length - 1;
  2322. break;
  2323. }
  2324. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].UVKind: {
  2325. meshPrimitive.attributes.TEXCOORD_0 = this._accessors.length - 1;
  2326. break;
  2327. }
  2328. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].UV2Kind: {
  2329. meshPrimitive.attributes.TEXCOORD_1 = this._accessors.length - 1;
  2330. break;
  2331. }
  2332. default: {
  2333. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Warn("Unsupported Vertex Buffer Type: " + attributeKind);
  2334. }
  2335. }
  2336. };
  2337. /**
  2338. * Sets data for the primitive attributes of each submesh
  2339. * @param mesh glTF Mesh object to store the primitive attribute information
  2340. * @param babylonTransformNode Babylon mesh to get the primitive attribute data from
  2341. * @param binaryWriter Buffer to write the attribute data to
  2342. */
  2343. _Exporter.prototype.setPrimitiveAttributesAsync = function (mesh, babylonTransformNode, binaryWriter) {
  2344. var promises = [];
  2345. var bufferMesh = null;
  2346. var bufferView;
  2347. var minMax;
  2348. if (babylonTransformNode instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Mesh"]) {
  2349. bufferMesh = babylonTransformNode;
  2350. }
  2351. else if (babylonTransformNode instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["InstancedMesh"]) {
  2352. bufferMesh = babylonTransformNode.sourceMesh;
  2353. }
  2354. var attributeData = [
  2355. { kind: babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].PositionKind, accessorType: "VEC3" /* VEC3 */, byteStride: 12 },
  2356. { kind: babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].NormalKind, accessorType: "VEC3" /* VEC3 */, byteStride: 12 },
  2357. { kind: babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].ColorKind, accessorType: "VEC4" /* VEC4 */, byteStride: 16 },
  2358. { kind: babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].TangentKind, accessorType: "VEC4" /* VEC4 */, byteStride: 16 },
  2359. { kind: babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].UVKind, accessorType: "VEC2" /* VEC2 */, byteStride: 8 },
  2360. { kind: babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].UV2Kind, accessorType: "VEC2" /* VEC2 */, byteStride: 8 },
  2361. ];
  2362. if (bufferMesh) {
  2363. var indexBufferViewIndex = null;
  2364. var primitiveMode = this.getMeshPrimitiveMode(bufferMesh);
  2365. var vertexAttributeBufferViews = {};
  2366. // For each BabylonMesh, create bufferviews for each 'kind'
  2367. for (var _i = 0, attributeData_1 = attributeData; _i < attributeData_1.length; _i++) {
  2368. var attribute = attributeData_1[_i];
  2369. var attributeKind = attribute.kind;
  2370. if (bufferMesh.isVerticesDataPresent(attributeKind)) {
  2371. var vertexBuffer = this.getVertexBufferFromMesh(attributeKind, bufferMesh);
  2372. attribute.byteStride = vertexBuffer ? vertexBuffer.getSize() * 4 : babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].DeduceStride(attributeKind) * 4;
  2373. if (attribute.byteStride === 12) {
  2374. attribute.accessorType = "VEC3" /* VEC3 */;
  2375. }
  2376. this.createBufferViewKind(attributeKind, babylonTransformNode, binaryWriter, attribute.byteStride);
  2377. attribute.bufferViewIndex = this._bufferViews.length - 1;
  2378. vertexAttributeBufferViews[attributeKind] = attribute.bufferViewIndex;
  2379. }
  2380. }
  2381. if (bufferMesh.getTotalIndices()) {
  2382. var indices = bufferMesh.getIndices();
  2383. if (indices) {
  2384. var byteLength = indices.length * 4;
  2385. bufferView = _glTFUtilities__WEBPACK_IMPORTED_MODULE_3__["_GLTFUtilities"]._CreateBufferView(0, binaryWriter.getByteOffset(), byteLength, undefined, "Indices - " + bufferMesh.name);
  2386. this._bufferViews.push(bufferView);
  2387. indexBufferViewIndex = this._bufferViews.length - 1;
  2388. for (var k = 0, length_7 = indices.length; k < length_7; ++k) {
  2389. binaryWriter.setUInt32(indices[k]);
  2390. }
  2391. }
  2392. }
  2393. if (bufferMesh.subMeshes) {
  2394. // go through all mesh primitives (submeshes)
  2395. for (var _a = 0, _b = bufferMesh.subMeshes; _a < _b.length; _a++) {
  2396. var submesh = _b[_a];
  2397. var babylonMaterial = submesh.getMaterial() || bufferMesh.getScene().defaultMaterial;
  2398. var materialIndex = null;
  2399. if (babylonMaterial) {
  2400. if (bufferMesh instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["LinesMesh"]) {
  2401. // get the color from the lines mesh and set it in the material
  2402. var material = {
  2403. name: bufferMesh.name + ' material'
  2404. };
  2405. if (!bufferMesh.color.equals(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Color3"].White()) || bufferMesh.alpha < 1) {
  2406. material.pbrMetallicRoughness = {
  2407. baseColorFactor: bufferMesh.color.asArray().concat([bufferMesh.alpha])
  2408. };
  2409. }
  2410. this._materials.push(material);
  2411. materialIndex = this._materials.length - 1;
  2412. }
  2413. else if (babylonMaterial instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["MultiMaterial"]) {
  2414. var subMaterial = babylonMaterial.subMaterials[submesh.materialIndex];
  2415. if (subMaterial) {
  2416. babylonMaterial = subMaterial;
  2417. materialIndex = this._materialMap[babylonMaterial.uniqueId];
  2418. }
  2419. }
  2420. else {
  2421. materialIndex = this._materialMap[babylonMaterial.uniqueId];
  2422. }
  2423. }
  2424. var glTFMaterial = materialIndex != null ? this._materials[materialIndex] : null;
  2425. var meshPrimitive = { attributes: {} };
  2426. this.setPrimitiveMode(meshPrimitive, primitiveMode);
  2427. for (var _c = 0, attributeData_2 = attributeData; _c < attributeData_2.length; _c++) {
  2428. var attribute = attributeData_2[_c];
  2429. var attributeKind = attribute.kind;
  2430. if (attributeKind === babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].UVKind || attributeKind === babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].UV2Kind) {
  2431. if (glTFMaterial && !this._glTFMaterialExporter._hasTexturesPresent(glTFMaterial)) {
  2432. continue;
  2433. }
  2434. }
  2435. var vertexData = bufferMesh.getVerticesData(attributeKind);
  2436. if (vertexData) {
  2437. var vertexBuffer = this.getVertexBufferFromMesh(attributeKind, bufferMesh);
  2438. if (vertexBuffer) {
  2439. var stride = vertexBuffer.getSize();
  2440. var bufferViewIndex = attribute.bufferViewIndex;
  2441. if (bufferViewIndex != undefined) { // check to see if bufferviewindex has a numeric value assigned.
  2442. minMax = { min: null, max: null };
  2443. if (attributeKind == babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["VertexBuffer"].PositionKind) {
  2444. minMax = _glTFUtilities__WEBPACK_IMPORTED_MODULE_3__["_GLTFUtilities"]._CalculateMinMaxPositions(vertexData, 0, vertexData.length / stride, this._convertToRightHandedSystem);
  2445. }
  2446. var accessor = _glTFUtilities__WEBPACK_IMPORTED_MODULE_3__["_GLTFUtilities"]._CreateAccessor(bufferViewIndex, attributeKind + " - " + babylonTransformNode.name, attribute.accessorType, 5126 /* FLOAT */, vertexData.length / stride, 0, minMax.min, minMax.max);
  2447. this._accessors.push(accessor);
  2448. this.setAttributeKind(meshPrimitive, attributeKind);
  2449. }
  2450. }
  2451. }
  2452. }
  2453. if (indexBufferViewIndex) {
  2454. // Create accessor
  2455. var accessor = _glTFUtilities__WEBPACK_IMPORTED_MODULE_3__["_GLTFUtilities"]._CreateAccessor(indexBufferViewIndex, "indices - " + babylonTransformNode.name, "SCALAR" /* SCALAR */, 5125 /* UNSIGNED_INT */, submesh.indexCount, submesh.indexStart * 4, null, null);
  2456. this._accessors.push(accessor);
  2457. meshPrimitive.indices = this._accessors.length - 1;
  2458. }
  2459. if (materialIndex != null && Object.keys(meshPrimitive.attributes).length > 0) {
  2460. var sideOrientation = bufferMesh.overrideMaterialSideOrientation !== null ? bufferMesh.overrideMaterialSideOrientation : babylonMaterial.sideOrientation;
  2461. // Only reverse the winding if we have a clockwise winding
  2462. if (sideOrientation === babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Material"].ClockWiseSideOrientation) {
  2463. var byteOffset = indexBufferViewIndex != null ? this._bufferViews[indexBufferViewIndex].byteOffset : null;
  2464. if (byteOffset == null) {
  2465. byteOffset = 0;
  2466. }
  2467. var babylonIndices = null;
  2468. if (indexBufferViewIndex != null) {
  2469. babylonIndices = bufferMesh.getIndices();
  2470. }
  2471. if (babylonIndices) {
  2472. this.reorderIndicesBasedOnPrimitiveMode(submesh, primitiveMode, babylonIndices, byteOffset, binaryWriter);
  2473. }
  2474. else {
  2475. for (var _d = 0, attributeData_3 = attributeData; _d < attributeData_3.length; _d++) {
  2476. var attribute = attributeData_3[_d];
  2477. var vertexData = bufferMesh.getVerticesData(attribute.kind);
  2478. if (vertexData) {
  2479. var byteOffset_1 = this._bufferViews[vertexAttributeBufferViews[attribute.kind]].byteOffset;
  2480. if (!byteOffset_1) {
  2481. byteOffset_1 = 0;
  2482. }
  2483. this.reorderVertexAttributeDataBasedOnPrimitiveMode(submesh, primitiveMode, sideOrientation, attribute.kind, vertexData, byteOffset_1, binaryWriter);
  2484. }
  2485. }
  2486. }
  2487. }
  2488. meshPrimitive.material = materialIndex;
  2489. }
  2490. mesh.primitives.push(meshPrimitive);
  2491. var promise = this._extensionsPostExportMeshPrimitiveAsync("postExport", meshPrimitive, submesh, binaryWriter);
  2492. if (promise) {
  2493. promises.push();
  2494. }
  2495. }
  2496. }
  2497. }
  2498. return Promise.all(promises).then(function () {
  2499. /* do nothing */
  2500. });
  2501. };
  2502. /**
  2503. * Creates a glTF scene based on the array of meshes
  2504. * Returns the the total byte offset
  2505. * @param babylonScene Babylon scene to get the mesh data from
  2506. * @param binaryWriter Buffer to write binary data to
  2507. */
  2508. _Exporter.prototype.createSceneAsync = function (babylonScene, binaryWriter) {
  2509. var _this = this;
  2510. var scene = { nodes: [] };
  2511. var glTFNodeIndex;
  2512. var glTFNode;
  2513. var directDescendents;
  2514. var nodes = Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__spreadArrays"])(babylonScene.transformNodes, babylonScene.meshes, babylonScene.lights);
  2515. return this._glTFMaterialExporter._convertMaterialsToGLTFAsync(babylonScene.materials, "image/png" /* PNG */, true).then(function () {
  2516. return _this.createNodeMapAndAnimationsAsync(babylonScene, nodes, binaryWriter).then(function (nodeMap) {
  2517. _this._nodeMap = nodeMap;
  2518. _this._totalByteLength = binaryWriter.getByteOffset();
  2519. if (_this._totalByteLength == undefined) {
  2520. throw new Error("undefined byte length!");
  2521. }
  2522. // Build Hierarchy with the node map.
  2523. for (var _i = 0, nodes_1 = nodes; _i < nodes_1.length; _i++) {
  2524. var babylonNode = nodes_1[_i];
  2525. glTFNodeIndex = _this._nodeMap[babylonNode.uniqueId];
  2526. if (glTFNodeIndex !== undefined) {
  2527. glTFNode = _this._nodes[glTFNodeIndex];
  2528. if (babylonNode.metadata) {
  2529. if (_this._options.metadataSelector) {
  2530. glTFNode.extras = _this._options.metadataSelector(babylonNode.metadata);
  2531. }
  2532. else if (babylonNode.metadata.gltf) {
  2533. glTFNode.extras = babylonNode.metadata.gltf.extras;
  2534. }
  2535. }
  2536. if (!babylonNode.parent) {
  2537. if (_this._options.shouldExportNode && !_this._options.shouldExportNode(babylonNode)) {
  2538. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Log("Omitting " + babylonNode.name + " from scene.");
  2539. }
  2540. else {
  2541. if (_this._convertToRightHandedSystem) {
  2542. if (glTFNode.translation) {
  2543. glTFNode.translation[2] *= -1;
  2544. glTFNode.translation[0] *= -1;
  2545. }
  2546. glTFNode.rotation = glTFNode.rotation ? babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Quaternion"].FromArray([0, 1, 0, 0]).multiply(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Quaternion"].FromArray(glTFNode.rotation)).asArray() : (babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Quaternion"].FromArray([0, 1, 0, 0])).asArray();
  2547. }
  2548. scene.nodes.push(glTFNodeIndex);
  2549. }
  2550. }
  2551. directDescendents = babylonNode.getDescendants(true);
  2552. if (!glTFNode.children && directDescendents && directDescendents.length) {
  2553. var children = [];
  2554. for (var _a = 0, directDescendents_1 = directDescendents; _a < directDescendents_1.length; _a++) {
  2555. var descendent = directDescendents_1[_a];
  2556. if (_this._nodeMap[descendent.uniqueId] != null) {
  2557. children.push(_this._nodeMap[descendent.uniqueId]);
  2558. }
  2559. }
  2560. if (children.length) {
  2561. glTFNode.children = children;
  2562. }
  2563. }
  2564. }
  2565. }
  2566. if (scene.nodes.length) {
  2567. _this._scenes.push(scene);
  2568. }
  2569. });
  2570. });
  2571. };
  2572. /**
  2573. * Creates a mapping of Node unique id to node index and handles animations
  2574. * @param babylonScene Babylon Scene
  2575. * @param nodes Babylon transform nodes
  2576. * @param binaryWriter Buffer to write binary data to
  2577. * @returns Node mapping of unique id to index
  2578. */
  2579. _Exporter.prototype.createNodeMapAndAnimationsAsync = function (babylonScene, nodes, binaryWriter) {
  2580. var _this = this;
  2581. var promiseChain = Promise.resolve();
  2582. var nodeMap = {};
  2583. var nodeIndex;
  2584. var runtimeGLTFAnimation = {
  2585. name: 'runtime animations',
  2586. channels: [],
  2587. samplers: []
  2588. };
  2589. var idleGLTFAnimations = [];
  2590. var _loop_1 = function (babylonNode) {
  2591. if (!this_1._options.shouldExportNode || this_1._options.shouldExportNode(babylonNode)) {
  2592. promiseChain = promiseChain.then(function () {
  2593. return _this.createNodeAsync(babylonNode, binaryWriter).then(function (node) {
  2594. var promise = _this._extensionsPostExportNodeAsync("createNodeAsync", node, babylonNode);
  2595. if (promise == null) {
  2596. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Warn("Not exporting node " + babylonNode.name);
  2597. return Promise.resolve();
  2598. }
  2599. else {
  2600. return promise.then(function (node) {
  2601. _this._nodes.push(node);
  2602. nodeIndex = _this._nodes.length - 1;
  2603. nodeMap[babylonNode.uniqueId] = nodeIndex;
  2604. if (!babylonScene.animationGroups.length && babylonNode.animations.length) {
  2605. _glTFAnimation__WEBPACK_IMPORTED_MODULE_5__["_GLTFAnimation"]._CreateNodeAnimationFromNodeAnimations(babylonNode, runtimeGLTFAnimation, idleGLTFAnimations, nodeMap, _this._nodes, binaryWriter, _this._bufferViews, _this._accessors, _this._convertToRightHandedSystem, _this._animationSampleRate);
  2606. }
  2607. });
  2608. }
  2609. });
  2610. });
  2611. }
  2612. else {
  2613. "Excluding node " + babylonNode.name;
  2614. }
  2615. };
  2616. var this_1 = this;
  2617. for (var _i = 0, nodes_2 = nodes; _i < nodes_2.length; _i++) {
  2618. var babylonNode = nodes_2[_i];
  2619. _loop_1(babylonNode);
  2620. }
  2621. return promiseChain.then(function () {
  2622. if (runtimeGLTFAnimation.channels.length && runtimeGLTFAnimation.samplers.length) {
  2623. _this._animations.push(runtimeGLTFAnimation);
  2624. }
  2625. idleGLTFAnimations.forEach(function (idleGLTFAnimation) {
  2626. if (idleGLTFAnimation.channels.length && idleGLTFAnimation.samplers.length) {
  2627. _this._animations.push(idleGLTFAnimation);
  2628. }
  2629. });
  2630. if (babylonScene.animationGroups.length) {
  2631. _glTFAnimation__WEBPACK_IMPORTED_MODULE_5__["_GLTFAnimation"]._CreateNodeAnimationFromAnimationGroups(babylonScene, _this._animations, nodeMap, _this._nodes, binaryWriter, _this._bufferViews, _this._accessors, _this._convertToRightHandedSystem, _this._animationSampleRate);
  2632. }
  2633. return nodeMap;
  2634. });
  2635. };
  2636. /**
  2637. * Creates a glTF node from a Babylon mesh
  2638. * @param babylonMesh Source Babylon mesh
  2639. * @param binaryWriter Buffer for storing geometry data
  2640. * @returns glTF node
  2641. */
  2642. _Exporter.prototype.createNodeAsync = function (babylonNode, binaryWriter) {
  2643. var _this = this;
  2644. return Promise.resolve().then(function () {
  2645. // create node to hold translation/rotation/scale and the mesh
  2646. var node = {};
  2647. // create mesh
  2648. var mesh = { primitives: [] };
  2649. if (babylonNode.name) {
  2650. node.name = babylonNode.name;
  2651. }
  2652. if (babylonNode instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["TransformNode"]) {
  2653. // Set transformation
  2654. _this.setNodeTransformation(node, babylonNode);
  2655. return _this.setPrimitiveAttributesAsync(mesh, babylonNode, binaryWriter).then(function () {
  2656. if (mesh.primitives.length) {
  2657. _this._meshes.push(mesh);
  2658. node.mesh = _this._meshes.length - 1;
  2659. }
  2660. return node;
  2661. });
  2662. }
  2663. else {
  2664. return node;
  2665. }
  2666. });
  2667. };
  2668. _Exporter._ExtensionNames = new Array();
  2669. _Exporter._ExtensionFactories = {};
  2670. return _Exporter;
  2671. }());
  2672. /**
  2673. * @hidden
  2674. *
  2675. * Stores glTF binary data. If the array buffer byte length is exceeded, it doubles in size dynamically
  2676. */
  2677. var _BinaryWriter = /** @class */ (function () {
  2678. /**
  2679. * Initialize binary writer with an initial byte length
  2680. * @param byteLength Initial byte length of the array buffer
  2681. */
  2682. function _BinaryWriter(byteLength) {
  2683. this._arrayBuffer = new ArrayBuffer(byteLength);
  2684. this._dataView = new DataView(this._arrayBuffer);
  2685. this._byteOffset = 0;
  2686. }
  2687. /**
  2688. * Resize the array buffer to the specified byte length
  2689. * @param byteLength
  2690. */
  2691. _BinaryWriter.prototype.resizeBuffer = function (byteLength) {
  2692. var newBuffer = new ArrayBuffer(byteLength);
  2693. var oldUint8Array = new Uint8Array(this._arrayBuffer);
  2694. var newUint8Array = new Uint8Array(newBuffer);
  2695. for (var i = 0, length_8 = newUint8Array.byteLength; i < length_8; ++i) {
  2696. newUint8Array[i] = oldUint8Array[i];
  2697. }
  2698. this._arrayBuffer = newBuffer;
  2699. this._dataView = new DataView(this._arrayBuffer);
  2700. return newBuffer;
  2701. };
  2702. /**
  2703. * Get an array buffer with the length of the byte offset
  2704. * @returns ArrayBuffer resized to the byte offset
  2705. */
  2706. _BinaryWriter.prototype.getArrayBuffer = function () {
  2707. return this.resizeBuffer(this.getByteOffset());
  2708. };
  2709. /**
  2710. * Get the byte offset of the array buffer
  2711. * @returns byte offset
  2712. */
  2713. _BinaryWriter.prototype.getByteOffset = function () {
  2714. if (this._byteOffset == undefined) {
  2715. throw new Error("Byte offset is undefined!");
  2716. }
  2717. return this._byteOffset;
  2718. };
  2719. /**
  2720. * Stores an UInt8 in the array buffer
  2721. * @param entry
  2722. * @param byteOffset If defined, specifies where to set the value as an offset.
  2723. */
  2724. _BinaryWriter.prototype.setUInt8 = function (entry, byteOffset) {
  2725. if (byteOffset != null) {
  2726. if (byteOffset < this._byteOffset) {
  2727. this._dataView.setUint8(byteOffset, entry);
  2728. }
  2729. else {
  2730. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error('BinaryWriter: byteoffset is greater than the current binary buffer length!');
  2731. }
  2732. }
  2733. else {
  2734. if (this._byteOffset + 1 > this._arrayBuffer.byteLength) {
  2735. this.resizeBuffer(this._arrayBuffer.byteLength * 2);
  2736. }
  2737. this._dataView.setUint8(this._byteOffset++, entry);
  2738. }
  2739. };
  2740. /**
  2741. * Gets an UInt32 in the array buffer
  2742. * @param entry
  2743. * @param byteOffset If defined, specifies where to set the value as an offset.
  2744. */
  2745. _BinaryWriter.prototype.getUInt32 = function (byteOffset) {
  2746. if (byteOffset < this._byteOffset) {
  2747. return this._dataView.getUint32(byteOffset, true);
  2748. }
  2749. else {
  2750. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error('BinaryWriter: byteoffset is greater than the current binary buffer length!');
  2751. throw new Error('BinaryWriter: byteoffset is greater than the current binary buffer length!');
  2752. }
  2753. };
  2754. _BinaryWriter.prototype.getVector3Float32FromRef = function (vector3, byteOffset) {
  2755. if (byteOffset + 8 > this._byteOffset) {
  2756. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error("BinaryWriter: byteoffset is greater than the current binary buffer length!");
  2757. }
  2758. else {
  2759. vector3.x = this._dataView.getFloat32(byteOffset, true);
  2760. vector3.y = this._dataView.getFloat32(byteOffset + 4, true);
  2761. vector3.z = this._dataView.getFloat32(byteOffset + 8, true);
  2762. }
  2763. };
  2764. _BinaryWriter.prototype.setVector3Float32FromRef = function (vector3, byteOffset) {
  2765. if (byteOffset + 8 > this._byteOffset) {
  2766. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error("BinaryWriter: byteoffset is greater than the current binary buffer length!");
  2767. }
  2768. else {
  2769. this._dataView.setFloat32(byteOffset, vector3.x, true);
  2770. this._dataView.setFloat32(byteOffset + 4, vector3.y, true);
  2771. this._dataView.setFloat32(byteOffset + 8, vector3.z, true);
  2772. }
  2773. };
  2774. _BinaryWriter.prototype.getVector4Float32FromRef = function (vector4, byteOffset) {
  2775. if (byteOffset + 12 > this._byteOffset) {
  2776. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error("BinaryWriter: byteoffset is greater than the current binary buffer length!");
  2777. }
  2778. else {
  2779. vector4.x = this._dataView.getFloat32(byteOffset, true);
  2780. vector4.y = this._dataView.getFloat32(byteOffset + 4, true);
  2781. vector4.z = this._dataView.getFloat32(byteOffset + 8, true);
  2782. vector4.w = this._dataView.getFloat32(byteOffset + 12, true);
  2783. }
  2784. };
  2785. _BinaryWriter.prototype.setVector4Float32FromRef = function (vector4, byteOffset) {
  2786. if (byteOffset + 12 > this._byteOffset) {
  2787. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error("BinaryWriter: byteoffset is greater than the current binary buffer length!");
  2788. }
  2789. else {
  2790. this._dataView.setFloat32(byteOffset, vector4.x, true);
  2791. this._dataView.setFloat32(byteOffset + 4, vector4.y, true);
  2792. this._dataView.setFloat32(byteOffset + 8, vector4.z, true);
  2793. this._dataView.setFloat32(byteOffset + 12, vector4.w, true);
  2794. }
  2795. };
  2796. /**
  2797. * Stores a Float32 in the array buffer
  2798. * @param entry
  2799. */
  2800. _BinaryWriter.prototype.setFloat32 = function (entry, byteOffset) {
  2801. if (isNaN(entry)) {
  2802. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error('Invalid data being written!');
  2803. }
  2804. if (byteOffset != null) {
  2805. if (byteOffset < this._byteOffset) {
  2806. this._dataView.setFloat32(byteOffset, entry, true);
  2807. }
  2808. else {
  2809. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error('BinaryWriter: byteoffset is greater than the current binary length!');
  2810. }
  2811. }
  2812. if (this._byteOffset + 4 > this._arrayBuffer.byteLength) {
  2813. this.resizeBuffer(this._arrayBuffer.byteLength * 2);
  2814. }
  2815. this._dataView.setFloat32(this._byteOffset, entry, true);
  2816. this._byteOffset += 4;
  2817. };
  2818. /**
  2819. * Stores an UInt32 in the array buffer
  2820. * @param entry
  2821. * @param byteOffset If defined, specifies where to set the value as an offset.
  2822. */
  2823. _BinaryWriter.prototype.setUInt32 = function (entry, byteOffset) {
  2824. if (byteOffset != null) {
  2825. if (byteOffset < this._byteOffset) {
  2826. this._dataView.setUint32(byteOffset, entry, true);
  2827. }
  2828. else {
  2829. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_1__["Tools"].Error('BinaryWriter: byteoffset is greater than the current binary buffer length!');
  2830. }
  2831. }
  2832. else {
  2833. if (this._byteOffset + 4 > this._arrayBuffer.byteLength) {
  2834. this.resizeBuffer(this._arrayBuffer.byteLength * 2);
  2835. }
  2836. this._dataView.setUint32(this._byteOffset, entry, true);
  2837. this._byteOffset += 4;
  2838. }
  2839. };
  2840. return _BinaryWriter;
  2841. }());
  2842. /***/ }),
  2843. /***/ "./glTF/2.0/glTFExporterExtension.ts":
  2844. /*!*******************************************!*\
  2845. !*** ./glTF/2.0/glTFExporterExtension.ts ***!
  2846. \*******************************************/
  2847. /*! exports provided: __IGLTFExporterExtensionV2 */
  2848. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  2849. "use strict";
  2850. __webpack_require__.r(__webpack_exports__);
  2851. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__IGLTFExporterExtensionV2", function() { return __IGLTFExporterExtensionV2; });
  2852. /** @hidden */
  2853. var __IGLTFExporterExtensionV2 = 0; // I am here to allow dts to be created
  2854. /***/ }),
  2855. /***/ "./glTF/2.0/glTFMaterialExporter.ts":
  2856. /*!******************************************!*\
  2857. !*** ./glTF/2.0/glTFMaterialExporter.ts ***!
  2858. \******************************************/
  2859. /*! exports provided: _GLTFMaterialExporter */
  2860. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  2861. "use strict";
  2862. __webpack_require__.r(__webpack_exports__);
  2863. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "_GLTFMaterialExporter", function() { return _GLTFMaterialExporter; });
  2864. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Maths/math */ "babylonjs/Maths/math");
  2865. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__);
  2866. /**
  2867. * Utility methods for working with glTF material conversion properties. This class should only be used internally
  2868. * @hidden
  2869. */
  2870. var _GLTFMaterialExporter = /** @class */ (function () {
  2871. function _GLTFMaterialExporter(exporter) {
  2872. /**
  2873. * Mapping to store textures
  2874. */
  2875. this._textureMap = {};
  2876. this._textureMap = {};
  2877. this._exporter = exporter;
  2878. }
  2879. /**
  2880. * Specifies if two colors are approximately equal in value
  2881. * @param color1 first color to compare to
  2882. * @param color2 second color to compare to
  2883. * @param epsilon threshold value
  2884. */
  2885. _GLTFMaterialExporter.FuzzyEquals = function (color1, color2, epsilon) {
  2886. return babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Scalar"].WithinEpsilon(color1.r, color2.r, epsilon) &&
  2887. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Scalar"].WithinEpsilon(color1.g, color2.g, epsilon) &&
  2888. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Scalar"].WithinEpsilon(color1.b, color2.b, epsilon);
  2889. };
  2890. /**
  2891. * Gets the materials from a Babylon scene and converts them to glTF materials
  2892. * @param scene babylonjs scene
  2893. * @param mimeType texture mime type
  2894. * @param images array of images
  2895. * @param textures array of textures
  2896. * @param materials array of materials
  2897. * @param imageData mapping of texture names to base64 textures
  2898. * @param hasTextureCoords specifies if texture coordinates are present on the material
  2899. */
  2900. _GLTFMaterialExporter.prototype._convertMaterialsToGLTFAsync = function (babylonMaterials, mimeType, hasTextureCoords) {
  2901. var promises = [];
  2902. for (var _i = 0, babylonMaterials_1 = babylonMaterials; _i < babylonMaterials_1.length; _i++) {
  2903. var babylonMaterial = babylonMaterials_1[_i];
  2904. if (babylonMaterial instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["StandardMaterial"]) {
  2905. promises.push(this._convertStandardMaterialAsync(babylonMaterial, mimeType, hasTextureCoords));
  2906. }
  2907. else if (babylonMaterial instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["PBRMetallicRoughnessMaterial"]) {
  2908. promises.push(this._convertPBRMetallicRoughnessMaterialAsync(babylonMaterial, mimeType, hasTextureCoords));
  2909. }
  2910. else if (babylonMaterial instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["PBRMaterial"]) {
  2911. promises.push(this._convertPBRMaterialAsync(babylonMaterial, mimeType, hasTextureCoords));
  2912. }
  2913. else {
  2914. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].Warn("Unsupported material type: " + babylonMaterial.name);
  2915. }
  2916. }
  2917. return Promise.all(promises).then(function () { });
  2918. };
  2919. /**
  2920. * Makes a copy of the glTF material without the texture parameters
  2921. * @param originalMaterial original glTF material
  2922. * @returns glTF material without texture parameters
  2923. */
  2924. _GLTFMaterialExporter.prototype._stripTexturesFromMaterial = function (originalMaterial) {
  2925. var newMaterial = {};
  2926. if (originalMaterial) {
  2927. newMaterial.name = originalMaterial.name;
  2928. newMaterial.doubleSided = originalMaterial.doubleSided;
  2929. newMaterial.alphaMode = originalMaterial.alphaMode;
  2930. newMaterial.alphaCutoff = originalMaterial.alphaCutoff;
  2931. newMaterial.emissiveFactor = originalMaterial.emissiveFactor;
  2932. var originalPBRMetallicRoughness = originalMaterial.pbrMetallicRoughness;
  2933. if (originalPBRMetallicRoughness) {
  2934. newMaterial.pbrMetallicRoughness = {};
  2935. newMaterial.pbrMetallicRoughness.baseColorFactor = originalPBRMetallicRoughness.baseColorFactor;
  2936. newMaterial.pbrMetallicRoughness.metallicFactor = originalPBRMetallicRoughness.metallicFactor;
  2937. newMaterial.pbrMetallicRoughness.roughnessFactor = originalPBRMetallicRoughness.roughnessFactor;
  2938. }
  2939. }
  2940. return newMaterial;
  2941. };
  2942. /**
  2943. * Specifies if the material has any texture parameters present
  2944. * @param material glTF Material
  2945. * @returns boolean specifying if texture parameters are present
  2946. */
  2947. _GLTFMaterialExporter.prototype._hasTexturesPresent = function (material) {
  2948. if (material.emissiveTexture || material.normalTexture || material.occlusionTexture) {
  2949. return true;
  2950. }
  2951. var pbrMat = material.pbrMetallicRoughness;
  2952. if (pbrMat) {
  2953. if (pbrMat.baseColorTexture || pbrMat.metallicRoughnessTexture) {
  2954. return true;
  2955. }
  2956. }
  2957. return false;
  2958. };
  2959. /**
  2960. * Converts a Babylon StandardMaterial to a glTF Metallic Roughness Material
  2961. * @param babylonStandardMaterial
  2962. * @returns glTF Metallic Roughness Material representation
  2963. */
  2964. _GLTFMaterialExporter.prototype._convertToGLTFPBRMetallicRoughness = function (babylonStandardMaterial) {
  2965. var P0 = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Vector2"](0, 1);
  2966. var P1 = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Vector2"](0, 0.1);
  2967. var P2 = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Vector2"](0, 0.1);
  2968. var P3 = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Vector2"](1300, 0.1);
  2969. /**
  2970. * Given the control points, solve for x based on a given t for a cubic bezier curve
  2971. * @param t a value between 0 and 1
  2972. * @param p0 first control point
  2973. * @param p1 second control point
  2974. * @param p2 third control point
  2975. * @param p3 fourth control point
  2976. * @returns number result of cubic bezier curve at the specified t
  2977. */
  2978. function _cubicBezierCurve(t, p0, p1, p2, p3) {
  2979. return ((1 - t) * (1 - t) * (1 - t) * p0 +
  2980. 3 * (1 - t) * (1 - t) * t * p1 +
  2981. 3 * (1 - t) * t * t * p2 +
  2982. t * t * t * p3);
  2983. }
  2984. /**
  2985. * Evaluates a specified specular power value to determine the appropriate roughness value,
  2986. * based on a pre-defined cubic bezier curve with specular on the abscissa axis (x-axis)
  2987. * and roughness on the ordinant axis (y-axis)
  2988. * @param specularPower specular power of standard material
  2989. * @returns Number representing the roughness value
  2990. */
  2991. function _solveForRoughness(specularPower) {
  2992. var t = Math.pow(specularPower / P3.x, 0.333333);
  2993. return _cubicBezierCurve(t, P0.y, P1.y, P2.y, P3.y);
  2994. }
  2995. var diffuse = babylonStandardMaterial.diffuseColor.toLinearSpace().scale(0.5);
  2996. var opacity = babylonStandardMaterial.alpha;
  2997. var specularPower = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Scalar"].Clamp(babylonStandardMaterial.specularPower, 0, _GLTFMaterialExporter._MaxSpecularPower);
  2998. var roughness = _solveForRoughness(specularPower);
  2999. var glTFPbrMetallicRoughness = {
  3000. baseColorFactor: [
  3001. diffuse.r,
  3002. diffuse.g,
  3003. diffuse.b,
  3004. opacity
  3005. ],
  3006. metallicFactor: 0,
  3007. roughnessFactor: roughness,
  3008. };
  3009. return glTFPbrMetallicRoughness;
  3010. };
  3011. /**
  3012. * Computes the metallic factor
  3013. * @param diffuse diffused value
  3014. * @param specular specular value
  3015. * @param oneMinusSpecularStrength one minus the specular strength
  3016. * @returns metallic value
  3017. */
  3018. _GLTFMaterialExporter._SolveMetallic = function (diffuse, specular, oneMinusSpecularStrength) {
  3019. if (specular < this._DielectricSpecular.r) {
  3020. this._DielectricSpecular;
  3021. return 0;
  3022. }
  3023. var a = this._DielectricSpecular.r;
  3024. var b = diffuse * oneMinusSpecularStrength / (1.0 - this._DielectricSpecular.r) + specular - 2.0 * this._DielectricSpecular.r;
  3025. var c = this._DielectricSpecular.r - specular;
  3026. var D = b * b - 4.0 * a * c;
  3027. return babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Scalar"].Clamp((-b + Math.sqrt(D)) / (2.0 * a), 0, 1);
  3028. };
  3029. /**
  3030. * Sets the glTF alpha mode to a glTF material from the Babylon Material
  3031. * @param glTFMaterial glTF material
  3032. * @param babylonMaterial Babylon material
  3033. */
  3034. _GLTFMaterialExporter._SetAlphaMode = function (glTFMaterial, babylonMaterial) {
  3035. if (babylonMaterial.needAlphaBlending()) {
  3036. glTFMaterial.alphaMode = "BLEND" /* BLEND */;
  3037. }
  3038. else if (babylonMaterial.needAlphaTesting()) {
  3039. glTFMaterial.alphaMode = "MASK" /* MASK */;
  3040. glTFMaterial.alphaCutoff = babylonMaterial.alphaCutOff;
  3041. }
  3042. };
  3043. /**
  3044. * Converts a Babylon Standard Material to a glTF Material
  3045. * @param babylonStandardMaterial BJS Standard Material
  3046. * @param mimeType mime type to use for the textures
  3047. * @param images array of glTF image interfaces
  3048. * @param textures array of glTF texture interfaces
  3049. * @param materials array of glTF material interfaces
  3050. * @param imageData map of image file name to data
  3051. * @param hasTextureCoords specifies if texture coordinates are present on the submesh to determine if textures should be applied
  3052. */
  3053. _GLTFMaterialExporter.prototype._convertStandardMaterialAsync = function (babylonStandardMaterial, mimeType, hasTextureCoords) {
  3054. var materialMap = this._exporter._materialMap;
  3055. var materials = this._exporter._materials;
  3056. var promises = [];
  3057. var glTFPbrMetallicRoughness = this._convertToGLTFPBRMetallicRoughness(babylonStandardMaterial);
  3058. var glTFMaterial = { name: babylonStandardMaterial.name };
  3059. if (babylonStandardMaterial.backFaceCulling != null && !babylonStandardMaterial.backFaceCulling) {
  3060. if (!babylonStandardMaterial.twoSidedLighting) {
  3061. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].Warn(babylonStandardMaterial.name + ": Back-face culling enabled and two-sided lighting disabled is not supported in glTF.");
  3062. }
  3063. glTFMaterial.doubleSided = true;
  3064. }
  3065. if (hasTextureCoords) {
  3066. if (babylonStandardMaterial.diffuseTexture) {
  3067. promises.push(this._exportTextureAsync(babylonStandardMaterial.diffuseTexture, mimeType).then(function (glTFTexture) {
  3068. if (glTFTexture) {
  3069. glTFPbrMetallicRoughness.baseColorTexture = glTFTexture;
  3070. }
  3071. }));
  3072. }
  3073. if (babylonStandardMaterial.bumpTexture) {
  3074. promises.push(this._exportTextureAsync(babylonStandardMaterial.bumpTexture, mimeType).then(function (glTFTexture) {
  3075. if (glTFTexture) {
  3076. glTFMaterial.normalTexture = glTFTexture;
  3077. if (babylonStandardMaterial.bumpTexture != null && babylonStandardMaterial.bumpTexture.level !== 1) {
  3078. glTFMaterial.normalTexture.scale = babylonStandardMaterial.bumpTexture.level;
  3079. }
  3080. }
  3081. }));
  3082. }
  3083. if (babylonStandardMaterial.emissiveTexture) {
  3084. glTFMaterial.emissiveFactor = [1.0, 1.0, 1.0];
  3085. promises.push(this._exportTextureAsync(babylonStandardMaterial.emissiveTexture, mimeType).then(function (glTFEmissiveTexture) {
  3086. if (glTFEmissiveTexture) {
  3087. glTFMaterial.emissiveTexture = glTFEmissiveTexture;
  3088. }
  3089. }));
  3090. }
  3091. if (babylonStandardMaterial.ambientTexture) {
  3092. promises.push(this._exportTextureAsync(babylonStandardMaterial.ambientTexture, mimeType).then(function (glTFTexture) {
  3093. if (glTFTexture) {
  3094. var occlusionTexture = {
  3095. index: glTFTexture.index
  3096. };
  3097. glTFMaterial.occlusionTexture = occlusionTexture;
  3098. occlusionTexture.strength = 1.0;
  3099. }
  3100. }));
  3101. }
  3102. }
  3103. if (babylonStandardMaterial.alpha < 1.0 || babylonStandardMaterial.opacityTexture) {
  3104. if (babylonStandardMaterial.alphaMode === babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Constants"].ALPHA_COMBINE) {
  3105. glTFMaterial.alphaMode = "BLEND" /* BLEND */;
  3106. }
  3107. else {
  3108. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].Warn(babylonStandardMaterial.name + ": glTF 2.0 does not support alpha mode: " + babylonStandardMaterial.alphaMode.toString());
  3109. }
  3110. }
  3111. if (babylonStandardMaterial.emissiveColor && !_GLTFMaterialExporter.FuzzyEquals(babylonStandardMaterial.emissiveColor, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].Black(), _GLTFMaterialExporter._Epsilon)) {
  3112. glTFMaterial.emissiveFactor = babylonStandardMaterial.emissiveColor.asArray();
  3113. }
  3114. glTFMaterial.pbrMetallicRoughness = glTFPbrMetallicRoughness;
  3115. _GLTFMaterialExporter._SetAlphaMode(glTFMaterial, babylonStandardMaterial);
  3116. materials.push(glTFMaterial);
  3117. materialMap[babylonStandardMaterial.uniqueId] = materials.length - 1;
  3118. return Promise.all(promises).then(function () { });
  3119. };
  3120. /**
  3121. * Converts a Babylon PBR Metallic Roughness Material to a glTF Material
  3122. * @param babylonPBRMetalRoughMaterial BJS PBR Metallic Roughness Material
  3123. * @param mimeType mime type to use for the textures
  3124. * @param images array of glTF image interfaces
  3125. * @param textures array of glTF texture interfaces
  3126. * @param materials array of glTF material interfaces
  3127. * @param imageData map of image file name to data
  3128. * @param hasTextureCoords specifies if texture coordinates are present on the submesh to determine if textures should be applied
  3129. */
  3130. _GLTFMaterialExporter.prototype._convertPBRMetallicRoughnessMaterialAsync = function (babylonPBRMetalRoughMaterial, mimeType, hasTextureCoords) {
  3131. var materialMap = this._exporter._materialMap;
  3132. var materials = this._exporter._materials;
  3133. var promises = [];
  3134. var glTFPbrMetallicRoughness = {};
  3135. if (babylonPBRMetalRoughMaterial.baseColor) {
  3136. glTFPbrMetallicRoughness.baseColorFactor = [
  3137. babylonPBRMetalRoughMaterial.baseColor.r,
  3138. babylonPBRMetalRoughMaterial.baseColor.g,
  3139. babylonPBRMetalRoughMaterial.baseColor.b,
  3140. babylonPBRMetalRoughMaterial.alpha
  3141. ];
  3142. }
  3143. if (babylonPBRMetalRoughMaterial.metallic != null && babylonPBRMetalRoughMaterial.metallic !== 1) {
  3144. glTFPbrMetallicRoughness.metallicFactor = babylonPBRMetalRoughMaterial.metallic;
  3145. }
  3146. if (babylonPBRMetalRoughMaterial.roughness != null && babylonPBRMetalRoughMaterial.roughness !== 1) {
  3147. glTFPbrMetallicRoughness.roughnessFactor = babylonPBRMetalRoughMaterial.roughness;
  3148. }
  3149. var glTFMaterial = {
  3150. name: babylonPBRMetalRoughMaterial.name
  3151. };
  3152. if (babylonPBRMetalRoughMaterial.doubleSided) {
  3153. glTFMaterial.doubleSided = babylonPBRMetalRoughMaterial.doubleSided;
  3154. }
  3155. _GLTFMaterialExporter._SetAlphaMode(glTFMaterial, babylonPBRMetalRoughMaterial);
  3156. if (hasTextureCoords) {
  3157. if (babylonPBRMetalRoughMaterial.baseTexture != null) {
  3158. promises.push(this._exportTextureAsync(babylonPBRMetalRoughMaterial.baseTexture, mimeType).then(function (glTFTexture) {
  3159. if (glTFTexture) {
  3160. glTFPbrMetallicRoughness.baseColorTexture = glTFTexture;
  3161. }
  3162. }));
  3163. }
  3164. if (babylonPBRMetalRoughMaterial.normalTexture) {
  3165. promises.push(this._exportTextureAsync(babylonPBRMetalRoughMaterial.normalTexture, mimeType).then(function (glTFTexture) {
  3166. if (glTFTexture) {
  3167. glTFMaterial.normalTexture = glTFTexture;
  3168. if (babylonPBRMetalRoughMaterial.normalTexture.level !== 1) {
  3169. glTFMaterial.normalTexture.scale = babylonPBRMetalRoughMaterial.normalTexture.level;
  3170. }
  3171. }
  3172. }));
  3173. }
  3174. if (babylonPBRMetalRoughMaterial.occlusionTexture) {
  3175. promises.push(this._exportTextureAsync(babylonPBRMetalRoughMaterial.occlusionTexture, mimeType).then(function (glTFTexture) {
  3176. if (glTFTexture) {
  3177. glTFMaterial.occlusionTexture = glTFTexture;
  3178. if (babylonPBRMetalRoughMaterial.occlusionStrength != null) {
  3179. glTFMaterial.occlusionTexture.strength = babylonPBRMetalRoughMaterial.occlusionStrength;
  3180. }
  3181. }
  3182. }));
  3183. }
  3184. if (babylonPBRMetalRoughMaterial.emissiveTexture) {
  3185. promises.push(this._exportTextureAsync(babylonPBRMetalRoughMaterial.emissiveTexture, mimeType).then(function (glTFTexture) {
  3186. if (glTFTexture) {
  3187. glTFMaterial.emissiveTexture = glTFTexture;
  3188. }
  3189. }));
  3190. }
  3191. }
  3192. if (_GLTFMaterialExporter.FuzzyEquals(babylonPBRMetalRoughMaterial.emissiveColor, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].Black(), _GLTFMaterialExporter._Epsilon)) {
  3193. glTFMaterial.emissiveFactor = babylonPBRMetalRoughMaterial.emissiveColor.asArray();
  3194. }
  3195. glTFMaterial.pbrMetallicRoughness = glTFPbrMetallicRoughness;
  3196. materials.push(glTFMaterial);
  3197. materialMap[babylonPBRMetalRoughMaterial.uniqueId] = materials.length - 1;
  3198. return Promise.all(promises).then(function () { });
  3199. };
  3200. /**
  3201. * Converts an image typed array buffer to a base64 image
  3202. * @param buffer typed array buffer
  3203. * @param width width of the image
  3204. * @param height height of the image
  3205. * @param mimeType mimetype of the image
  3206. * @returns base64 image string
  3207. */
  3208. _GLTFMaterialExporter.prototype._createBase64FromCanvasAsync = function (buffer, width, height, mimeType) {
  3209. var _this = this;
  3210. return new Promise(function (resolve, reject) {
  3211. var hostingScene;
  3212. var textureType = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Constants"].TEXTURETYPE_UNSIGNED_INT;
  3213. var engine = _this._exporter._getLocalEngine();
  3214. hostingScene = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Scene"](engine);
  3215. // Create a temporary texture with the texture buffer data
  3216. var tempTexture = engine.createRawTexture(buffer, width, height, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Constants"].TEXTUREFORMAT_RGBA, false, true, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"].NEAREST_SAMPLINGMODE, null, textureType);
  3217. var postProcess = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["PostProcess"]("pass", "pass", null, null, 1, null, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"].NEAREST_SAMPLINGMODE, engine, false, undefined, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Constants"].TEXTURETYPE_UNSIGNED_INT, undefined, null, false);
  3218. postProcess.getEffect().executeWhenCompiled(function () {
  3219. postProcess.onApply = function (effect) {
  3220. effect._bindTexture("textureSampler", tempTexture);
  3221. };
  3222. // Set the size of the texture
  3223. engine.setSize(width, height);
  3224. hostingScene.postProcessManager.directRender([postProcess], null);
  3225. postProcess.dispose();
  3226. tempTexture.dispose();
  3227. // Read data from WebGL
  3228. var canvas = engine.getRenderingCanvas();
  3229. if (canvas) {
  3230. if (!canvas.toBlob) { // fallback for browsers without "canvas.toBlob"
  3231. var dataURL = canvas.toDataURL();
  3232. resolve(dataURL);
  3233. }
  3234. else {
  3235. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].ToBlob(canvas, function (blob) {
  3236. if (blob) {
  3237. var fileReader = new FileReader();
  3238. fileReader.onload = function (event) {
  3239. var base64String = event.target.result;
  3240. hostingScene.dispose();
  3241. resolve(base64String);
  3242. };
  3243. fileReader.readAsDataURL(blob);
  3244. }
  3245. else {
  3246. reject("gltfMaterialExporter: Failed to get blob from image canvas!");
  3247. }
  3248. });
  3249. }
  3250. }
  3251. else {
  3252. reject("Engine is missing a canvas!");
  3253. }
  3254. });
  3255. });
  3256. };
  3257. /**
  3258. * Generates a white texture based on the specified width and height
  3259. * @param width width of the texture in pixels
  3260. * @param height height of the texture in pixels
  3261. * @param scene babylonjs scene
  3262. * @returns white texture
  3263. */
  3264. _GLTFMaterialExporter.prototype._createWhiteTexture = function (width, height, scene) {
  3265. var data = new Uint8Array(width * height * 4);
  3266. for (var i = 0; i < data.length; i = i + 4) {
  3267. data[i] = data[i + 1] = data[i + 2] = data[i + 3] = 0xFF;
  3268. }
  3269. var rawTexture = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["RawTexture"].CreateRGBATexture(data, width, height, scene);
  3270. return rawTexture;
  3271. };
  3272. /**
  3273. * Resizes the two source textures to the same dimensions. If a texture is null, a default white texture is generated. If both textures are null, returns null
  3274. * @param texture1 first texture to resize
  3275. * @param texture2 second texture to resize
  3276. * @param scene babylonjs scene
  3277. * @returns resized textures or null
  3278. */
  3279. _GLTFMaterialExporter.prototype._resizeTexturesToSameDimensions = function (texture1, texture2, scene) {
  3280. var texture1Size = texture1 ? texture1.getSize() : { width: 0, height: 0 };
  3281. var texture2Size = texture2 ? texture2.getSize() : { width: 0, height: 0 };
  3282. var resizedTexture1;
  3283. var resizedTexture2;
  3284. if (texture1Size.width < texture2Size.width) {
  3285. if (texture1 && texture1 instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"]) {
  3286. resizedTexture1 = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["TextureTools"].CreateResizedCopy(texture1, texture2Size.width, texture2Size.height, true);
  3287. }
  3288. else {
  3289. resizedTexture1 = this._createWhiteTexture(texture2Size.width, texture2Size.height, scene);
  3290. }
  3291. resizedTexture2 = texture2;
  3292. }
  3293. else if (texture1Size.width > texture2Size.width) {
  3294. if (texture2 && texture2 instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"]) {
  3295. resizedTexture2 = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["TextureTools"].CreateResizedCopy(texture2, texture1Size.width, texture1Size.height, true);
  3296. }
  3297. else {
  3298. resizedTexture2 = this._createWhiteTexture(texture1Size.width, texture1Size.height, scene);
  3299. }
  3300. resizedTexture1 = texture1;
  3301. }
  3302. else {
  3303. resizedTexture1 = texture1;
  3304. resizedTexture2 = texture2;
  3305. }
  3306. return {
  3307. "texture1": resizedTexture1,
  3308. "texture2": resizedTexture2
  3309. };
  3310. };
  3311. /**
  3312. * Converts an array of pixels to a Float32Array
  3313. * Throws an error if the pixel format is not supported
  3314. * @param pixels - array buffer containing pixel values
  3315. * @returns Float32 of pixels
  3316. */
  3317. _GLTFMaterialExporter.prototype._convertPixelArrayToFloat32 = function (pixels) {
  3318. if (pixels instanceof Uint8Array) {
  3319. var length_1 = pixels.length;
  3320. var buffer = new Float32Array(pixels.length);
  3321. for (var i = 0; i < length_1; ++i) {
  3322. buffer[i] = pixels[i] / 255;
  3323. }
  3324. return buffer;
  3325. }
  3326. else if (pixels instanceof Float32Array) {
  3327. return pixels;
  3328. }
  3329. else {
  3330. throw new Error('Unsupported pixel format!');
  3331. }
  3332. };
  3333. /**
  3334. * Convert Specular Glossiness Textures to Metallic Roughness
  3335. * See link below for info on the material conversions from PBR Metallic/Roughness and Specular/Glossiness
  3336. * @link https://github.com/KhronosGroup/glTF/blob/master/extensions/2.0/Khronos/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows-bjs/js/babylon.pbrUtilities.js
  3337. * @param diffuseTexture texture used to store diffuse information
  3338. * @param specularGlossinessTexture texture used to store specular and glossiness information
  3339. * @param factors specular glossiness material factors
  3340. * @param mimeType the mime type to use for the texture
  3341. * @returns pbr metallic roughness interface or null
  3342. */
  3343. _GLTFMaterialExporter.prototype._convertSpecularGlossinessTexturesToMetallicRoughnessAsync = function (diffuseTexture, specularGlossinessTexture, factors, mimeType) {
  3344. var promises = [];
  3345. if (!(diffuseTexture || specularGlossinessTexture)) {
  3346. return Promise.reject('_ConvertSpecularGlosinessTexturesToMetallicRoughness: diffuse and specular glossiness textures are not defined!');
  3347. }
  3348. var scene = diffuseTexture ? diffuseTexture.getScene() : specularGlossinessTexture ? specularGlossinessTexture.getScene() : null;
  3349. if (scene) {
  3350. var resizedTextures = this._resizeTexturesToSameDimensions(diffuseTexture, specularGlossinessTexture, scene);
  3351. var diffuseSize = resizedTextures.texture1.getSize();
  3352. var diffuseBuffer = void 0;
  3353. var specularGlossinessBuffer = void 0;
  3354. var width = diffuseSize.width;
  3355. var height = diffuseSize.height;
  3356. var diffusePixels = resizedTextures.texture1.readPixels();
  3357. var specularPixels = resizedTextures.texture2.readPixels();
  3358. if (diffusePixels) {
  3359. diffuseBuffer = this._convertPixelArrayToFloat32(diffusePixels);
  3360. }
  3361. else {
  3362. return Promise.reject("Failed to retrieve pixels from diffuse texture!");
  3363. }
  3364. if (specularPixels) {
  3365. specularGlossinessBuffer = this._convertPixelArrayToFloat32(specularPixels);
  3366. }
  3367. else {
  3368. return Promise.reject("Failed to retrieve pixels from specular glossiness texture!");
  3369. }
  3370. var byteLength = specularGlossinessBuffer.byteLength;
  3371. var metallicRoughnessBuffer = new Uint8Array(byteLength);
  3372. var baseColorBuffer = new Uint8Array(byteLength);
  3373. var strideSize = 4;
  3374. var maxBaseColor = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].Black();
  3375. var maxMetallic = 0;
  3376. var maxRoughness = 0;
  3377. for (var h = 0; h < height; ++h) {
  3378. for (var w = 0; w < width; ++w) {
  3379. var offset = (width * h + w) * strideSize;
  3380. var diffuseColor = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"](diffuseBuffer[offset], diffuseBuffer[offset + 1], diffuseBuffer[offset + 2]).toLinearSpace().multiply(factors.diffuseColor);
  3381. var specularColor = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"](specularGlossinessBuffer[offset], specularGlossinessBuffer[offset + 1], specularGlossinessBuffer[offset + 2]).toLinearSpace().multiply(factors.specularColor);
  3382. var glossiness = (specularGlossinessBuffer[offset + 3]) * factors.glossiness;
  3383. var specularGlossiness = {
  3384. diffuseColor: diffuseColor,
  3385. specularColor: specularColor,
  3386. glossiness: glossiness
  3387. };
  3388. var metallicRoughness = this._convertSpecularGlossinessToMetallicRoughness(specularGlossiness);
  3389. maxBaseColor.r = Math.max(maxBaseColor.r, metallicRoughness.baseColor.r);
  3390. maxBaseColor.g = Math.max(maxBaseColor.g, metallicRoughness.baseColor.g);
  3391. maxBaseColor.b = Math.max(maxBaseColor.b, metallicRoughness.baseColor.b);
  3392. maxMetallic = Math.max(maxMetallic, metallicRoughness.metallic);
  3393. maxRoughness = Math.max(maxRoughness, metallicRoughness.roughness);
  3394. baseColorBuffer[offset] = metallicRoughness.baseColor.r * 255;
  3395. baseColorBuffer[offset + 1] = metallicRoughness.baseColor.g * 255;
  3396. baseColorBuffer[offset + 2] = metallicRoughness.baseColor.b * 255;
  3397. baseColorBuffer[offset + 3] = resizedTextures.texture1.hasAlpha ? diffuseBuffer[offset + 3] * 255 : 255;
  3398. metallicRoughnessBuffer[offset] = 0;
  3399. metallicRoughnessBuffer[offset + 1] = metallicRoughness.roughness * 255;
  3400. metallicRoughnessBuffer[offset + 2] = metallicRoughness.metallic * 255;
  3401. metallicRoughnessBuffer[offset + 3] = 255;
  3402. }
  3403. }
  3404. // Retrieves the metallic roughness factors from the maximum texture values.
  3405. var metallicRoughnessFactors_1 = {
  3406. baseColor: maxBaseColor,
  3407. metallic: maxMetallic,
  3408. roughness: maxRoughness
  3409. };
  3410. var writeOutMetallicRoughnessTexture = false;
  3411. var writeOutBaseColorTexture = false;
  3412. for (var h = 0; h < height; ++h) {
  3413. for (var w = 0; w < width; ++w) {
  3414. var destinationOffset = (width * h + w) * strideSize;
  3415. baseColorBuffer[destinationOffset] /= metallicRoughnessFactors_1.baseColor.r > _GLTFMaterialExporter._Epsilon ? metallicRoughnessFactors_1.baseColor.r : 1;
  3416. baseColorBuffer[destinationOffset + 1] /= metallicRoughnessFactors_1.baseColor.g > _GLTFMaterialExporter._Epsilon ? metallicRoughnessFactors_1.baseColor.g : 1;
  3417. baseColorBuffer[destinationOffset + 2] /= metallicRoughnessFactors_1.baseColor.b > _GLTFMaterialExporter._Epsilon ? metallicRoughnessFactors_1.baseColor.b : 1;
  3418. var linearBaseColorPixel = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].FromInts(baseColorBuffer[destinationOffset], baseColorBuffer[destinationOffset + 1], baseColorBuffer[destinationOffset + 2]);
  3419. var sRGBBaseColorPixel = linearBaseColorPixel.toGammaSpace();
  3420. baseColorBuffer[destinationOffset] = sRGBBaseColorPixel.r * 255;
  3421. baseColorBuffer[destinationOffset + 1] = sRGBBaseColorPixel.g * 255;
  3422. baseColorBuffer[destinationOffset + 2] = sRGBBaseColorPixel.b * 255;
  3423. if (!_GLTFMaterialExporter.FuzzyEquals(sRGBBaseColorPixel, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].White(), _GLTFMaterialExporter._Epsilon)) {
  3424. writeOutBaseColorTexture = true;
  3425. }
  3426. metallicRoughnessBuffer[destinationOffset + 1] /= metallicRoughnessFactors_1.roughness > _GLTFMaterialExporter._Epsilon ? metallicRoughnessFactors_1.roughness : 1;
  3427. metallicRoughnessBuffer[destinationOffset + 2] /= metallicRoughnessFactors_1.metallic > _GLTFMaterialExporter._Epsilon ? metallicRoughnessFactors_1.metallic : 1;
  3428. var metallicRoughnessPixel = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].FromInts(255, metallicRoughnessBuffer[destinationOffset + 1], metallicRoughnessBuffer[destinationOffset + 2]);
  3429. if (!_GLTFMaterialExporter.FuzzyEquals(metallicRoughnessPixel, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].White(), _GLTFMaterialExporter._Epsilon)) {
  3430. writeOutMetallicRoughnessTexture = true;
  3431. }
  3432. }
  3433. }
  3434. if (writeOutMetallicRoughnessTexture) {
  3435. var promise = this._createBase64FromCanvasAsync(metallicRoughnessBuffer, width, height, mimeType).then(function (metallicRoughnessBase64) {
  3436. metallicRoughnessFactors_1.metallicRoughnessTextureBase64 = metallicRoughnessBase64;
  3437. });
  3438. promises.push(promise);
  3439. }
  3440. if (writeOutBaseColorTexture) {
  3441. var promise = this._createBase64FromCanvasAsync(baseColorBuffer, width, height, mimeType).then(function (baseColorBase64) {
  3442. metallicRoughnessFactors_1.baseColorTextureBase64 = baseColorBase64;
  3443. });
  3444. promises.push(promise);
  3445. }
  3446. return Promise.all(promises).then(function () {
  3447. return metallicRoughnessFactors_1;
  3448. });
  3449. }
  3450. else {
  3451. return Promise.reject("_ConvertSpecularGlossinessTexturesToMetallicRoughness: Scene from textures is missing!");
  3452. }
  3453. };
  3454. /**
  3455. * Converts specular glossiness material properties to metallic roughness
  3456. * @param specularGlossiness interface with specular glossiness material properties
  3457. * @returns interface with metallic roughness material properties
  3458. */
  3459. _GLTFMaterialExporter.prototype._convertSpecularGlossinessToMetallicRoughness = function (specularGlossiness) {
  3460. var diffusePerceivedBrightness = this._getPerceivedBrightness(specularGlossiness.diffuseColor);
  3461. var specularPerceivedBrightness = this._getPerceivedBrightness(specularGlossiness.specularColor);
  3462. var oneMinusSpecularStrength = 1 - this._getMaxComponent(specularGlossiness.specularColor);
  3463. var metallic = _GLTFMaterialExporter._SolveMetallic(diffusePerceivedBrightness, specularPerceivedBrightness, oneMinusSpecularStrength);
  3464. var baseColorFromDiffuse = specularGlossiness.diffuseColor.scale(oneMinusSpecularStrength / (1.0 - _GLTFMaterialExporter._DielectricSpecular.r) / Math.max(1 - metallic, _GLTFMaterialExporter._Epsilon));
  3465. var baseColorFromSpecular = specularGlossiness.specularColor.subtract(_GLTFMaterialExporter._DielectricSpecular.scale(1 - metallic)).scale(1 / Math.max(metallic, _GLTFMaterialExporter._Epsilon));
  3466. var baseColor = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].Lerp(baseColorFromDiffuse, baseColorFromSpecular, metallic * metallic);
  3467. baseColor = baseColor.clampToRef(0, 1, baseColor);
  3468. var metallicRoughness = {
  3469. baseColor: baseColor,
  3470. metallic: metallic,
  3471. roughness: 1 - specularGlossiness.glossiness
  3472. };
  3473. return metallicRoughness;
  3474. };
  3475. /**
  3476. * Calculates the surface reflectance, independent of lighting conditions
  3477. * @param color Color source to calculate brightness from
  3478. * @returns number representing the perceived brightness, or zero if color is undefined
  3479. */
  3480. _GLTFMaterialExporter.prototype._getPerceivedBrightness = function (color) {
  3481. if (color) {
  3482. return Math.sqrt(0.299 * color.r * color.r + 0.587 * color.g * color.g + 0.114 * color.b * color.b);
  3483. }
  3484. return 0;
  3485. };
  3486. /**
  3487. * Returns the maximum color component value
  3488. * @param color
  3489. * @returns maximum color component value, or zero if color is null or undefined
  3490. */
  3491. _GLTFMaterialExporter.prototype._getMaxComponent = function (color) {
  3492. if (color) {
  3493. return Math.max(color.r, Math.max(color.g, color.b));
  3494. }
  3495. return 0;
  3496. };
  3497. /**
  3498. * Convert a PBRMaterial (Metallic/Roughness) to Metallic Roughness factors
  3499. * @param babylonPBRMaterial BJS PBR Metallic Roughness Material
  3500. * @param mimeType mime type to use for the textures
  3501. * @param images array of glTF image interfaces
  3502. * @param textures array of glTF texture interfaces
  3503. * @param glTFPbrMetallicRoughness glTF PBR Metallic Roughness interface
  3504. * @param imageData map of image file name to data
  3505. * @param hasTextureCoords specifies if texture coordinates are present on the submesh to determine if textures should be applied
  3506. * @returns glTF PBR Metallic Roughness factors
  3507. */
  3508. _GLTFMaterialExporter.prototype._convertMetalRoughFactorsToMetallicRoughnessAsync = function (babylonPBRMaterial, mimeType, glTFPbrMetallicRoughness, hasTextureCoords) {
  3509. var promises = [];
  3510. var metallicRoughness = {
  3511. baseColor: babylonPBRMaterial.albedoColor,
  3512. metallic: babylonPBRMaterial.metallic,
  3513. roughness: babylonPBRMaterial.roughness
  3514. };
  3515. if (hasTextureCoords) {
  3516. if (babylonPBRMaterial.albedoTexture) {
  3517. promises.push(this._exportTextureAsync(babylonPBRMaterial.albedoTexture, mimeType).then(function (glTFTexture) {
  3518. if (glTFTexture) {
  3519. glTFPbrMetallicRoughness.baseColorTexture = glTFTexture;
  3520. }
  3521. }));
  3522. }
  3523. if (babylonPBRMaterial.metallicTexture) {
  3524. promises.push(this._exportTextureAsync(babylonPBRMaterial.metallicTexture, mimeType).then(function (glTFTexture) {
  3525. if (glTFTexture) {
  3526. glTFPbrMetallicRoughness.metallicRoughnessTexture = glTFTexture;
  3527. }
  3528. }));
  3529. }
  3530. }
  3531. return Promise.all(promises).then(function () {
  3532. return metallicRoughness;
  3533. });
  3534. };
  3535. _GLTFMaterialExporter.prototype._getGLTFTextureSampler = function (texture) {
  3536. var sampler = this._getGLTFTextureWrapModesSampler(texture);
  3537. var samplingMode = texture instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"] ? texture.samplingMode : null;
  3538. if (samplingMode != null) {
  3539. switch (samplingMode) {
  3540. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"].LINEAR_LINEAR: {
  3541. sampler.magFilter = 9729 /* LINEAR */;
  3542. sampler.minFilter = 9729 /* LINEAR */;
  3543. break;
  3544. }
  3545. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"].LINEAR_NEAREST: {
  3546. sampler.magFilter = 9729 /* LINEAR */;
  3547. sampler.minFilter = 9728 /* NEAREST */;
  3548. break;
  3549. }
  3550. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"].NEAREST_LINEAR: {
  3551. sampler.magFilter = 9728 /* NEAREST */;
  3552. sampler.minFilter = 9729 /* LINEAR */;
  3553. break;
  3554. }
  3555. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"].NEAREST_LINEAR_MIPLINEAR: {
  3556. sampler.magFilter = 9728 /* NEAREST */;
  3557. sampler.minFilter = 9987 /* LINEAR_MIPMAP_LINEAR */;
  3558. break;
  3559. }
  3560. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"].NEAREST_NEAREST: {
  3561. sampler.magFilter = 9728 /* NEAREST */;
  3562. sampler.minFilter = 9728 /* NEAREST */;
  3563. break;
  3564. }
  3565. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"].NEAREST_LINEAR_MIPNEAREST: {
  3566. sampler.magFilter = 9728 /* NEAREST */;
  3567. sampler.minFilter = 9985 /* LINEAR_MIPMAP_NEAREST */;
  3568. break;
  3569. }
  3570. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"].LINEAR_NEAREST_MIPNEAREST: {
  3571. sampler.magFilter = 9729 /* LINEAR */;
  3572. sampler.minFilter = 9984 /* NEAREST_MIPMAP_NEAREST */;
  3573. break;
  3574. }
  3575. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"].LINEAR_NEAREST_MIPLINEAR: {
  3576. sampler.magFilter = 9729 /* LINEAR */;
  3577. sampler.minFilter = 9986 /* NEAREST_MIPMAP_LINEAR */;
  3578. break;
  3579. }
  3580. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"].NEAREST_NEAREST_MIPLINEAR: {
  3581. sampler.magFilter = 9728 /* NEAREST */;
  3582. sampler.minFilter = 9986 /* NEAREST_MIPMAP_LINEAR */;
  3583. break;
  3584. }
  3585. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"].LINEAR_LINEAR_MIPLINEAR: {
  3586. sampler.magFilter = 9729 /* LINEAR */;
  3587. sampler.minFilter = 9987 /* LINEAR_MIPMAP_LINEAR */;
  3588. break;
  3589. }
  3590. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"].LINEAR_LINEAR_MIPNEAREST: {
  3591. sampler.magFilter = 9729 /* LINEAR */;
  3592. sampler.minFilter = 9985 /* LINEAR_MIPMAP_NEAREST */;
  3593. break;
  3594. }
  3595. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"].NEAREST_NEAREST_MIPNEAREST: {
  3596. sampler.magFilter = 9728 /* NEAREST */;
  3597. sampler.minFilter = 9984 /* NEAREST_MIPMAP_NEAREST */;
  3598. break;
  3599. }
  3600. }
  3601. }
  3602. return sampler;
  3603. };
  3604. _GLTFMaterialExporter.prototype._getGLTFTextureWrapMode = function (wrapMode) {
  3605. switch (wrapMode) {
  3606. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"].WRAP_ADDRESSMODE: {
  3607. return 10497 /* REPEAT */;
  3608. }
  3609. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"].CLAMP_ADDRESSMODE: {
  3610. return 33071 /* CLAMP_TO_EDGE */;
  3611. }
  3612. case babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"].MIRROR_ADDRESSMODE: {
  3613. return 33648 /* MIRRORED_REPEAT */;
  3614. }
  3615. default: {
  3616. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].Error("Unsupported Texture Wrap Mode " + wrapMode + "!");
  3617. return 10497 /* REPEAT */;
  3618. }
  3619. }
  3620. };
  3621. _GLTFMaterialExporter.prototype._getGLTFTextureWrapModesSampler = function (texture) {
  3622. var wrapS = this._getGLTFTextureWrapMode(texture instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"] ? texture.wrapU : babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"].WRAP_ADDRESSMODE);
  3623. var wrapT = this._getGLTFTextureWrapMode(texture instanceof babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"] ? texture.wrapV : babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Texture"].WRAP_ADDRESSMODE);
  3624. if (wrapS === 10497 /* REPEAT */ && wrapT === 10497 /* REPEAT */) { // default wrapping mode in glTF, so omitting
  3625. return {};
  3626. }
  3627. return { wrapS: wrapS, wrapT: wrapT };
  3628. };
  3629. /**
  3630. * Convert a PBRMaterial (Specular/Glossiness) to Metallic Roughness factors
  3631. * @param babylonPBRMaterial BJS PBR Metallic Roughness Material
  3632. * @param mimeType mime type to use for the textures
  3633. * @param images array of glTF image interfaces
  3634. * @param textures array of glTF texture interfaces
  3635. * @param glTFPbrMetallicRoughness glTF PBR Metallic Roughness interface
  3636. * @param imageData map of image file name to data
  3637. * @param hasTextureCoords specifies if texture coordinates are present on the submesh to determine if textures should be applied
  3638. * @returns glTF PBR Metallic Roughness factors
  3639. */
  3640. _GLTFMaterialExporter.prototype._convertSpecGlossFactorsToMetallicRoughnessAsync = function (babylonPBRMaterial, mimeType, glTFPbrMetallicRoughness, hasTextureCoords) {
  3641. var _this = this;
  3642. return Promise.resolve().then(function () {
  3643. var samplers = _this._exporter._samplers;
  3644. var textures = _this._exporter._textures;
  3645. var specGloss = {
  3646. diffuseColor: babylonPBRMaterial.albedoColor || babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].White(),
  3647. specularColor: babylonPBRMaterial.reflectivityColor || babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].White(),
  3648. glossiness: babylonPBRMaterial.microSurface || 1,
  3649. };
  3650. var samplerIndex = null;
  3651. var sampler = _this._getGLTFTextureSampler(babylonPBRMaterial.albedoTexture);
  3652. if (sampler.magFilter != null && sampler.minFilter != null && sampler.wrapS != null && sampler.wrapT != null) {
  3653. samplers.push(sampler);
  3654. samplerIndex = samplers.length - 1;
  3655. }
  3656. if (babylonPBRMaterial.reflectivityTexture && !babylonPBRMaterial.useMicroSurfaceFromReflectivityMapAlpha) {
  3657. return Promise.reject("_ConvertPBRMaterial: Glossiness values not included in the reflectivity texture are currently not supported");
  3658. }
  3659. if ((babylonPBRMaterial.albedoTexture || babylonPBRMaterial.reflectivityTexture) && hasTextureCoords) {
  3660. return _this._convertSpecularGlossinessTexturesToMetallicRoughnessAsync(babylonPBRMaterial.albedoTexture, babylonPBRMaterial.reflectivityTexture, specGloss, mimeType).then(function (metallicRoughnessFactors) {
  3661. if (metallicRoughnessFactors.baseColorTextureBase64) {
  3662. var glTFBaseColorTexture = _this._getTextureInfoFromBase64(metallicRoughnessFactors.baseColorTextureBase64, "bjsBaseColorTexture_" + (textures.length) + ".png", mimeType, babylonPBRMaterial.albedoTexture ? babylonPBRMaterial.albedoTexture.coordinatesIndex : null, samplerIndex);
  3663. if (glTFBaseColorTexture) {
  3664. glTFPbrMetallicRoughness.baseColorTexture = glTFBaseColorTexture;
  3665. }
  3666. }
  3667. if (metallicRoughnessFactors.metallicRoughnessTextureBase64) {
  3668. var glTFMRColorTexture = _this._getTextureInfoFromBase64(metallicRoughnessFactors.metallicRoughnessTextureBase64, "bjsMetallicRoughnessTexture_" + (textures.length) + ".png", mimeType, babylonPBRMaterial.reflectivityTexture ? babylonPBRMaterial.reflectivityTexture.coordinatesIndex : null, samplerIndex);
  3669. if (glTFMRColorTexture) {
  3670. glTFPbrMetallicRoughness.metallicRoughnessTexture = glTFMRColorTexture;
  3671. }
  3672. }
  3673. return metallicRoughnessFactors;
  3674. });
  3675. }
  3676. else {
  3677. return _this._convertSpecularGlossinessToMetallicRoughness(specGloss);
  3678. }
  3679. });
  3680. };
  3681. /**
  3682. * Converts a Babylon PBR Metallic Roughness Material to a glTF Material
  3683. * @param babylonPBRMaterial BJS PBR Metallic Roughness Material
  3684. * @param mimeType mime type to use for the textures
  3685. * @param images array of glTF image interfaces
  3686. * @param textures array of glTF texture interfaces
  3687. * @param materials array of glTF material interfaces
  3688. * @param imageData map of image file name to data
  3689. * @param hasTextureCoords specifies if texture coordinates are present on the submesh to determine if textures should be applied
  3690. */
  3691. _GLTFMaterialExporter.prototype._convertPBRMaterialAsync = function (babylonPBRMaterial, mimeType, hasTextureCoords) {
  3692. var _this = this;
  3693. var glTFPbrMetallicRoughness = {};
  3694. var glTFMaterial = {
  3695. name: babylonPBRMaterial.name
  3696. };
  3697. var useMetallicRoughness = babylonPBRMaterial.isMetallicWorkflow();
  3698. if (useMetallicRoughness) {
  3699. if (babylonPBRMaterial.albedoColor) {
  3700. glTFPbrMetallicRoughness.baseColorFactor = [
  3701. babylonPBRMaterial.albedoColor.r,
  3702. babylonPBRMaterial.albedoColor.g,
  3703. babylonPBRMaterial.albedoColor.b,
  3704. babylonPBRMaterial.alpha
  3705. ];
  3706. }
  3707. return this._convertMetalRoughFactorsToMetallicRoughnessAsync(babylonPBRMaterial, mimeType, glTFPbrMetallicRoughness, hasTextureCoords).then(function (metallicRoughness) {
  3708. return _this.setMetallicRoughnessPbrMaterial(metallicRoughness, babylonPBRMaterial, glTFMaterial, glTFPbrMetallicRoughness, mimeType, hasTextureCoords);
  3709. });
  3710. }
  3711. else {
  3712. return this._convertSpecGlossFactorsToMetallicRoughnessAsync(babylonPBRMaterial, mimeType, glTFPbrMetallicRoughness, hasTextureCoords).then(function (metallicRoughness) {
  3713. return _this.setMetallicRoughnessPbrMaterial(metallicRoughness, babylonPBRMaterial, glTFMaterial, glTFPbrMetallicRoughness, mimeType, hasTextureCoords);
  3714. });
  3715. }
  3716. };
  3717. _GLTFMaterialExporter.prototype.setMetallicRoughnessPbrMaterial = function (metallicRoughness, babylonPBRMaterial, glTFMaterial, glTFPbrMetallicRoughness, mimeType, hasTextureCoords) {
  3718. var materialMap = this._exporter._materialMap;
  3719. var materials = this._exporter._materials;
  3720. var promises = [];
  3721. if (metallicRoughness) {
  3722. _GLTFMaterialExporter._SetAlphaMode(glTFMaterial, babylonPBRMaterial);
  3723. if (!(_GLTFMaterialExporter.FuzzyEquals(metallicRoughness.baseColor, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].White(), _GLTFMaterialExporter._Epsilon) && babylonPBRMaterial.alpha >= _GLTFMaterialExporter._Epsilon)) {
  3724. glTFPbrMetallicRoughness.baseColorFactor = [
  3725. metallicRoughness.baseColor.r,
  3726. metallicRoughness.baseColor.g,
  3727. metallicRoughness.baseColor.b,
  3728. babylonPBRMaterial.alpha
  3729. ];
  3730. }
  3731. if (metallicRoughness.metallic != null && metallicRoughness.metallic !== 1) {
  3732. glTFPbrMetallicRoughness.metallicFactor = metallicRoughness.metallic;
  3733. }
  3734. if (metallicRoughness.roughness != null && metallicRoughness.roughness !== 1) {
  3735. glTFPbrMetallicRoughness.roughnessFactor = metallicRoughness.roughness;
  3736. }
  3737. if (babylonPBRMaterial.backFaceCulling != null && !babylonPBRMaterial.backFaceCulling) {
  3738. if (!babylonPBRMaterial.twoSidedLighting) {
  3739. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].Warn(babylonPBRMaterial.name + ": Back-face culling enabled and two-sided lighting disabled is not supported in glTF.");
  3740. }
  3741. glTFMaterial.doubleSided = true;
  3742. }
  3743. if (hasTextureCoords) {
  3744. if (babylonPBRMaterial.bumpTexture) {
  3745. var promise = this._exportTextureAsync(babylonPBRMaterial.bumpTexture, mimeType).then(function (glTFTexture) {
  3746. if (glTFTexture) {
  3747. glTFMaterial.normalTexture = glTFTexture;
  3748. if (babylonPBRMaterial.bumpTexture.level !== 1) {
  3749. glTFMaterial.normalTexture.scale = babylonPBRMaterial.bumpTexture.level;
  3750. }
  3751. }
  3752. });
  3753. promises.push(promise);
  3754. }
  3755. if (babylonPBRMaterial.ambientTexture) {
  3756. var promise = this._exportTextureAsync(babylonPBRMaterial.ambientTexture, mimeType).then(function (glTFTexture) {
  3757. if (glTFTexture) {
  3758. var occlusionTexture = {
  3759. index: glTFTexture.index
  3760. };
  3761. glTFMaterial.occlusionTexture = occlusionTexture;
  3762. if (babylonPBRMaterial.ambientTextureStrength) {
  3763. occlusionTexture.strength = babylonPBRMaterial.ambientTextureStrength;
  3764. }
  3765. }
  3766. });
  3767. promises.push(promise);
  3768. }
  3769. if (babylonPBRMaterial.emissiveTexture) {
  3770. var promise = this._exportTextureAsync(babylonPBRMaterial.emissiveTexture, mimeType).then(function (glTFTexture) {
  3771. if (glTFTexture) {
  3772. glTFMaterial.emissiveTexture = glTFTexture;
  3773. }
  3774. });
  3775. promises.push(promise);
  3776. }
  3777. }
  3778. if (!_GLTFMaterialExporter.FuzzyEquals(babylonPBRMaterial.emissiveColor, babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"].Black(), _GLTFMaterialExporter._Epsilon)) {
  3779. glTFMaterial.emissiveFactor = babylonPBRMaterial.emissiveColor.asArray();
  3780. }
  3781. glTFMaterial.pbrMetallicRoughness = glTFPbrMetallicRoughness;
  3782. materials.push(glTFMaterial);
  3783. materialMap[babylonPBRMaterial.uniqueId] = materials.length - 1;
  3784. }
  3785. return Promise.all(promises).then(function (result) { });
  3786. };
  3787. _GLTFMaterialExporter.prototype.getPixelsFromTexture = function (babylonTexture) {
  3788. var pixels = babylonTexture.textureType === babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Constants"].TEXTURETYPE_UNSIGNED_INT ? babylonTexture.readPixels() : babylonTexture.readPixels();
  3789. return pixels;
  3790. };
  3791. /**
  3792. * Extracts a texture from a Babylon texture into file data and glTF data
  3793. * @param babylonTexture Babylon texture to extract
  3794. * @param mimeType Mime Type of the babylonTexture
  3795. * @return glTF texture info, or null if the texture format is not supported
  3796. */
  3797. _GLTFMaterialExporter.prototype._exportTextureAsync = function (babylonTexture, mimeType) {
  3798. var _this = this;
  3799. var extensionPromise = this._exporter._extensionsPreExportTextureAsync("exporter", babylonTexture, mimeType);
  3800. if (!extensionPromise) {
  3801. return this._exportTextureInfoAsync(babylonTexture, mimeType);
  3802. }
  3803. return extensionPromise.then(function (texture) {
  3804. if (!texture) {
  3805. return _this._exportTextureInfoAsync(babylonTexture, mimeType);
  3806. }
  3807. return _this._exportTextureInfoAsync(texture, mimeType);
  3808. });
  3809. };
  3810. _GLTFMaterialExporter.prototype._exportTextureInfoAsync = function (babylonTexture, mimeType) {
  3811. var _this = this;
  3812. return Promise.resolve().then(function () {
  3813. var textureUid = babylonTexture.uid;
  3814. if (textureUid in _this._textureMap) {
  3815. return _this._textureMap[textureUid];
  3816. }
  3817. else {
  3818. var samplers = _this._exporter._samplers;
  3819. var sampler = _this._getGLTFTextureSampler(babylonTexture);
  3820. var samplerIndex_1 = null;
  3821. // if a pre-existing sampler with identical parameters exists, then reuse the previous sampler
  3822. var foundSamplerIndex = null;
  3823. for (var i = 0; i < samplers.length; ++i) {
  3824. var s = samplers[i];
  3825. if (s.minFilter === sampler.minFilter && s.magFilter === sampler.magFilter &&
  3826. s.wrapS === sampler.wrapS && s.wrapT === sampler.wrapT) {
  3827. foundSamplerIndex = i;
  3828. break;
  3829. }
  3830. }
  3831. if (foundSamplerIndex == null) {
  3832. samplers.push(sampler);
  3833. samplerIndex_1 = samplers.length - 1;
  3834. }
  3835. else {
  3836. samplerIndex_1 = foundSamplerIndex;
  3837. }
  3838. var pixels = _this.getPixelsFromTexture(babylonTexture);
  3839. var size = babylonTexture.getSize();
  3840. return _this._createBase64FromCanvasAsync(pixels, size.width, size.height, mimeType).then(function (base64Data) {
  3841. var textureInfo = _this._getTextureInfoFromBase64(base64Data, babylonTexture.name.replace(/\.\/|\/|\.\\|\\/g, "_"), mimeType, babylonTexture.coordinatesIndex, samplerIndex_1);
  3842. if (textureInfo) {
  3843. _this._textureMap[textureUid] = textureInfo;
  3844. }
  3845. return textureInfo;
  3846. });
  3847. }
  3848. });
  3849. };
  3850. /**
  3851. * Builds a texture from base64 string
  3852. * @param base64Texture base64 texture string
  3853. * @param baseTextureName Name to use for the texture
  3854. * @param mimeType image mime type for the texture
  3855. * @param images array of images
  3856. * @param textures array of textures
  3857. * @param imageData map of image data
  3858. * @returns glTF texture info, or null if the texture format is not supported
  3859. */
  3860. _GLTFMaterialExporter.prototype._getTextureInfoFromBase64 = function (base64Texture, baseTextureName, mimeType, texCoordIndex, samplerIndex) {
  3861. var textures = this._exporter._textures;
  3862. var images = this._exporter._images;
  3863. var imageData = this._exporter._imageData;
  3864. var textureInfo = null;
  3865. var glTFTexture = {
  3866. source: images.length,
  3867. name: baseTextureName
  3868. };
  3869. if (samplerIndex != null) {
  3870. glTFTexture.sampler = samplerIndex;
  3871. }
  3872. var binStr = atob(base64Texture.split(',')[1]);
  3873. var arrBuff = new ArrayBuffer(binStr.length);
  3874. var arr = new Uint8Array(arrBuff);
  3875. for (var i = 0, length_2 = binStr.length; i < length_2; ++i) {
  3876. arr[i] = binStr.charCodeAt(i);
  3877. }
  3878. var imageValues = { data: arr, mimeType: mimeType };
  3879. var extension = mimeType === "image/jpeg" /* JPEG */ ? '.jpeg' : '.png';
  3880. var textureName = baseTextureName + extension;
  3881. var originalTextureName = textureName;
  3882. if (textureName in imageData) {
  3883. textureName = baseTextureName + "_" + babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].RandomId() + extension;
  3884. }
  3885. imageData[textureName] = imageValues;
  3886. if (mimeType === "image/jpeg" /* JPEG */ || mimeType === "image/png" /* PNG */) {
  3887. var glTFImage = {
  3888. name: baseTextureName,
  3889. uri: textureName
  3890. };
  3891. var foundIndex = null;
  3892. for (var i = 0; i < images.length; ++i) {
  3893. if (images[i].uri === originalTextureName) {
  3894. foundIndex = i;
  3895. break;
  3896. }
  3897. }
  3898. if (foundIndex == null) {
  3899. images.push(glTFImage);
  3900. glTFTexture.source = images.length - 1;
  3901. }
  3902. else {
  3903. glTFTexture.source = foundIndex;
  3904. }
  3905. textures.push(glTFTexture);
  3906. textureInfo = {
  3907. index: textures.length - 1
  3908. };
  3909. if (texCoordIndex != null) {
  3910. textureInfo.texCoord = texCoordIndex;
  3911. }
  3912. }
  3913. else {
  3914. babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Tools"].Error("Unsupported texture mime type " + mimeType);
  3915. }
  3916. return textureInfo;
  3917. };
  3918. /**
  3919. * Represents the dielectric specular values for R, G and B
  3920. */
  3921. _GLTFMaterialExporter._DielectricSpecular = new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Color3"](0.04, 0.04, 0.04);
  3922. /**
  3923. * Allows the maximum specular power to be defined for material calculations
  3924. */
  3925. _GLTFMaterialExporter._MaxSpecularPower = 1024;
  3926. /**
  3927. * Numeric tolerance value
  3928. */
  3929. _GLTFMaterialExporter._Epsilon = 1e-6;
  3930. return _GLTFMaterialExporter;
  3931. }());
  3932. /***/ }),
  3933. /***/ "./glTF/2.0/glTFSerializer.ts":
  3934. /*!************************************!*\
  3935. !*** ./glTF/2.0/glTFSerializer.ts ***!
  3936. \************************************/
  3937. /*! exports provided: GLTF2Export */
  3938. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  3939. "use strict";
  3940. __webpack_require__.r(__webpack_exports__);
  3941. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GLTF2Export", function() { return GLTF2Export; });
  3942. /* harmony import */ var _glTFExporter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./glTFExporter */ "./glTF/2.0/glTFExporter.ts");
  3943. /**
  3944. * Class for generating glTF data from a Babylon scene.
  3945. */
  3946. var GLTF2Export = /** @class */ (function () {
  3947. function GLTF2Export() {
  3948. }
  3949. /**
  3950. * Exports the geometry of the scene to .gltf file format asynchronously
  3951. * @param scene Babylon scene with scene hierarchy information
  3952. * @param filePrefix File prefix to use when generating the glTF file
  3953. * @param options Exporter options
  3954. * @returns Returns an object with a .gltf file and associates texture names
  3955. * as keys and their data and paths as values
  3956. */
  3957. GLTF2Export.GLTFAsync = function (scene, filePrefix, options) {
  3958. return scene.whenReadyAsync().then(function () {
  3959. var glTFPrefix = filePrefix.replace(/\.[^/.]+$/, "");
  3960. var gltfGenerator = new _glTFExporter__WEBPACK_IMPORTED_MODULE_0__["_Exporter"](scene, options);
  3961. return gltfGenerator._generateGLTFAsync(glTFPrefix);
  3962. });
  3963. };
  3964. GLTF2Export._PreExportAsync = function (scene, options) {
  3965. return Promise.resolve().then(function () {
  3966. if (options && options.exportWithoutWaitingForScene) {
  3967. return Promise.resolve();
  3968. }
  3969. else {
  3970. return scene.whenReadyAsync();
  3971. }
  3972. });
  3973. };
  3974. GLTF2Export._PostExportAsync = function (scene, glTFData, options) {
  3975. return Promise.resolve().then(function () {
  3976. if (options && options.exportWithoutWaitingForScene) {
  3977. return glTFData;
  3978. }
  3979. else {
  3980. return glTFData;
  3981. }
  3982. });
  3983. };
  3984. /**
  3985. * Exports the geometry of the scene to .glb file format asychronously
  3986. * @param scene Babylon scene with scene hierarchy information
  3987. * @param filePrefix File prefix to use when generating glb file
  3988. * @param options Exporter options
  3989. * @returns Returns an object with a .glb filename as key and data as value
  3990. */
  3991. GLTF2Export.GLBAsync = function (scene, filePrefix, options) {
  3992. var _this = this;
  3993. return this._PreExportAsync(scene, options).then(function () {
  3994. var glTFPrefix = filePrefix.replace(/\.[^/.]+$/, "");
  3995. var gltfGenerator = new _glTFExporter__WEBPACK_IMPORTED_MODULE_0__["_Exporter"](scene, options);
  3996. return gltfGenerator._generateGLBAsync(glTFPrefix).then(function (glTFData) {
  3997. return _this._PostExportAsync(scene, glTFData, options);
  3998. });
  3999. });
  4000. };
  4001. return GLTF2Export;
  4002. }());
  4003. /***/ }),
  4004. /***/ "./glTF/2.0/glTFUtilities.ts":
  4005. /*!***********************************!*\
  4006. !*** ./glTF/2.0/glTFUtilities.ts ***!
  4007. \***********************************/
  4008. /*! exports provided: _GLTFUtilities */
  4009. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  4010. "use strict";
  4011. __webpack_require__.r(__webpack_exports__);
  4012. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "_GLTFUtilities", function() { return _GLTFUtilities; });
  4013. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Maths/math */ "babylonjs/Maths/math");
  4014. /* harmony import */ var babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__);
  4015. /**
  4016. * @hidden
  4017. */
  4018. var _GLTFUtilities = /** @class */ (function () {
  4019. function _GLTFUtilities() {
  4020. }
  4021. /**
  4022. * Creates a buffer view based on the supplied arguments
  4023. * @param bufferIndex index value of the specified buffer
  4024. * @param byteOffset byte offset value
  4025. * @param byteLength byte length of the bufferView
  4026. * @param byteStride byte distance between conequential elements
  4027. * @param name name of the buffer view
  4028. * @returns bufferView for glTF
  4029. */
  4030. _GLTFUtilities._CreateBufferView = function (bufferIndex, byteOffset, byteLength, byteStride, name) {
  4031. var bufferview = { buffer: bufferIndex, byteLength: byteLength };
  4032. if (byteOffset) {
  4033. bufferview.byteOffset = byteOffset;
  4034. }
  4035. if (name) {
  4036. bufferview.name = name;
  4037. }
  4038. if (byteStride) {
  4039. bufferview.byteStride = byteStride;
  4040. }
  4041. return bufferview;
  4042. };
  4043. /**
  4044. * Creates an accessor based on the supplied arguments
  4045. * @param bufferviewIndex The index of the bufferview referenced by this accessor
  4046. * @param name The name of the accessor
  4047. * @param type The type of the accessor
  4048. * @param componentType The datatype of components in the attribute
  4049. * @param count The number of attributes referenced by this accessor
  4050. * @param byteOffset The offset relative to the start of the bufferView in bytes
  4051. * @param min Minimum value of each component in this attribute
  4052. * @param max Maximum value of each component in this attribute
  4053. * @returns accessor for glTF
  4054. */
  4055. _GLTFUtilities._CreateAccessor = function (bufferviewIndex, name, type, componentType, count, byteOffset, min, max) {
  4056. var accessor = { name: name, bufferView: bufferviewIndex, componentType: componentType, count: count, type: type };
  4057. if (min != null) {
  4058. accessor.min = min;
  4059. }
  4060. if (max != null) {
  4061. accessor.max = max;
  4062. }
  4063. if (byteOffset != null) {
  4064. accessor.byteOffset = byteOffset;
  4065. }
  4066. return accessor;
  4067. };
  4068. /**
  4069. * Calculates the minimum and maximum values of an array of position floats
  4070. * @param positions Positions array of a mesh
  4071. * @param vertexStart Starting vertex offset to calculate min and max values
  4072. * @param vertexCount Number of vertices to check for min and max values
  4073. * @returns min number array and max number array
  4074. */
  4075. _GLTFUtilities._CalculateMinMaxPositions = function (positions, vertexStart, vertexCount, convertToRightHandedSystem) {
  4076. var min = [Infinity, Infinity, Infinity];
  4077. var max = [-Infinity, -Infinity, -Infinity];
  4078. var positionStrideSize = 3;
  4079. var indexOffset;
  4080. var position;
  4081. var vector;
  4082. if (vertexCount) {
  4083. for (var i = vertexStart, length_1 = vertexStart + vertexCount; i < length_1; ++i) {
  4084. indexOffset = positionStrideSize * i;
  4085. position = babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Vector3"].FromArray(positions, indexOffset);
  4086. if (convertToRightHandedSystem) {
  4087. _GLTFUtilities._GetRightHandedPositionVector3FromRef(position);
  4088. }
  4089. vector = position.asArray();
  4090. for (var j = 0; j < positionStrideSize; ++j) {
  4091. var num = vector[j];
  4092. if (num < min[j]) {
  4093. min[j] = num;
  4094. }
  4095. if (num > max[j]) {
  4096. max[j] = num;
  4097. }
  4098. ++indexOffset;
  4099. }
  4100. }
  4101. }
  4102. return { min: min, max: max };
  4103. };
  4104. /**
  4105. * Converts a new right-handed Vector3
  4106. * @param vector vector3 array
  4107. * @returns right-handed Vector3
  4108. */
  4109. _GLTFUtilities._GetRightHandedPositionVector3 = function (vector) {
  4110. return new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Vector3"](vector.x, vector.y, -vector.z);
  4111. };
  4112. /**
  4113. * Converts a Vector3 to right-handed
  4114. * @param vector Vector3 to convert to right-handed
  4115. */
  4116. _GLTFUtilities._GetRightHandedPositionVector3FromRef = function (vector) {
  4117. vector.z *= -1;
  4118. };
  4119. /**
  4120. * Converts a three element number array to right-handed
  4121. * @param vector number array to convert to right-handed
  4122. */
  4123. _GLTFUtilities._GetRightHandedPositionArray3FromRef = function (vector) {
  4124. vector[2] *= -1;
  4125. };
  4126. /**
  4127. * Converts a new right-handed Vector3
  4128. * @param vector vector3 array
  4129. * @returns right-handed Vector3
  4130. */
  4131. _GLTFUtilities._GetRightHandedNormalVector3 = function (vector) {
  4132. return new babylonjs_Maths_math__WEBPACK_IMPORTED_MODULE_0__["Vector3"](vector.x, vector.y, -vector.z);
  4133. };
  4134. /**
  4135. * Converts a Vector3 to right-handed
  4136. * @param vector Vector3 to convert to right-handed
  4137. */
  4138. _GLTFUtilities._GetRightHandedNormalVector3FromRef = function (vector) {
  4139. vector.z *= -1;
  4140. };
  4141. /**
  4142. * Converts a three element number array to right-handed
  4143. * @param vector number array to convert to right-handed
  4144. */
  4145. _GLTFUtilities._GetRightHandedNormalArray3FromRef = function (vector) {
  4146. vector[2] *= -1;
  4147. };
  4148. /**
  4149. * Converts a Vector4 to right-handed
  4150. * @param vector Vector4 to convert to right-handed
  4151. */
  4152. _GLTFUtilities._GetRightHandedVector4FromRef = function (vector) {
  4153. vector.z *= -1;
  4154. vector.w *= -1;
  4155. };
  4156. /**
  4157. * Converts a Vector4 to right-handed
  4158. * @param vector Vector4 to convert to right-handed
  4159. */
  4160. _GLTFUtilities._GetRightHandedArray4FromRef = function (vector) {
  4161. vector[2] *= -1;
  4162. vector[3] *= -1;
  4163. };
  4164. /**
  4165. * Converts a Quaternion to right-handed
  4166. * @param quaternion Source quaternion to convert to right-handed
  4167. */
  4168. _GLTFUtilities._GetRightHandedQuaternionFromRef = function (quaternion) {
  4169. quaternion.x *= -1;
  4170. quaternion.y *= -1;
  4171. };
  4172. /**
  4173. * Converts a Quaternion to right-handed
  4174. * @param quaternion Source quaternion to convert to right-handed
  4175. */
  4176. _GLTFUtilities._GetRightHandedQuaternionArrayFromRef = function (quaternion) {
  4177. quaternion[0] *= -1;
  4178. quaternion[1] *= -1;
  4179. };
  4180. _GLTFUtilities._NormalizeTangentFromRef = function (tangent) {
  4181. var length = Math.sqrt(tangent.x * tangent.x + tangent.y * tangent.y + tangent.z * tangent.z);
  4182. if (length > 0) {
  4183. tangent.x /= length;
  4184. tangent.y /= length;
  4185. tangent.z /= length;
  4186. }
  4187. };
  4188. return _GLTFUtilities;
  4189. }());
  4190. /***/ }),
  4191. /***/ "./glTF/2.0/index.ts":
  4192. /*!***************************!*\
  4193. !*** ./glTF/2.0/index.ts ***!
  4194. \***************************/
  4195. /*! exports provided: GLTFData, GLTF2Export, _GLTFAnimation, _Exporter, _BinaryWriter, __IGLTFExporterExtensionV2, _GLTFMaterialExporter, _GLTFUtilities, KHR_texture_transform, KHR_lights_punctual */
  4196. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  4197. "use strict";
  4198. __webpack_require__.r(__webpack_exports__);
  4199. /* harmony import */ var _glTFAnimation__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./glTFAnimation */ "./glTF/2.0/glTFAnimation.ts");
  4200. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_GLTFAnimation", function() { return _glTFAnimation__WEBPACK_IMPORTED_MODULE_0__["_GLTFAnimation"]; });
  4201. /* harmony import */ var _glTFData__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./glTFData */ "./glTF/2.0/glTFData.ts");
  4202. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFData", function() { return _glTFData__WEBPACK_IMPORTED_MODULE_1__["GLTFData"]; });
  4203. /* harmony import */ var _glTFExporter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./glTFExporter */ "./glTF/2.0/glTFExporter.ts");
  4204. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_Exporter", function() { return _glTFExporter__WEBPACK_IMPORTED_MODULE_2__["_Exporter"]; });
  4205. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_BinaryWriter", function() { return _glTFExporter__WEBPACK_IMPORTED_MODULE_2__["_BinaryWriter"]; });
  4206. /* harmony import */ var _glTFExporterExtension__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./glTFExporterExtension */ "./glTF/2.0/glTFExporterExtension.ts");
  4207. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "__IGLTFExporterExtensionV2", function() { return _glTFExporterExtension__WEBPACK_IMPORTED_MODULE_3__["__IGLTFExporterExtensionV2"]; });
  4208. /* harmony import */ var _glTFMaterialExporter__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./glTFMaterialExporter */ "./glTF/2.0/glTFMaterialExporter.ts");
  4209. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_GLTFMaterialExporter", function() { return _glTFMaterialExporter__WEBPACK_IMPORTED_MODULE_4__["_GLTFMaterialExporter"]; });
  4210. /* harmony import */ var _glTFSerializer__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./glTFSerializer */ "./glTF/2.0/glTFSerializer.ts");
  4211. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTF2Export", function() { return _glTFSerializer__WEBPACK_IMPORTED_MODULE_5__["GLTF2Export"]; });
  4212. /* harmony import */ var _glTFUtilities__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./glTFUtilities */ "./glTF/2.0/glTFUtilities.ts");
  4213. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_GLTFUtilities", function() { return _glTFUtilities__WEBPACK_IMPORTED_MODULE_6__["_GLTFUtilities"]; });
  4214. /* harmony import */ var _Extensions__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./Extensions */ "./glTF/2.0/Extensions/index.ts");
  4215. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_texture_transform", function() { return _Extensions__WEBPACK_IMPORTED_MODULE_7__["KHR_texture_transform"]; });
  4216. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_lights_punctual", function() { return _Extensions__WEBPACK_IMPORTED_MODULE_7__["KHR_lights_punctual"]; });
  4217. /***/ }),
  4218. /***/ "./glTF/2.0/shaders/textureTransform.fragment.ts":
  4219. /*!*******************************************************!*\
  4220. !*** ./glTF/2.0/shaders/textureTransform.fragment.ts ***!
  4221. \*******************************************************/
  4222. /*! exports provided: textureTransformPixelShader */
  4223. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  4224. "use strict";
  4225. __webpack_require__.r(__webpack_exports__);
  4226. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "textureTransformPixelShader", function() { return textureTransformPixelShader; });
  4227. /* harmony import */ var babylonjs_Materials_effect__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Materials/effect */ "babylonjs/Maths/math");
  4228. /* harmony import */ var babylonjs_Materials_effect__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Materials_effect__WEBPACK_IMPORTED_MODULE_0__);
  4229. var name = 'textureTransformPixelShader';
  4230. var shader = "precision highp float;\nvarying vec2 vUV;\nuniform sampler2D textureSampler;\nuniform mat4 textureTransformMat;\nvoid main(void) {\nvec2 uvTransformed=(textureTransformMat*vec4(vUV.xy,1,1)).xy;\ngl_FragColor=texture2D(textureSampler,uvTransformed);\n}";
  4231. babylonjs_Materials_effect__WEBPACK_IMPORTED_MODULE_0__["Effect"].ShadersStore[name] = shader;
  4232. /** @hidden */
  4233. var textureTransformPixelShader = { name: name, shader: shader };
  4234. /***/ }),
  4235. /***/ "./glTF/glTFFileExporter.ts":
  4236. /*!**********************************!*\
  4237. !*** ./glTF/glTFFileExporter.ts ***!
  4238. \**********************************/
  4239. /*! exports provided: __IGLTFExporterExtension */
  4240. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  4241. "use strict";
  4242. __webpack_require__.r(__webpack_exports__);
  4243. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__IGLTFExporterExtension", function() { return __IGLTFExporterExtension; });
  4244. /** @hidden */
  4245. var __IGLTFExporterExtension = 0; // I am here to allow dts to be created
  4246. /***/ }),
  4247. /***/ "./glTF/index.ts":
  4248. /*!***********************!*\
  4249. !*** ./glTF/index.ts ***!
  4250. \***********************/
  4251. /*! exports provided: __IGLTFExporterExtension, GLTFData, GLTF2Export, _GLTFAnimation, _Exporter, _BinaryWriter, __IGLTFExporterExtensionV2, _GLTFMaterialExporter, _GLTFUtilities, KHR_texture_transform, KHR_lights_punctual */
  4252. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  4253. "use strict";
  4254. __webpack_require__.r(__webpack_exports__);
  4255. /* harmony import */ var _glTFFileExporter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./glTFFileExporter */ "./glTF/glTFFileExporter.ts");
  4256. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "__IGLTFExporterExtension", function() { return _glTFFileExporter__WEBPACK_IMPORTED_MODULE_0__["__IGLTFExporterExtension"]; });
  4257. /* harmony import */ var _2_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./2.0 */ "./glTF/2.0/index.ts");
  4258. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFData", function() { return _2_0__WEBPACK_IMPORTED_MODULE_1__["GLTFData"]; });
  4259. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTF2Export", function() { return _2_0__WEBPACK_IMPORTED_MODULE_1__["GLTF2Export"]; });
  4260. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_GLTFAnimation", function() { return _2_0__WEBPACK_IMPORTED_MODULE_1__["_GLTFAnimation"]; });
  4261. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_Exporter", function() { return _2_0__WEBPACK_IMPORTED_MODULE_1__["_Exporter"]; });
  4262. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_BinaryWriter", function() { return _2_0__WEBPACK_IMPORTED_MODULE_1__["_BinaryWriter"]; });
  4263. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "__IGLTFExporterExtensionV2", function() { return _2_0__WEBPACK_IMPORTED_MODULE_1__["__IGLTFExporterExtensionV2"]; });
  4264. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_GLTFMaterialExporter", function() { return _2_0__WEBPACK_IMPORTED_MODULE_1__["_GLTFMaterialExporter"]; });
  4265. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_GLTFUtilities", function() { return _2_0__WEBPACK_IMPORTED_MODULE_1__["_GLTFUtilities"]; });
  4266. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_texture_transform", function() { return _2_0__WEBPACK_IMPORTED_MODULE_1__["KHR_texture_transform"]; });
  4267. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_lights_punctual", function() { return _2_0__WEBPACK_IMPORTED_MODULE_1__["KHR_lights_punctual"]; });
  4268. /***/ }),
  4269. /***/ "./index.ts":
  4270. /*!******************!*\
  4271. !*** ./index.ts ***!
  4272. \******************/
  4273. /*! exports provided: __IGLTFExporterExtension, GLTFData, GLTF2Export, OBJExport, _GLTFAnimation, _Exporter, _BinaryWriter, __IGLTFExporterExtensionV2, _GLTFMaterialExporter, _GLTFUtilities, STLExport, KHR_texture_transform, KHR_lights_punctual */
  4274. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  4275. "use strict";
  4276. __webpack_require__.r(__webpack_exports__);
  4277. /* harmony import */ var _OBJ__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./OBJ */ "./OBJ/index.ts");
  4278. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "OBJExport", function() { return _OBJ__WEBPACK_IMPORTED_MODULE_0__["OBJExport"]; });
  4279. /* harmony import */ var _glTF__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./glTF */ "./glTF/index.ts");
  4280. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "__IGLTFExporterExtension", function() { return _glTF__WEBPACK_IMPORTED_MODULE_1__["__IGLTFExporterExtension"]; });
  4281. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFData", function() { return _glTF__WEBPACK_IMPORTED_MODULE_1__["GLTFData"]; });
  4282. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTF2Export", function() { return _glTF__WEBPACK_IMPORTED_MODULE_1__["GLTF2Export"]; });
  4283. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_GLTFAnimation", function() { return _glTF__WEBPACK_IMPORTED_MODULE_1__["_GLTFAnimation"]; });
  4284. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_Exporter", function() { return _glTF__WEBPACK_IMPORTED_MODULE_1__["_Exporter"]; });
  4285. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_BinaryWriter", function() { return _glTF__WEBPACK_IMPORTED_MODULE_1__["_BinaryWriter"]; });
  4286. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "__IGLTFExporterExtensionV2", function() { return _glTF__WEBPACK_IMPORTED_MODULE_1__["__IGLTFExporterExtensionV2"]; });
  4287. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_GLTFMaterialExporter", function() { return _glTF__WEBPACK_IMPORTED_MODULE_1__["_GLTFMaterialExporter"]; });
  4288. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_GLTFUtilities", function() { return _glTF__WEBPACK_IMPORTED_MODULE_1__["_GLTFUtilities"]; });
  4289. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_texture_transform", function() { return _glTF__WEBPACK_IMPORTED_MODULE_1__["KHR_texture_transform"]; });
  4290. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_lights_punctual", function() { return _glTF__WEBPACK_IMPORTED_MODULE_1__["KHR_lights_punctual"]; });
  4291. /* harmony import */ var _stl__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./stl */ "./stl/index.ts");
  4292. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "STLExport", function() { return _stl__WEBPACK_IMPORTED_MODULE_2__["STLExport"]; });
  4293. /***/ }),
  4294. /***/ "./legacy/legacy-glTF2Serializer.ts":
  4295. /*!******************************************!*\
  4296. !*** ./legacy/legacy-glTF2Serializer.ts ***!
  4297. \******************************************/
  4298. /*! exports provided: __IGLTFExporterExtension, GLTFData, GLTF2Export, _GLTFAnimation, _Exporter, _BinaryWriter, __IGLTFExporterExtensionV2, _GLTFMaterialExporter, _GLTFUtilities, KHR_texture_transform, KHR_lights_punctual */
  4299. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  4300. "use strict";
  4301. __webpack_require__.r(__webpack_exports__);
  4302. /* WEBPACK VAR INJECTION */(function(global) {/* harmony import */ var _glTF_glTFFileExporter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../glTF/glTFFileExporter */ "./glTF/glTFFileExporter.ts");
  4303. /* harmony import */ var _glTF_2_0_glTFData__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../glTF/2.0/glTFData */ "./glTF/2.0/glTFData.ts");
  4304. /* harmony import */ var _glTF_2_0_glTFSerializer__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../glTF/2.0/glTFSerializer */ "./glTF/2.0/glTFSerializer.ts");
  4305. /* harmony import */ var _glTF_2_0_Extensions__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../glTF/2.0/Extensions */ "./glTF/2.0/Extensions/index.ts");
  4306. /* harmony import */ var _glTF_2_0__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../glTF/2.0 */ "./glTF/2.0/index.ts");
  4307. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "__IGLTFExporterExtension", function() { return _glTF_glTFFileExporter__WEBPACK_IMPORTED_MODULE_0__["__IGLTFExporterExtension"]; });
  4308. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFData", function() { return _glTF_2_0__WEBPACK_IMPORTED_MODULE_4__["GLTFData"]; });
  4309. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTF2Export", function() { return _glTF_2_0__WEBPACK_IMPORTED_MODULE_4__["GLTF2Export"]; });
  4310. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_GLTFAnimation", function() { return _glTF_2_0__WEBPACK_IMPORTED_MODULE_4__["_GLTFAnimation"]; });
  4311. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_Exporter", function() { return _glTF_2_0__WEBPACK_IMPORTED_MODULE_4__["_Exporter"]; });
  4312. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_BinaryWriter", function() { return _glTF_2_0__WEBPACK_IMPORTED_MODULE_4__["_BinaryWriter"]; });
  4313. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "__IGLTFExporterExtensionV2", function() { return _glTF_2_0__WEBPACK_IMPORTED_MODULE_4__["__IGLTFExporterExtensionV2"]; });
  4314. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_GLTFMaterialExporter", function() { return _glTF_2_0__WEBPACK_IMPORTED_MODULE_4__["_GLTFMaterialExporter"]; });
  4315. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_GLTFUtilities", function() { return _glTF_2_0__WEBPACK_IMPORTED_MODULE_4__["_GLTFUtilities"]; });
  4316. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_texture_transform", function() { return _glTF_2_0__WEBPACK_IMPORTED_MODULE_4__["KHR_texture_transform"]; });
  4317. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_lights_punctual", function() { return _glTF_2_0__WEBPACK_IMPORTED_MODULE_4__["KHR_lights_punctual"]; });
  4318. /**
  4319. * This is the entry point for the UMD module.
  4320. * The entry point for a future ESM package should be index.ts
  4321. */
  4322. var globalObject = (typeof global !== 'undefined') ? global : ((typeof window !== 'undefined') ? window : undefined);
  4323. if (typeof globalObject !== "undefined") {
  4324. globalObject.BABYLON = globalObject.BABYLON || {};
  4325. var BABYLON = globalObject.BABYLON;
  4326. BABYLON.GLTF2 = BABYLON.GLTF2 || {};
  4327. BABYLON.GLTF2.Exporter = BABYLON.GLTF2.Exporter || {};
  4328. BABYLON.GLTF2.Exporter.Extensions = BABYLON.GLTF2.Exporter.Extensions || {};
  4329. var keys = [];
  4330. for (var key in _glTF_glTFFileExporter__WEBPACK_IMPORTED_MODULE_0__) {
  4331. BABYLON[key] = _glTF_glTFFileExporter__WEBPACK_IMPORTED_MODULE_0__[key];
  4332. keys.push(key);
  4333. }
  4334. for (var key in _glTF_2_0_glTFData__WEBPACK_IMPORTED_MODULE_1__) {
  4335. BABYLON[key] = _glTF_2_0_glTFData__WEBPACK_IMPORTED_MODULE_1__[key];
  4336. keys.push(key);
  4337. }
  4338. for (var key in _glTF_2_0_glTFSerializer__WEBPACK_IMPORTED_MODULE_2__) {
  4339. BABYLON[key] = _glTF_2_0_glTFSerializer__WEBPACK_IMPORTED_MODULE_2__[key];
  4340. keys.push(key);
  4341. }
  4342. for (var key in _glTF_2_0_Extensions__WEBPACK_IMPORTED_MODULE_3__) {
  4343. BABYLON.GLTF2.Exporter.Extensions[key] = _glTF_2_0_Extensions__WEBPACK_IMPORTED_MODULE_3__[key];
  4344. keys.push(key);
  4345. }
  4346. for (var key in _glTF_2_0__WEBPACK_IMPORTED_MODULE_4__) {
  4347. // Prevent Reassignment.
  4348. if (keys.indexOf(key) > -1) {
  4349. continue;
  4350. }
  4351. BABYLON.GLTF2.Exporter[key] = _glTF_2_0__WEBPACK_IMPORTED_MODULE_4__[key];
  4352. }
  4353. }
  4354. /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../node_modules/webpack/buildin/global.js */ "../../node_modules/webpack/buildin/global.js")))
  4355. /***/ }),
  4356. /***/ "./legacy/legacy-objSerializer.ts":
  4357. /*!****************************************!*\
  4358. !*** ./legacy/legacy-objSerializer.ts ***!
  4359. \****************************************/
  4360. /*! exports provided: OBJExport */
  4361. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  4362. "use strict";
  4363. __webpack_require__.r(__webpack_exports__);
  4364. /* WEBPACK VAR INJECTION */(function(global) {/* harmony import */ var _OBJ__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../OBJ */ "./OBJ/index.ts");
  4365. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "OBJExport", function() { return _OBJ__WEBPACK_IMPORTED_MODULE_0__["OBJExport"]; });
  4366. /**
  4367. * This is the entry point for the UMD module.
  4368. * The entry point for a future ESM package should be index.ts
  4369. */
  4370. var globalObject = (typeof global !== 'undefined') ? global : ((typeof window !== 'undefined') ? window : undefined);
  4371. if (typeof globalObject !== "undefined") {
  4372. for (var serializer in _OBJ__WEBPACK_IMPORTED_MODULE_0__) {
  4373. globalObject.BABYLON[serializer] = _OBJ__WEBPACK_IMPORTED_MODULE_0__[serializer];
  4374. }
  4375. }
  4376. /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../node_modules/webpack/buildin/global.js */ "../../node_modules/webpack/buildin/global.js")))
  4377. /***/ }),
  4378. /***/ "./legacy/legacy-stlSerializer.ts":
  4379. /*!****************************************!*\
  4380. !*** ./legacy/legacy-stlSerializer.ts ***!
  4381. \****************************************/
  4382. /*! exports provided: STLExport */
  4383. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  4384. "use strict";
  4385. __webpack_require__.r(__webpack_exports__);
  4386. /* WEBPACK VAR INJECTION */(function(global) {/* harmony import */ var _stl__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../stl */ "./stl/index.ts");
  4387. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "STLExport", function() { return _stl__WEBPACK_IMPORTED_MODULE_0__["STLExport"]; });
  4388. /**
  4389. * This is the entry point for the UMD module.
  4390. * The entry point for a future ESM package should be index.ts
  4391. */
  4392. var globalObject = (typeof global !== 'undefined') ? global : ((typeof window !== 'undefined') ? window : undefined);
  4393. if (typeof globalObject !== "undefined") {
  4394. for (var serializer in _stl__WEBPACK_IMPORTED_MODULE_0__) {
  4395. globalObject.BABYLON[serializer] = _stl__WEBPACK_IMPORTED_MODULE_0__[serializer];
  4396. }
  4397. }
  4398. /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../node_modules/webpack/buildin/global.js */ "../../node_modules/webpack/buildin/global.js")))
  4399. /***/ }),
  4400. /***/ "./legacy/legacy.ts":
  4401. /*!**************************!*\
  4402. !*** ./legacy/legacy.ts ***!
  4403. \**************************/
  4404. /*! exports provided: __IGLTFExporterExtension, GLTFData, GLTF2Export, _GLTFAnimation, _Exporter, _BinaryWriter, __IGLTFExporterExtensionV2, _GLTFMaterialExporter, _GLTFUtilities, OBJExport, STLExport, KHR_texture_transform, KHR_lights_punctual */
  4405. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  4406. "use strict";
  4407. __webpack_require__.r(__webpack_exports__);
  4408. /* harmony import */ var _index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../index */ "./index.ts");
  4409. /* harmony import */ var _legacy_glTF2Serializer__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./legacy-glTF2Serializer */ "./legacy/legacy-glTF2Serializer.ts");
  4410. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "__IGLTFExporterExtension", function() { return _legacy_glTF2Serializer__WEBPACK_IMPORTED_MODULE_1__["__IGLTFExporterExtension"]; });
  4411. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTFData", function() { return _legacy_glTF2Serializer__WEBPACK_IMPORTED_MODULE_1__["GLTFData"]; });
  4412. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "GLTF2Export", function() { return _legacy_glTF2Serializer__WEBPACK_IMPORTED_MODULE_1__["GLTF2Export"]; });
  4413. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_GLTFAnimation", function() { return _legacy_glTF2Serializer__WEBPACK_IMPORTED_MODULE_1__["_GLTFAnimation"]; });
  4414. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_Exporter", function() { return _legacy_glTF2Serializer__WEBPACK_IMPORTED_MODULE_1__["_Exporter"]; });
  4415. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_BinaryWriter", function() { return _legacy_glTF2Serializer__WEBPACK_IMPORTED_MODULE_1__["_BinaryWriter"]; });
  4416. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "__IGLTFExporterExtensionV2", function() { return _legacy_glTF2Serializer__WEBPACK_IMPORTED_MODULE_1__["__IGLTFExporterExtensionV2"]; });
  4417. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_GLTFMaterialExporter", function() { return _legacy_glTF2Serializer__WEBPACK_IMPORTED_MODULE_1__["_GLTFMaterialExporter"]; });
  4418. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "_GLTFUtilities", function() { return _legacy_glTF2Serializer__WEBPACK_IMPORTED_MODULE_1__["_GLTFUtilities"]; });
  4419. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_texture_transform", function() { return _legacy_glTF2Serializer__WEBPACK_IMPORTED_MODULE_1__["KHR_texture_transform"]; });
  4420. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "KHR_lights_punctual", function() { return _legacy_glTF2Serializer__WEBPACK_IMPORTED_MODULE_1__["KHR_lights_punctual"]; });
  4421. /* harmony import */ var _legacy_objSerializer__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./legacy-objSerializer */ "./legacy/legacy-objSerializer.ts");
  4422. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "OBJExport", function() { return _legacy_objSerializer__WEBPACK_IMPORTED_MODULE_2__["OBJExport"]; });
  4423. /* harmony import */ var _legacy_stlSerializer__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./legacy-stlSerializer */ "./legacy/legacy-stlSerializer.ts");
  4424. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "STLExport", function() { return _legacy_stlSerializer__WEBPACK_IMPORTED_MODULE_3__["STLExport"]; });
  4425. /***/ }),
  4426. /***/ "./stl/index.ts":
  4427. /*!**********************!*\
  4428. !*** ./stl/index.ts ***!
  4429. \**********************/
  4430. /*! exports provided: STLExport */
  4431. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  4432. "use strict";
  4433. __webpack_require__.r(__webpack_exports__);
  4434. /* harmony import */ var _stlSerializer__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./stlSerializer */ "./stl/stlSerializer.ts");
  4435. /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "STLExport", function() { return _stlSerializer__WEBPACK_IMPORTED_MODULE_0__["STLExport"]; });
  4436. /***/ }),
  4437. /***/ "./stl/stlSerializer.ts":
  4438. /*!******************************!*\
  4439. !*** ./stl/stlSerializer.ts ***!
  4440. \******************************/
  4441. /*! exports provided: STLExport */
  4442. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  4443. "use strict";
  4444. __webpack_require__.r(__webpack_exports__);
  4445. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "STLExport", function() { return STLExport; });
  4446. /* harmony import */ var babylonjs_Meshes_buffer__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! babylonjs/Meshes/buffer */ "babylonjs/Maths/math");
  4447. /* harmony import */ var babylonjs_Meshes_buffer__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babylonjs_Meshes_buffer__WEBPACK_IMPORTED_MODULE_0__);
  4448. /**
  4449. * Class for generating STL data from a Babylon scene.
  4450. */
  4451. var STLExport = /** @class */ (function () {
  4452. function STLExport() {
  4453. }
  4454. /**
  4455. * Exports the geometry of a Mesh array in .STL file format (ASCII)
  4456. * @param meshes list defines the mesh to serialize
  4457. * @param download triggers the automatic download of the file.
  4458. * @param fileName changes the downloads fileName.
  4459. * @param binary changes the STL to a binary type.
  4460. * @param isLittleEndian toggle for binary type exporter.
  4461. * @returns the STL as UTF8 string
  4462. */
  4463. STLExport.CreateSTL = function (meshes, download, fileName, binary, isLittleEndian) {
  4464. //Binary support adapted from https://gist.github.com/paulkaplan/6d5f0ab2c7e8fdc68a61
  4465. if (download === void 0) { download = true; }
  4466. if (fileName === void 0) { fileName = 'STL_Mesh'; }
  4467. if (binary === void 0) { binary = false; }
  4468. if (isLittleEndian === void 0) { isLittleEndian = true; }
  4469. var getFaceData = function (indices, vertices, i) {
  4470. var id = [indices[i] * 3, indices[i + 1] * 3, indices[i + 2] * 3];
  4471. var v = [
  4472. new babylonjs_Meshes_buffer__WEBPACK_IMPORTED_MODULE_0__["Vector3"](vertices[id[0]], vertices[id[0] + 1], vertices[id[0] + 2]),
  4473. new babylonjs_Meshes_buffer__WEBPACK_IMPORTED_MODULE_0__["Vector3"](vertices[id[1]], vertices[id[1] + 1], vertices[id[1] + 2]),
  4474. new babylonjs_Meshes_buffer__WEBPACK_IMPORTED_MODULE_0__["Vector3"](vertices[id[2]], vertices[id[2] + 1], vertices[id[2] + 2])
  4475. ];
  4476. var p1p2 = v[0].subtract(v[1]);
  4477. var p3p2 = v[2].subtract(v[1]);
  4478. var n = (babylonjs_Meshes_buffer__WEBPACK_IMPORTED_MODULE_0__["Vector3"].Cross(p1p2, p3p2)).normalize();
  4479. return { v: v, n: n };
  4480. };
  4481. var writeVector = function (dataview, offset, vector, isLittleEndian) {
  4482. offset = writeFloat(dataview, offset, vector.x, isLittleEndian);
  4483. offset = writeFloat(dataview, offset, vector.y, isLittleEndian);
  4484. return writeFloat(dataview, offset, vector.z, isLittleEndian);
  4485. };
  4486. var writeFloat = function (dataview, offset, value, isLittleEndian) {
  4487. dataview.setFloat32(offset, value, isLittleEndian);
  4488. return offset + 4;
  4489. };
  4490. var data;
  4491. var faceCount = 0;
  4492. var offset = 0;
  4493. if (binary) {
  4494. for (var i = 0; i < meshes.length; i++) {
  4495. var mesh = meshes[i];
  4496. var indices = mesh.getIndices();
  4497. faceCount += indices ? indices.length : 0;
  4498. }
  4499. var bufferSize = 84 + (50 * faceCount);
  4500. var buffer = new ArrayBuffer(bufferSize);
  4501. data = new DataView(buffer);
  4502. offset += 80;
  4503. data.setUint32(offset, faceCount, isLittleEndian);
  4504. offset += 4;
  4505. }
  4506. else {
  4507. data = 'solid exportedMesh\r\n';
  4508. }
  4509. for (var i = 0; i < meshes.length; i++) {
  4510. var mesh = meshes[i];
  4511. mesh.bakeCurrentTransformIntoVertices();
  4512. var vertices = mesh.getVerticesData(babylonjs_Meshes_buffer__WEBPACK_IMPORTED_MODULE_0__["VertexBuffer"].PositionKind) || [];
  4513. var indices = mesh.getIndices() || [];
  4514. for (var i_1 = 0; i_1 < indices.length; i_1 += 3) {
  4515. var fd = getFaceData(indices, vertices, i_1);
  4516. if (binary) {
  4517. offset = writeVector(data, offset, fd.n, isLittleEndian);
  4518. offset = writeVector(data, offset, fd.v[0], isLittleEndian);
  4519. offset = writeVector(data, offset, fd.v[1], isLittleEndian);
  4520. offset = writeVector(data, offset, fd.v[2], isLittleEndian);
  4521. offset += 2;
  4522. }
  4523. else {
  4524. data += 'facet normal ' + fd.n.x + ' ' + fd.n.y + ' ' + fd.n.z + '\r\n';
  4525. data += '\touter loop\r\n';
  4526. data += '\t\tvertex ' + fd.v[0].x + ' ' + fd.v[0].y + ' ' + fd.v[0].z + '\r\n';
  4527. data += '\t\tvertex ' + fd.v[1].x + ' ' + fd.v[1].y + ' ' + fd.v[1].z + '\r\n';
  4528. data += '\t\tvertex ' + fd.v[2].x + ' ' + fd.v[2].y + ' ' + fd.v[2].z + '\r\n';
  4529. data += '\tendloop\r\n';
  4530. data += 'endfacet\r\n';
  4531. }
  4532. }
  4533. }
  4534. if (!binary) {
  4535. data += 'endsolid exportedMesh';
  4536. }
  4537. if (download) {
  4538. var a = document.createElement('a');
  4539. var blob = new Blob([data], { 'type': 'application/octet-stream' });
  4540. a.href = window.URL.createObjectURL(blob);
  4541. if (!fileName) {
  4542. fileName = "STL_Mesh";
  4543. }
  4544. a.download = fileName + ".stl";
  4545. a.click();
  4546. }
  4547. return data;
  4548. };
  4549. return STLExport;
  4550. }());
  4551. /***/ }),
  4552. /***/ "babylonjs/Maths/math":
  4553. /*!****************************************************************************************************!*\
  4554. !*** external {"root":"BABYLON","commonjs":"babylonjs","commonjs2":"babylonjs","amd":"babylonjs"} ***!
  4555. \****************************************************************************************************/
  4556. /*! no static exports found */
  4557. /***/ (function(module, exports) {
  4558. module.exports = __WEBPACK_EXTERNAL_MODULE_babylonjs_Maths_math__;
  4559. /***/ })
  4560. /******/ });
  4561. });
  4562. //# sourceMappingURL=babylonjs.serializers.js.map