config.json 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067
  1. {
  2. "build": {
  3. "filename": "babylon.max.js",
  4. "minFilename": "babylon.js",
  5. "minWorkerFilename": "babylon.worker.js",
  6. "noModuleFilename": "babylon.no-module.max.js",
  7. "declarationFilename": "babylon.d.ts",
  8. "declarationModuleFilename": "babylon.module.d.ts",
  9. "outputDirectory": "../../dist/preview release",
  10. "playgroundDirectory": "../../Playground/",
  11. "tempDirectory": "../../.temp/",
  12. "intellisenseFile": "babylon.d.txt",
  13. "intellisenseSources": [
  14. "../../dist/preview release/babylon.d.ts",
  15. "../../dist/preview release/gui/babylon.gui.d.ts",
  16. "../../dist/preview release/loaders/babylonjs.loaders.d.ts",
  17. "../../dist/preview release/serializers/babylonjs.serializers.d.ts",
  18. "../../dist/preview release/glTF2Interface/babylon.glTF2Interface.d.ts",
  19. "../../dist/preview release/materialsLibrary/babylonjs.materials.d.ts",
  20. "../../dist/preview release/postProcessesLibrary/babylonjs.postProcess.d.ts",
  21. "../../dist/preview release/proceduralTexturesLibrary/babylonjs.proceduralTextures.d.ts"
  22. ],
  23. "outputCustomConfigurationsDirectory": "../../dist/preview release/customConfigurations",
  24. "srcOutputDirectory": "../../src/",
  25. "currentConfig": "all",
  26. "typedocJSON": "../../.temp/babylon.typedoc.json",
  27. "typedocValidationBaseline": "../../dist/preview release/typedocValidationBaseline.json",
  28. "dependencies": [
  29. {
  30. "name": "CANNON",
  31. "module": "cannon",
  32. "optional": true
  33. },
  34. {
  35. "name": "OIMO",
  36. "module": "oimo",
  37. "optional": true
  38. },
  39. {
  40. "name": "earcut",
  41. "module": "earcut",
  42. "optional": true
  43. }
  44. ]
  45. },
  46. "buildConfigurations": {
  47. "all": [
  48. "pbrMaterial",
  49. "freeCamera",
  50. "flyCamera",
  51. "arcRotateCamera",
  52. "hemisphericLight",
  53. "pointLight",
  54. "directionalLight",
  55. "spotLight",
  56. "animations",
  57. "actions",
  58. "sprites",
  59. "picking",
  60. "collisions",
  61. "particles",
  62. "gpuParticles",
  63. "solidParticles",
  64. "additionalMeshes",
  65. "meshBuilder",
  66. "meshCompression",
  67. "audio",
  68. "additionalTextures",
  69. "shadows",
  70. "loader",
  71. "userData",
  72. "offline",
  73. "fresnel",
  74. "multiMaterial",
  75. "touchCamera",
  76. "procedural",
  77. "gamepad",
  78. "additionalCameras",
  79. "postProcesses",
  80. "renderingPipeline",
  81. "additionalRenderingPipeline",
  82. "defaultRenderingPipeline",
  83. "depthRenderer",
  84. "geometryBufferRenderer",
  85. "additionalPostProcesses",
  86. "additionalPostProcess_blur",
  87. "additionalPostProcess_depthOfFieldBlur",
  88. "additionalPostProcess_fxaa",
  89. "additionalPostProcess_circleOfConfusion",
  90. "additionalPostProcess_depthOfFieldMerge",
  91. "additionalPostProcess_bloomMerge",
  92. "additionalPostProcess_depthOfFieldEffect",
  93. "additionalPostProcess_bloomEffect",
  94. "additionalPostProcess_imageProcessing",
  95. "additionalPostProcess_motionBlur",
  96. "bones",
  97. "hdr",
  98. "polygonMesh",
  99. "csg",
  100. "lensFlares",
  101. "physics",
  102. "textureFormats",
  103. "debug",
  104. "utilityLayer",
  105. "gizmos",
  106. "morphTargets",
  107. "octrees",
  108. "anaglyph",
  109. "stereoscopic",
  110. "vr",
  111. "virtualJoystick",
  112. "optimizations",
  113. "highlights",
  114. "assetsManager",
  115. "serialization",
  116. "probes",
  117. "layer",
  118. "textureTools",
  119. "cameraBehaviors",
  120. "meshBehaviors",
  121. "nullEngine",
  122. "instrumentation",
  123. "backgroundMaterial",
  124. "environmentHelper",
  125. "particleHelper",
  126. "videoDome",
  127. "photoDome",
  128. "behaviors",
  129. "imageProcessing",
  130. "occlusionQuery",
  131. "transformFeedback",
  132. "noise",
  133. "videoRecorder",
  134. "sceneHelpers"
  135. ],
  136. "minimal": [
  137. "meshBuilder",
  138. "freeCamera",
  139. "flyCamera",
  140. "hemisphericLight"
  141. ],
  142. "360Viewer": [
  143. "arcRotateCamera",
  144. "meshBuilder",
  145. "picking",
  146. "backgroundMaterial",
  147. "videoDome"
  148. ],
  149. "glTFViewer": [
  150. "arcRotateCamera",
  151. "imageProcessing",
  152. "backgroundMaterial",
  153. "pbrMaterial",
  154. "hdr"
  155. ]
  156. },
  157. "workloads": {
  158. "core": {
  159. "files": [
  160. "../../src/Materials/effect.js",
  161. "../../src/types.js",
  162. "../../src/Events/keyboardEvents.js",
  163. "../../src/Events/pointerEvents.js",
  164. "../../src/Tools/tools.js",
  165. "../../src/Math/math.js",
  166. "../../src/Math/math.scalar.js",
  167. "../../src/mixins.js",
  168. "../../src/Engine/webgl2.js",
  169. "../../src/Tools/decorators.js",
  170. "../../src/Tools/deferred.js",
  171. "../../src/Tools/observable.js",
  172. "../../src/Tools/smartArray.js",
  173. "../../src/Tools/promise.js",
  174. "../../src/Tools/workerPool.js",
  175. "../../src/States/alphaCullingState.js",
  176. "../../src/States/depthCullingState.js",
  177. "../../src/States/stencilState.js",
  178. "../../src/Engine/engine.js",
  179. "../../src/node.js",
  180. "../../src/Culling/boundingSphere.js",
  181. "../../src/Culling/boundingBox.js",
  182. "../../src/Culling/boundingInfo.js",
  183. "../../src/Mesh/transformNode.js",
  184. "../../src/Mesh/abstractMesh.js",
  185. "../../src/Lights/light.js",
  186. "../../src/Cameras/camera.js",
  187. "../../src/Rendering/renderingManager.js",
  188. "../../src/Rendering/renderingGroup.js",
  189. "../../src/sceneComponent.js",
  190. "../../src/abstractScene.js",
  191. "../../src/scene.js",
  192. "../../src/assetContainer.js",
  193. "../../src/Mesh/buffer.js",
  194. "../../src/Mesh/vertexBuffer.js",
  195. "../../src/Materials/Textures/internalTextureLoader.js",
  196. "../../src/Materials/Textures/internalTextureTracker.js",
  197. "../../src/Materials/Textures/internalTexture.js",
  198. "../../src/Materials/Textures/baseTexture.js",
  199. "../../src/Materials/Textures/texture.js",
  200. "../../src/Mesh/mesh.js",
  201. "../../src/Mesh/subMesh.js",
  202. "../../src/Materials/material.js",
  203. "../../src/Materials/uniformBuffer.js",
  204. "../../src/Mesh/mesh.vertexData.js",
  205. "../../src/Mesh/geometry.js",
  206. "../../src/Tools/performanceMonitor.js",
  207. "../../src/Materials/materialHelper.js",
  208. "../../src/Materials/pushMaterial.js",
  209. "../../src/Materials/standardMaterial.js"
  210. ],
  211. "shaders": [
  212. "default.vertex",
  213. "default.fragment"
  214. ],
  215. "shaderIncludes": [
  216. "depthPrePass",
  217. "bonesDeclaration",
  218. "instancesDeclaration",
  219. "pointCloudVertexDeclaration",
  220. "bumpVertexDeclaration",
  221. "clipPlaneVertexDeclaration",
  222. "fogVertexDeclaration",
  223. "morphTargetsVertexGlobalDeclaration",
  224. "morphTargetsVertexDeclaration",
  225. "logDepthDeclaration",
  226. "morphTargetsVertex",
  227. "instancesVertex",
  228. "bonesVertex",
  229. "bumpVertex",
  230. "clipPlaneVertex",
  231. "fogVertex",
  232. "shadowsVertex",
  233. "pointCloudVertex",
  234. "logDepthVertex",
  235. "helperFunctions",
  236. "lightFragmentDeclaration",
  237. "lightsFragmentFunctions",
  238. "lightUboDeclaration",
  239. "defaultVertexDeclaration",
  240. "defaultFragmentDeclaration",
  241. "defaultUboDeclaration",
  242. "shadowsFragmentFunctions",
  243. "fresnelFunction",
  244. "reflectionFunction",
  245. "imageProcessingDeclaration",
  246. "imageProcessingFunctions",
  247. "bumpFragmentFunctions",
  248. "clipPlaneFragmentDeclaration",
  249. "fogFragmentDeclaration",
  250. "clipPlaneFragment",
  251. "bumpFragment",
  252. "lightFragment",
  253. "logDepthFragment",
  254. "fogFragment"
  255. ]
  256. },
  257. "transformFeedback": {
  258. "files": [
  259. "../../src/Engine/Extensions/engine.transformFeedback.js"
  260. ],
  261. "dependUpon": [
  262. "core",
  263. "debug"
  264. ]
  265. },
  266. "occlusionQuery": {
  267. "files": [
  268. "../../src/Engine/Extensions/engine.occlusionQuery.js"
  269. ],
  270. "dependUpon": [
  271. "core",
  272. "debug"
  273. ]
  274. },
  275. "behaviors": {
  276. "files": [
  277. "../../src/Behaviors/behavior.js"
  278. ],
  279. "dependUpon": [
  280. "core"
  281. ]
  282. },
  283. "imageProcessing": {
  284. "files": [
  285. "../../src/Materials/imageProcessingConfiguration.js",
  286. "../../src/Materials/Textures/colorGradingTexture.js",
  287. "../../src/Materials/colorCurves.js"
  288. ],
  289. "dependUpon": [
  290. "core"
  291. ]
  292. },
  293. "noise": {
  294. "files": [
  295. "../../src/Materials/Textures/Procedurals/noiseProceduralTexture.js"
  296. ],
  297. "dependUpon": [
  298. "core",
  299. "procedural"
  300. ],
  301. "shaders": [
  302. "noise.fragment"
  303. ]
  304. },
  305. "particles": {
  306. "files": [
  307. "../../src/Particles/particle.js",
  308. "../../src/Particles/baseParticleSystem.js",
  309. "../../src/Particles/particleSystem.js",
  310. "../../src/Particles/EmitterTypes/boxParticleEmitter.js",
  311. "../../src/Particles/EmitterTypes/cylinderParticleEmitter.js",
  312. "../../src/Particles/EmitterTypes/coneParticleEmitter.js",
  313. "../../src/Particles/EmitterTypes/sphereParticleEmitter.js",
  314. "../../src/Particles/EmitterTypes/hemisphericParticleEmitter.js",
  315. "../../src/Particles/EmitterTypes/pointParticleEmitter.js",
  316. "../../src/Particles/particleSystemComponent.js",
  317. "../../src/Particles/subEmitter.js"
  318. ],
  319. "dependUpon": [
  320. "core"
  321. ],
  322. "shaders": [
  323. "particles.vertex",
  324. "particles.fragment"
  325. ],
  326. "shaderIncludes": [
  327. "clipPlaneVertexDeclaration2",
  328. "clipPlaneFragmentDeclaration2"
  329. ]
  330. },
  331. "gpuParticles": {
  332. "files": [
  333. "../../src/Particles/gpuParticleSystem.js"
  334. ],
  335. "dependUpon": [
  336. "core",
  337. "particles",
  338. "transformFeedback"
  339. ],
  340. "shaders": [
  341. "gpuRenderParticles.vertex",
  342. "gpuRenderParticles.fragment",
  343. "gpuUpdateParticles.vertex",
  344. "gpuUpdateParticles.fragment"
  345. ]
  346. },
  347. "nullEngine": {
  348. "files": [
  349. "../../src/Engine/nullEngine.js",
  350. "../../src/Engine/webgl2.js",
  351. "../../src/mixins.js"
  352. ],
  353. "dependUpon": [
  354. "core"
  355. ]
  356. },
  357. "instrumentation": {
  358. "files": [
  359. "../../src/Engine/webgl2.js",
  360. "../../src/Instrumentation/engineInstrumentation.js",
  361. "../../src/Instrumentation/sceneInstrumentation.js",
  362. "../../src/Instrumentation/timeToken.js"
  363. ],
  364. "dependUpon": [
  365. "core"
  366. ]
  367. },
  368. "cameraBehaviors": {
  369. "files": [
  370. "../../src/Behaviors/Cameras/framingBehavior.js",
  371. "../../src/Behaviors/Cameras/bouncingBehavior.js",
  372. "../../src/Behaviors/Cameras/autoRotationBehavior.js"
  373. ],
  374. "dependUpon": [
  375. "behaviors"
  376. ]
  377. },
  378. "meshBehaviors": {
  379. "files": [
  380. "../../src/Behaviors/Mesh/pointerDragBehavior.js",
  381. "../../src/Behaviors/Mesh/multiPointerScaleBehavior.js",
  382. "../../src/Behaviors/Mesh/sixDofDragBehavior.js",
  383. "../../src/Behaviors/Mesh/attachToBoxBehavior.js",
  384. "../../src/Behaviors/Mesh/fadeInOutBehavior.js"
  385. ],
  386. "dependUpon": [
  387. "behaviors"
  388. ]
  389. },
  390. "textureTools": {
  391. "files": [
  392. "../../src/Tools/textureTools.js"
  393. ],
  394. "dependUpon": [
  395. "core",
  396. "postProcesses"
  397. ]
  398. },
  399. "solidParticles": {
  400. "files": [
  401. "../../src/Particles/solidParticle.js",
  402. "../../src/Particles/solidParticleSystem.js"
  403. ],
  404. "dependUpon": [
  405. "core"
  406. ]
  407. },
  408. "collisions": {
  409. "files": [
  410. "../../src/Collisions/collider.js",
  411. "../../src/Collisions/collisionCoordinator.js"
  412. ],
  413. "dependUpon": [
  414. "core"
  415. ]
  416. },
  417. "picking": {
  418. "files": [
  419. "../../src/Collisions/pickingInfo.js",
  420. "../../src/Culling/ray.js"
  421. ],
  422. "dependUpon": [
  423. "core"
  424. ]
  425. },
  426. "sprites": {
  427. "files": [
  428. "../../src/Sprites/spriteManager.js",
  429. "../../src/Sprites/sprite.js",
  430. "../../src/Sprites/spriteSceneComponent.js"
  431. ],
  432. "dependUpon": [
  433. "core"
  434. ],
  435. "shaders": [
  436. "sprites.vertex",
  437. "sprites.fragment"
  438. ]
  439. },
  440. "animations": {
  441. "files": [
  442. "../../src/Animations/animationPropertiesOverride.js",
  443. "../../src/Animations/animation.js",
  444. "../../src/Animations/animationGroup.js",
  445. "../../src/Animations/runtimeAnimation.js",
  446. "../../src/Animations/animatable.js",
  447. "../../src/Animations/easing.js"
  448. ],
  449. "dependUpon": [
  450. "core"
  451. ]
  452. },
  453. "actions": {
  454. "files": [
  455. "../../src/Actions/condition.js",
  456. "../../src/Actions/action.js",
  457. "../../src/Actions/actionManager.js",
  458. "../../src/Actions/interpolateValueAction.js",
  459. "../../src/Actions/directActions.js"
  460. ],
  461. "dependUpon": [
  462. "core"
  463. ]
  464. },
  465. "additionalMeshes": {
  466. "files": [
  467. "../../src/Mesh/groundMesh.js",
  468. "../../src/Mesh/instancedMesh.js",
  469. "../../src/Mesh/linesMesh.js"
  470. ],
  471. "dependUpon": [
  472. "core",
  473. "shaderMaterial"
  474. ],
  475. "shaders": [
  476. "color.vertex",
  477. "color.fragment"
  478. ]
  479. },
  480. "meshBuilder": {
  481. "files": [
  482. "../../src/Mesh/meshBuilder.js"
  483. ],
  484. "dependUpon": [
  485. "core",
  486. "additionalMeshes"
  487. ]
  488. },
  489. "meshCompression": {
  490. "files": [
  491. "../../src/Mesh/Compression/dracoCompression.js"
  492. ]
  493. },
  494. "shaderMaterial": {
  495. "files": [
  496. "../../src/Materials/shaderMaterial.js"
  497. ],
  498. "dependUpon": [
  499. "core"
  500. ]
  501. },
  502. "pbrMaterial": {
  503. "files": [
  504. "../../src/Materials/PBR/pbrBaseMaterial.js",
  505. "../../src/Materials/PBR/pbrBaseSimpleMaterial.js",
  506. "../../src/Materials/PBR/pbrMaterial.js",
  507. "../../src/Materials/PBR/pbrMetallicRoughnessMaterial.js",
  508. "../../src/Materials/PBR/pbrSpecularGlossinessMaterial.js"
  509. ],
  510. "dependUpon": [
  511. "core",
  512. "harmonics"
  513. ],
  514. "shaders": [
  515. "pbr.vertex",
  516. "pbr.fragment",
  517. "rgbdEncode.fragment",
  518. "rgbdDecode.fragment"
  519. ],
  520. "shaderIncludes": [
  521. "pbrVertexDeclaration",
  522. "pbrFragmentDeclaration",
  523. "pbrUboDeclaration",
  524. "pbrFunctions",
  525. "harmonicsFunctions",
  526. "pbrLightFunctions"
  527. ]
  528. },
  529. "targetCamera": {
  530. "files": [
  531. "../../src/Cameras/cameraInputsManager.js",
  532. "../../src/Cameras/targetCamera.js"
  533. ],
  534. "dependUpon": [
  535. "core"
  536. ]
  537. },
  538. "freeCamera": {
  539. "files": [
  540. "../../src/Cameras/Inputs/freeCameraMouseInput.js",
  541. "../../src/Cameras/Inputs/freeCameraKeyboardMoveInput.js",
  542. "../../src/Cameras/freeCameraInputsManager.js",
  543. "../../src/Cameras/freeCamera.js"
  544. ],
  545. "dependUpon": [
  546. "targetCamera"
  547. ]
  548. },
  549. "flyCamera": {
  550. "files": [
  551. "../../src/Cameras/Inputs/flyCameraMouseInput.js",
  552. "../../src/Cameras/Inputs/flyCameraKeyboardInput.js",
  553. "../../src/Cameras/flyCameraInputsManager.js",
  554. "../../src/Cameras/flyCamera.js"
  555. ],
  556. "dependUpon": [
  557. "targetCamera"
  558. ]
  559. },
  560. "arcRotateCamera": {
  561. "files": [
  562. "../../src/Cameras/Inputs/arcRotateCameraKeyboardMoveInput.js",
  563. "../../src/Cameras/Inputs/arcRotateCameraMouseWheelInput.js",
  564. "../../src/Cameras/Inputs/arcRotateCameraPointersInput.js",
  565. "../../src/Cameras/arcRotateCameraInputsManager.js",
  566. "../../src/Cameras/arcRotateCamera.js"
  567. ],
  568. "dependUpon": [
  569. "targetCamera"
  570. ]
  571. },
  572. "hemisphericLight": {
  573. "files": [
  574. "../../src/Lights/hemisphericLight.js"
  575. ],
  576. "dependUpon": [
  577. "core"
  578. ]
  579. },
  580. "pointLight": {
  581. "files": [
  582. "../../src/Lights/shadowLight.js",
  583. "../../src/Lights/pointLight.js"
  584. ],
  585. "dependUpon": [
  586. "core"
  587. ]
  588. },
  589. "directionalLight": {
  590. "files": [
  591. "../../src/Lights/shadowLight.js",
  592. "../../src/Lights/directionalLight.js"
  593. ],
  594. "dependUpon": [
  595. "core"
  596. ]
  597. },
  598. "spotLight": {
  599. "files": [
  600. "../../src/Lights/shadowLight.js",
  601. "../../src/Lights/spotLight.js"
  602. ],
  603. "dependUpon": [
  604. "core"
  605. ]
  606. },
  607. "audio": {
  608. "files": [
  609. "../../src/Audio/audioEngine.js",
  610. "../../src/Audio/sound.js",
  611. "../../src/Audio/soundtrack.js",
  612. "../../src/Audio/analyser.js",
  613. "../../src/Audio/weightedsound.js",
  614. "../../src/Audio/audioSceneComponent.js",
  615. "../../src/Actions/directAudioActions.js"
  616. ],
  617. "dependUpon": [
  618. "core"
  619. ]
  620. },
  621. "additionalTextures": {
  622. "files": [
  623. "../../src/Materials/Textures/cubeTexture.js",
  624. "../../src/Materials/Textures/rawCubeTexture.js",
  625. "../../src/Materials/Textures/renderTargetTexture.js",
  626. "../../src/Materials/Textures/multiRenderTarget.js",
  627. "../../src/Materials/Textures/mirrorTexture.js",
  628. "../../src/Materials/Textures/refractionTexture.js",
  629. "../../src/Materials/Textures/dynamicTexture.js",
  630. "../../src/Materials/Textures/videoTexture.js",
  631. "../../src/Materials/Textures/rawTexture.js",
  632. "../../src/Materials/Textures/rawTexture3D.js"
  633. ],
  634. "dependUpon": [
  635. "core"
  636. ]
  637. },
  638. "shadows": {
  639. "files": [
  640. "../../src/Lights/Shadows/shadowGenerator.js",
  641. "../../src/Lights/Shadows/shadowGeneratorSceneComponent.js"
  642. ],
  643. "dependUpon": [
  644. "postProcesses"
  645. ],
  646. "shaders": [
  647. "shadowMap.vertex",
  648. "shadowMap.fragment",
  649. "depthBoxBlur.fragment"
  650. ]
  651. },
  652. "loader": {
  653. "files": [
  654. "../../src/Loading/loadingScreen.js",
  655. "../../src/Loading/sceneLoader.js",
  656. "../../src/Loading/Plugins/babylonFileLoader.js",
  657. "../../src/Tools/filesInput.js"
  658. ],
  659. "dependUpon": [
  660. "core"
  661. ]
  662. },
  663. "stringDictionary": {
  664. "files": [
  665. "../../src/Tools/stringDictionary.js"
  666. ],
  667. "dependUpon": [
  668. "core"
  669. ]
  670. },
  671. "userData": {
  672. "files": [
  673. "../../src/Tools/tags.js",
  674. "../../src/Tools/andOrNotEvaluator.js"
  675. ],
  676. "dependUpon": [
  677. "stringDictionary"
  678. ]
  679. },
  680. "offline": {
  681. "files": [
  682. "../../src/Offline/database.js"
  683. ],
  684. "dependUpon": [
  685. "core"
  686. ]
  687. },
  688. "fresnel": {
  689. "files": [
  690. "../../src/Materials/fresnelParameters.js"
  691. ],
  692. "dependUpon": [
  693. "core"
  694. ]
  695. },
  696. "multiMaterial": {
  697. "files": [
  698. "../../src/Materials/multiMaterial.js"
  699. ],
  700. "dependUpon": [
  701. "core"
  702. ]
  703. },
  704. "touchCamera": {
  705. "files": [
  706. "../../src/Cameras/Inputs/freeCameraTouchInput.js",
  707. "../../src/Cameras/touchCamera.js"
  708. ],
  709. "dependUpon": [
  710. "core"
  711. ]
  712. },
  713. "procedural": {
  714. "files": [
  715. "../../src/Materials/Textures/Procedurals/proceduralTexture.js",
  716. "../../src/Materials/Textures/Procedurals/proceduralTextureSceneComponent.js",
  717. "../../src/Materials/Textures/Procedurals/customProceduralTexture.js"
  718. ],
  719. "dependUpon": [
  720. "core"
  721. ],
  722. "shaders": [
  723. "procedural.vertex"
  724. ]
  725. },
  726. "gamepad": {
  727. "files": [
  728. "../../src/Cameras/Inputs/freeCameraGamepadInput.js",
  729. "../../src/Cameras/Inputs/arcRotateCameraGamepadInput.js",
  730. "../../src/Gamepad/gamepadManager.js",
  731. "../../src/Gamepad/gamepad.js",
  732. "../../src/Gamepad/xboxGamepad.js",
  733. "../../src/Gamepad/Controllers/poseEnabledController.js",
  734. "../../src/Gamepad/Controllers/webVRController.js",
  735. "../../src/Gamepad/Controllers/oculusTouchController.js",
  736. "../../src/Gamepad/Controllers/viveController.js",
  737. "../../src/Gamepad/Controllers/genericController.js",
  738. "../../src/Gamepad/Controllers/windowsMotionController.js",
  739. "../../src/Gamepad/Controllers/gearVRController.js",
  740. "../../src/Gamepad/Controllers/daydreamController.js",
  741. "../../src/Gamepad/gamepadSceneComponent.js"
  742. ],
  743. "dependUpon": [
  744. "core"
  745. ]
  746. },
  747. "additionalCameras": {
  748. "files": [
  749. "../../src/Cameras/followCamera.js",
  750. "../../src/Cameras/universalCamera.js",
  751. "../../src/Cameras/gamepadCamera.js"
  752. ],
  753. "dependUpon": [
  754. "gamepad"
  755. ]
  756. },
  757. "depthRenderer": {
  758. "files": [
  759. "../../src/Rendering/depthRenderer.js",
  760. "../../src/Rendering/depthRendererSceneComponent.js"
  761. ],
  762. "dependUpon": [
  763. "core"
  764. ],
  765. "shaders": [
  766. "depth.vertex",
  767. "depth.fragment"
  768. ],
  769. "shaderIncludes": []
  770. },
  771. "geometryBufferRenderer": {
  772. "files": [
  773. "../../src/Rendering/geometryBufferRenderer.js",
  774. "../../src/Rendering/geometryBufferRendererSceneComponent.js"
  775. ],
  776. "dependUpon": [
  777. "core"
  778. ],
  779. "shaders": [
  780. "geometry.vertex",
  781. "geometry.fragment"
  782. ],
  783. "shaderIncludes": [
  784. "mrtFragmentDeclaration",
  785. "bones300Declaration",
  786. "instances300Declaration"
  787. ]
  788. },
  789. "postProcesses": {
  790. "files": [
  791. "../../src/PostProcess/postProcessManager.js",
  792. "../../src/PostProcess/postProcess.js",
  793. "../../src/PostProcess/passPostProcess.js"
  794. ],
  795. "dependUpon": [
  796. "core"
  797. ],
  798. "shaders": [
  799. "postprocess.vertex",
  800. "pass.fragment"
  801. ]
  802. },
  803. "additionalPostProcess_blur": {
  804. "files": [
  805. "../../src/PostProcess/blurPostProcess.js"
  806. ],
  807. "dependUpon": [
  808. "postProcesses"
  809. ],
  810. "shaders": [
  811. "kernelBlur.vertex",
  812. "kernelBlur.fragment"
  813. ],
  814. "shaderIncludes": [
  815. "kernelBlurFragment",
  816. "kernelBlurFragment2",
  817. "kernelBlurVaryingDeclaration",
  818. "kernelBlurVertex"
  819. ]
  820. },
  821. "additionalPostProcess_depthOfFieldBlur": {
  822. "files": [
  823. "../../src/PostProcess/depthOfFieldBlurPostProcess.js"
  824. ],
  825. "dependUpon": [
  826. "postProcesses",
  827. "additionalPostProcess_blur"
  828. ],
  829. "shaders": [
  830. "kernelBlur.vertex",
  831. "kernelBlur.fragment"
  832. ],
  833. "shaderIncludes": [
  834. "kernelBlurFragment",
  835. "kernelBlurFragment2",
  836. "kernelBlurVaryingDeclaration",
  837. "kernelBlurVertex"
  838. ]
  839. },
  840. "additionalPostProcess_circleOfConfusion": {
  841. "files": [
  842. "../../src/PostProcess/circleOfConfusionPostProcess.js"
  843. ],
  844. "dependUpon": [
  845. "postProcesses"
  846. ],
  847. "shaders": [
  848. "circleOfConfusion.fragment"
  849. ]
  850. },
  851. "additionalPostProcess_sharpen": {
  852. "files": [
  853. "../../src/PostProcess/sharpenPostProcess.js"
  854. ],
  855. "dependUpon": [
  856. "postProcesses"
  857. ],
  858. "shaders": [
  859. "sharpen.fragment"
  860. ]
  861. },
  862. "additionalPostProcess_chromaticAberration": {
  863. "files": [
  864. "../../src/PostProcess/chromaticAberrationPostProcess.js"
  865. ],
  866. "dependUpon": [
  867. "postProcesses"
  868. ],
  869. "shaders": [
  870. "chromaticAberration.fragment"
  871. ]
  872. },
  873. "additionalPostProcess_grain": {
  874. "files": [
  875. "../../src/PostProcess/grainPostProcess.js"
  876. ],
  877. "dependUpon": [
  878. "postProcesses"
  879. ],
  880. "shaders": [
  881. "grain.fragment"
  882. ]
  883. },
  884. "additionalPostProcess_depthOfFieldMerge": {
  885. "files": [
  886. "../../src/PostProcess/depthOfFieldMergePostProcess.js"
  887. ],
  888. "dependUpon": [
  889. "postProcesses"
  890. ],
  891. "shaders": [
  892. "depthOfFieldMerge.fragment"
  893. ]
  894. },
  895. "additionalPostProcess_bloomMerge": {
  896. "files": [
  897. "../../src/PostProcess/bloomMergePostProcess.js"
  898. ],
  899. "dependUpon": [
  900. "postProcesses"
  901. ],
  902. "shaders": [
  903. "bloomMerge.fragment"
  904. ]
  905. },
  906. "additionalPostProcess_depthOfFieldEffect": {
  907. "files": [
  908. "../../src/PostProcess/depthOfFieldEffect.js"
  909. ],
  910. "dependUpon": [
  911. "additionalPostProcess_depthOfFieldBlur",
  912. "additionalPostProcess_depthOfFieldMerge",
  913. "additionalPostProcess_circleOfConfusion"
  914. ]
  915. },
  916. "additionalPostProcess_bloomEffect": {
  917. "files": [
  918. "../../src/PostProcess/bloomEffect.js"
  919. ],
  920. "dependUpon": [
  921. "additionalPostProcess_blur",
  922. "additionalPostProcess_bloomMerge",
  923. "additionalPostProcess_extractHighlights"
  924. ]
  925. },
  926. "additionalPostProcess_fxaa": {
  927. "files": [
  928. "../../src/PostProcess/fxaaPostProcess.js"
  929. ],
  930. "dependUpon": [
  931. "postProcesses"
  932. ],
  933. "shaders": [
  934. "fxaa.vertex",
  935. "fxaa.fragment"
  936. ]
  937. },
  938. "additionalPostProcess_highlights": {
  939. "files": [
  940. "../../src/PostProcess/highlightsPostProcess.js"
  941. ],
  942. "dependUpon": [
  943. "postProcesses"
  944. ],
  945. "shaders": [
  946. "highlights.fragment"
  947. ]
  948. },
  949. "additionalPostProcess_extractHighlights": {
  950. "files": [
  951. "../../src/PostProcess/extractHighlightsPostProcess.js"
  952. ],
  953. "dependUpon": [
  954. "postProcesses"
  955. ],
  956. "shaders": [
  957. "extractHighlights.fragment"
  958. ]
  959. },
  960. "additionalPostProcess_imageProcessing": {
  961. "files": [
  962. "../../src/PostProcess/imageProcessingPostProcess.js"
  963. ],
  964. "dependUpon": [
  965. "postProcesses",
  966. "imageProcessing"
  967. ],
  968. "shaders": [
  969. "imageProcessing.fragment"
  970. ],
  971. "shaderIncludes": []
  972. },
  973. "additionalPostProcess_motionBlur": {
  974. "files": [
  975. "../../src/PostProcess/motionBlurPostProcess.js"
  976. ],
  977. "dependUpon": [
  978. "postProcesses"
  979. ],
  980. "shaders": [
  981. "motionBlur.fragment"
  982. ]
  983. },
  984. "additionalPostProcesses": {
  985. "files": [
  986. "../../src/PostProcess/refractionPostProcess.js",
  987. "../../src/PostProcess/blackAndWhitePostProcess.js",
  988. "../../src/PostProcess/convolutionPostProcess.js",
  989. "../../src/PostProcess/sharpenPostProcess.js",
  990. "../../src/PostProcess/chromaticAberrationPostProcess.js",
  991. "../../src/PostProcess/grainPostProcess.js",
  992. "../../src/PostProcess/filterPostProcess.js",
  993. "../../src/PostProcess/fxaaPostProcess.js",
  994. "../../src/PostProcess/volumetricLightScatteringPostProcess.js",
  995. "../../src/PostProcess/colorCorrectionPostProcess.js",
  996. "../../src/PostProcess/tonemapPostProcess.js",
  997. "../../src/PostProcess/displayPassPostProcess.js",
  998. "../../src/PostProcess/highlightsPostProcess.js",
  999. "../../src/PostProcess/extractHighlightsPostProcess.js",
  1000. "../../src/PostProcess/imageProcessingPostProcess.js",
  1001. "../../src/PostProcess/motionBlurPostProcess.js"
  1002. ],
  1003. "dependUpon": [
  1004. "postProcesses",
  1005. "imageProcessing"
  1006. ],
  1007. "shaders": [
  1008. "refraction.fragment",
  1009. "blackAndWhite.fragment",
  1010. "convolution.fragment",
  1011. "sharpen.fragment",
  1012. "filter.fragment",
  1013. "fxaa.fragment",
  1014. "volumetricLightScattering.fragment",
  1015. "volumetricLightScatteringPass.fragment",
  1016. "colorCorrection.fragment",
  1017. "tonemap.fragment",
  1018. "displayPass.fragment",
  1019. "highlights.fragment",
  1020. "imageProcessing.fragment",
  1021. "motionBlur.fragment"
  1022. ]
  1023. },
  1024. "renderingPipeline": {
  1025. "files": [
  1026. "../../src/PostProcess/RenderPipeline/postProcessRenderPipelineManager.js",
  1027. "../../src/PostProcess/RenderPipeline/postProcessRenderPipelineManagerSceneComponent.js",
  1028. "../../src/PostProcess/RenderPipeline/postProcessRenderEffect.js",
  1029. "../../src/PostProcess/RenderPipeline/postProcessRenderPipeline.js"
  1030. ],
  1031. "dependUpon": [
  1032. "postProcesses"
  1033. ]
  1034. },
  1035. "additionalRenderingPipeline": {
  1036. "files": [
  1037. "../../src/PostProcess/RenderPipeline/Pipelines/ssaoRenderingPipeline.js",
  1038. "../../src/PostProcess/RenderPipeline/Pipelines/ssao2RenderingPipeline.js",
  1039. "../../src/PostProcess/RenderPipeline/Pipelines/lensRenderingPipeline.js",
  1040. "../../src/PostProcess/RenderPipeline/Pipelines/standardRenderingPipeline.js"
  1041. ],
  1042. "dependUpon": [
  1043. "renderingPipeline",
  1044. "depthRenderer",
  1045. "geometryBufferRenderer"
  1046. ],
  1047. "shaders": [
  1048. "ssao.fragment",
  1049. "ssao2.fragment",
  1050. "ssaoCombine.fragment",
  1051. "lensHighlights.fragment",
  1052. "depthOfField.fragment",
  1053. "standard.fragment"
  1054. ]
  1055. },
  1056. "defaultRenderingPipeline": {
  1057. "files": [
  1058. "../../src/PostProcess/RenderPipeline/Pipelines/defaultRenderingPipeline.js"
  1059. ],
  1060. "dependUpon": [
  1061. "renderingPipeline",
  1062. "additionalPostProcess_fxaa",
  1063. "additionalPostProcess_chromaticAberration",
  1064. "additionalPostProcess_grain",
  1065. "additionalPostProcess_sharpen",
  1066. "additionalPostProcess_depthOfFieldEffect",
  1067. "additionalPostProcess_bloomEffect"
  1068. ]
  1069. },
  1070. "bones": {
  1071. "files": [
  1072. "../../src/Bones/bone.js",
  1073. "../../src/Bones/boneIKController.js",
  1074. "../../src/Bones/boneLookController.js",
  1075. "../../src/Bones/skeleton.js"
  1076. ],
  1077. "dependUpon": [
  1078. "core"
  1079. ]
  1080. },
  1081. "hdr": {
  1082. "files": [
  1083. "../../src/Tools/HDR/hdr.js",
  1084. "../../src/Materials/Textures/hdrCubeTexture.js",
  1085. "../../src/Tools/HDR/panoramaToCubemap.js"
  1086. ],
  1087. "dependUpon": [
  1088. "core",
  1089. "harmonics"
  1090. ]
  1091. },
  1092. "csg": {
  1093. "files": [
  1094. "../../src/Mesh/csg.js"
  1095. ],
  1096. "dependUpon": [
  1097. "core"
  1098. ]
  1099. },
  1100. "polygonMesh": {
  1101. "files": [
  1102. "../../src/Mesh/polygonMesh.js"
  1103. ],
  1104. "dependUpon": [
  1105. "core"
  1106. ]
  1107. },
  1108. "lensFlares": {
  1109. "files": [
  1110. "../../src/LensFlare/lensFlare.js",
  1111. "../../src/LensFlare/lensFlareSystemSceneComponent.js",
  1112. "../../src/LensFlare/lensFlareSystem.js"
  1113. ],
  1114. "dependUpon": [
  1115. "core"
  1116. ],
  1117. "shaders": [
  1118. "lensFlare.vertex",
  1119. "lensFlare.fragment"
  1120. ]
  1121. },
  1122. "physics": {
  1123. "files": [
  1124. "../../src/Physics/physicsJoint.js",
  1125. "../../src/Physics/physicsImpostor.js",
  1126. "../../src/Physics/physicsEngine.js",
  1127. "../../src/Physics/physicsHelper.js",
  1128. "../../src/Physics/Plugins/cannonJSPlugin.js",
  1129. "../../src/Physics/Plugins/oimoJSPlugin.js",
  1130. "../../src/Physics/physicsEngineComponent.js"
  1131. ],
  1132. "dependUpon": [
  1133. "core",
  1134. "picking"
  1135. ]
  1136. },
  1137. "harmonics": {
  1138. "files": [
  1139. "../../src/Math/sphericalPolynomial.js",
  1140. "../../src/Tools/HDR/cubemapToSphericalPolynomial.js"
  1141. ],
  1142. "dependUpon": [
  1143. "core"
  1144. ]
  1145. },
  1146. "textureFormats": {
  1147. "files": [],
  1148. "dependUpon": [
  1149. "dds",
  1150. "tga",
  1151. "ktx",
  1152. "env"
  1153. ]
  1154. },
  1155. "dds": {
  1156. "files": [
  1157. "../../src/Tools/dds.js",
  1158. "../../src/Materials/Textures/Loaders/ddsTextureLoader.js"
  1159. ],
  1160. "dependUpon": [
  1161. "core"
  1162. ]
  1163. },
  1164. "tga": {
  1165. "files": [
  1166. "../../src/Tools/tga.js",
  1167. "../../src/Materials/Textures/Loaders/tgaTextureLoader.js"
  1168. ],
  1169. "dependUpon": [
  1170. "core"
  1171. ]
  1172. },
  1173. "ktx": {
  1174. "files": [
  1175. "../../src/Tools/khronosTextureContainer.js",
  1176. "../../src/Materials/Textures/Loaders/ktxTextureLoader.js"
  1177. ],
  1178. "dependUpon": [
  1179. "core"
  1180. ]
  1181. },
  1182. "env": {
  1183. "files": [
  1184. "../../src/Tools/environmentTextureTools.js",
  1185. "../../src/Materials/Textures/Loaders/envTextureLoader.js"
  1186. ],
  1187. "dependUpon": [
  1188. "core",
  1189. "harmonics"
  1190. ]
  1191. },
  1192. "debug": {
  1193. "files": [
  1194. "../../src/Debug/skeletonViewer.js",
  1195. "../../src/Debug/axesViewer.js",
  1196. "../../src/Debug/boneAxesViewer.js",
  1197. "../../src/Debug/rayHelper.js",
  1198. "../../src/Debug/debugLayer.js",
  1199. "../../src/Debug/physicsViewer.js",
  1200. "../../src/Rendering/boundingBoxRenderer.js"
  1201. ],
  1202. "dependUpon": [
  1203. "shaderMaterial",
  1204. "additionalMeshes",
  1205. "core",
  1206. "stringDictionary",
  1207. "actions"
  1208. ],
  1209. "shaders": []
  1210. },
  1211. "utilityLayer": {
  1212. "files": [
  1213. "../../src/Rendering/utilityLayerRenderer.js"
  1214. ],
  1215. "dependUpon": [
  1216. "core"
  1217. ]
  1218. },
  1219. "gizmos": {
  1220. "files": [
  1221. "../../src/Gizmos/gizmo.js",
  1222. "../../src/Gizmos/axisDragGizmo.js",
  1223. "../../src/Gizmos/axisScaleGizmo.js",
  1224. "../../src/Gizmos/planeRotationGizmo.js",
  1225. "../../src/Gizmos/positionGizmo.js",
  1226. "../../src/Gizmos/rotationGizmo.js",
  1227. "../../src/Gizmos/scaleGizmo.js",
  1228. "../../src/Gizmos/boundingBoxGizmo.js",
  1229. "../../src/Gizmos/gizmoManager.js"
  1230. ],
  1231. "dependUpon": [
  1232. "core",
  1233. "utilityLayer",
  1234. "meshBehaviors"
  1235. ]
  1236. },
  1237. "morphTargets": {
  1238. "files": [
  1239. "../../src/Morph/morphTarget.js",
  1240. "../../src/Morph/morphTargetManager.js"
  1241. ],
  1242. "dependUpon": [
  1243. "core"
  1244. ]
  1245. },
  1246. "octrees": {
  1247. "files": [
  1248. "../../src/Culling/Octrees/octree.js",
  1249. "../../src/Culling/Octrees/octreeBlock.js",
  1250. "../../src/Culling/Octrees/octreeSceneComponent.js"
  1251. ],
  1252. "dependUpon": [
  1253. "core"
  1254. ]
  1255. },
  1256. "anaglyph": {
  1257. "files": [
  1258. "../../src/PostProcess/anaglyphPostProcess.js",
  1259. "../../src/Cameras/Stereoscopic/anaglyphArcRotateCamera.js",
  1260. "../../src/Cameras/Stereoscopic/anaglyphFreeCamera.js",
  1261. "../../src/Cameras/Stereoscopic/anaglyphGamepadCamera.js",
  1262. "../../src/Cameras/Stereoscopic/anaglyphUniversalCamera.js"
  1263. ],
  1264. "dependUpon": [
  1265. "core",
  1266. "postProcesses",
  1267. "freeCamera",
  1268. "gamepad"
  1269. ],
  1270. "shaders": [
  1271. "anaglyph.fragment"
  1272. ]
  1273. },
  1274. "stereoscopic": {
  1275. "files": [
  1276. "../../src/PostProcess/stereoscopicInterlacePostProcess.js",
  1277. "../../src/Cameras/Stereoscopic/stereoscopicArcRotateCamera.js",
  1278. "../../src/Cameras/Stereoscopic/stereoscopicFreeCamera.js",
  1279. "../../src/Cameras/Stereoscopic/stereoscopicGamepadCamera.js",
  1280. "../../src/Cameras/Stereoscopic/stereoscopicUniversalCamera.js"
  1281. ],
  1282. "dependUpon": [
  1283. "core",
  1284. "postProcesses",
  1285. "freeCamera",
  1286. "gamepad"
  1287. ],
  1288. "shaders": [
  1289. "stereoscopicInterlace.fragment"
  1290. ]
  1291. },
  1292. "vr": {
  1293. "files": [
  1294. "../../src/PostProcess/vrDistortionCorrectionPostProcess.js",
  1295. "../../src/Cameras/Inputs/freeCameraDeviceOrientationInput.js",
  1296. "../../src/Cameras/Inputs/arcRotateCameraVRDeviceOrientationInput.js",
  1297. "../../src/Cameras/VR/vrCameraMetrics.js",
  1298. "../../src/Cameras/VR/webVRCamera.js",
  1299. "../../src/Cameras/deviceOrientationCamera.js",
  1300. "../../src/Cameras/VR/vrDeviceOrientationFreeCamera.js",
  1301. "../../src/Cameras/VR/vrDeviceOrientationArcRotateCamera.js",
  1302. "../../src/Cameras/VR/vrDeviceOrientationGamepadCamera.js",
  1303. "../../src/Cameras/VR/vrExperienceHelper.js",
  1304. "../../src/Cameras/XR/webXRCamera.js",
  1305. "../../src/Cameras/XR/webXRSessionManager.js",
  1306. "../../src/Cameras/XR/webXRExperienceHelper.js",
  1307. "../../src/Cameras/XR/webXREnterExitUI.js",
  1308. "../../src/Cameras/XR/webXRManagedOutputCanvas.js",
  1309. "../../src/Cameras/XR/webXRInput.js"
  1310. ],
  1311. "dependUpon": [
  1312. "core",
  1313. "postProcesses",
  1314. "freeCamera",
  1315. "gamepad"
  1316. ],
  1317. "shaders": [
  1318. "vrDistortionCorrection.fragment"
  1319. ]
  1320. },
  1321. "virtualJoystick": {
  1322. "files": [
  1323. "../../src/Tools/virtualJoystick.js",
  1324. "../../src/Cameras/virtualJoysticksCamera.js",
  1325. "../../src/Cameras/Inputs/freeCameraVirtualJoystickInput.js"
  1326. ],
  1327. "dependUpon": [
  1328. "core"
  1329. ]
  1330. },
  1331. "optimizations": {
  1332. "files": [
  1333. "../../src/Mesh/meshSimplification.js",
  1334. "../../src/Mesh/meshSimplificationSceneComponent.js",
  1335. "../../src/Mesh/meshLODLevel.js",
  1336. "../../src/Tools/sceneOptimizer.js"
  1337. ],
  1338. "dependUpon": [
  1339. "core"
  1340. ]
  1341. },
  1342. "highlights": {
  1343. "files": [
  1344. "../../src/Rendering/outlineRenderer.js",
  1345. "../../src/Rendering/edgesRenderer.js",
  1346. "../../src/Rendering/lineEdgesRenderer.js",
  1347. "../../src/Layer/effectLayerSceneComponent.js",
  1348. "../../src/Layer/effectLayer.js",
  1349. "../../src/Layer/highlightLayer.js",
  1350. "../../src/Layer/glowLayer.js"
  1351. ],
  1352. "dependUpon": [
  1353. "shaderMaterial"
  1354. ],
  1355. "shaders": [
  1356. "glowBlurPostProcess.fragment",
  1357. "glowMapGeneration.fragment",
  1358. "glowMapGeneration.vertex",
  1359. "glowMapMerge.fragment",
  1360. "glowMapMerge.vertex",
  1361. "line.vertex",
  1362. "line.fragment",
  1363. "outline.vertex",
  1364. "outline.fragment"
  1365. ]
  1366. },
  1367. "assetsManager": {
  1368. "files": [
  1369. "../../src/Tools/assetsManager.js"
  1370. ],
  1371. "dependUpon": [
  1372. "core"
  1373. ]
  1374. },
  1375. "serialization": {
  1376. "files": [
  1377. "../../src/Tools/sceneSerializer.js"
  1378. ],
  1379. "dependUpon": [
  1380. "core"
  1381. ]
  1382. },
  1383. "probes": {
  1384. "files": [
  1385. "../../src/Probes/reflectionProbe.js"
  1386. ],
  1387. "dependUpon": [
  1388. "core"
  1389. ]
  1390. },
  1391. "layer": {
  1392. "files": [
  1393. "../../src/Layer/layerSceneComponent.js",
  1394. "../../src/Layer/layer.js"
  1395. ],
  1396. "dependUpon": [
  1397. "core"
  1398. ],
  1399. "shaders": [
  1400. "layer.vertex",
  1401. "layer.fragment"
  1402. ]
  1403. },
  1404. "backgroundMaterial": {
  1405. "files": [
  1406. "../../src/Materials/Background/backgroundMaterial.js"
  1407. ],
  1408. "dependUpon": [
  1409. "core"
  1410. ],
  1411. "shaders": [
  1412. "background.vertex",
  1413. "background.fragment"
  1414. ],
  1415. "shaderIncludes": [
  1416. "backgroundVertexDeclaration",
  1417. "backgroundFragmentDeclaration",
  1418. "backgroundUboDeclaration"
  1419. ]
  1420. },
  1421. "sceneHelpers": {
  1422. "files": [
  1423. "../../src/Helpers/sceneHelpers.js"
  1424. ],
  1425. "dependUpon": [
  1426. "core",
  1427. "arcRotateCamera",
  1428. "freeCamera",
  1429. "hemisphericLight",
  1430. "pbrMaterial",
  1431. "environmentHelper",
  1432. "vr"
  1433. ]
  1434. },
  1435. "environmentHelper": {
  1436. "files": [
  1437. "../../src/Helpers/environmentHelper.js"
  1438. ],
  1439. "dependUpon": [
  1440. "core",
  1441. "backgroundMaterial",
  1442. "additionalTextures"
  1443. ]
  1444. },
  1445. "particleHelper": {
  1446. "files": [
  1447. "../../src/Particles/particleSystemSet.js",
  1448. "../../src/Particles/particleHelper.js"
  1449. ],
  1450. "dependUpon": [
  1451. "particles"
  1452. ]
  1453. },
  1454. "videoDome": {
  1455. "files": [
  1456. "../../src/Helpers/videoDome.js"
  1457. ],
  1458. "dependUpon": [
  1459. "core",
  1460. "meshBuilder",
  1461. "additionalTextures"
  1462. ]
  1463. },
  1464. "photoDome": {
  1465. "files": [
  1466. "../../src/Helpers/photoDome.js"
  1467. ],
  1468. "dependUpon": [
  1469. "core",
  1470. "meshBuilder",
  1471. "additionalTextures"
  1472. ]
  1473. },
  1474. "videoRecorder": {
  1475. "files": [
  1476. "../../src/Tools/videoRecorder.js"
  1477. ],
  1478. "dependUpon": [
  1479. "core"
  1480. ]
  1481. }
  1482. },
  1483. "typescript": [
  1484. "../../src/**/*.ts"
  1485. ],
  1486. "workers": [
  1487. {
  1488. "variable": "BABYLON.CollisionWorker",
  1489. "files": [
  1490. "../../src/Collisions/collider.js",
  1491. "../../src/Collisions/collisionWorker.js",
  1492. "../../src/Collisions/collisionCoordinator.js",
  1493. "../../src/Math/math.js"
  1494. ]
  1495. }
  1496. ],
  1497. "modules": [
  1498. "core",
  1499. "materialsLibrary",
  1500. "postProcessesLibrary",
  1501. "proceduralTexturesLibrary",
  1502. "loaders",
  1503. "serializers",
  1504. "gui",
  1505. "inspector"
  1506. ],
  1507. "viewerModules": [
  1508. "viewer",
  1509. "viewer-assets"
  1510. ],
  1511. "core": {
  1512. "libraries": [
  1513. {
  1514. "output": "babylon.js",
  1515. "maxOutput": "babylon.max.js",
  1516. "entry": "./Legacy/legacy.ts"
  1517. }
  1518. ],
  1519. "build": {
  1520. "webpack": "../../../src/webpack.config.js",
  1521. "srcDirectory": "../../src/",
  1522. "distOutputDirectory": "/",
  1523. "dtsBundle": {
  1524. "name": "babylonjs",
  1525. "main": "../../dist/preview release/build/src/index.d.ts",
  1526. "out": "../babylon.module.d.ts",
  1527. "baseDir": "../../dist/preview release/build/",
  1528. "headerText": "BabylonJS"
  1529. },
  1530. "processDeclaration": {
  1531. "filename": "babylon.module.d.ts",
  1532. "packageName": "babylonjs",
  1533. "moduleName": "BABYLON",
  1534. "importsToRemove": [],
  1535. "classMap": {
  1536. "babylonjs": "BABYLON"
  1537. }
  1538. }
  1539. }
  1540. },
  1541. "materialsLibrary": {
  1542. "libraries": [
  1543. {
  1544. "output": "babylonjs.materials.min.js",
  1545. "entry": "./legacy/legacy.ts"
  1546. },
  1547. {
  1548. "output": "babylon.cellMaterial.min.js",
  1549. "entry": "./legacy/legacy-cell.ts",
  1550. "preventLoadLibrary": true
  1551. },
  1552. {
  1553. "output": "babylon.customMaterial.min.js",
  1554. "entry": "./legacy/legacy-custom.ts",
  1555. "preventLoadLibrary": true
  1556. },
  1557. {
  1558. "output": "babylon.fireMaterial.min.js",
  1559. "entry": "./legacy/legacy-fire.ts",
  1560. "preventLoadLibrary": true
  1561. },
  1562. {
  1563. "output": "babylon.furMaterial.min.js",
  1564. "entry": "./legacy/legacy-fur.ts",
  1565. "preventLoadLibrary": true
  1566. },
  1567. {
  1568. "output": "babylon.gradientMaterial.min.js",
  1569. "entry": "./legacy/legacy-gradient.ts",
  1570. "preventLoadLibrary": true
  1571. },
  1572. {
  1573. "output": "babylon.gridMaterial.min.js",
  1574. "entry": "./legacy/legacy-grid.ts",
  1575. "preventLoadLibrary": true
  1576. },
  1577. {
  1578. "output": "babylon.lavaMaterial.min.js",
  1579. "entry": "./legacy/legacy-lava.ts",
  1580. "preventLoadLibrary": true
  1581. },
  1582. {
  1583. "output": "babylon.mixMaterial.min.js",
  1584. "entry": "./legacy/legacy-mix.ts",
  1585. "preventLoadLibrary": true
  1586. },
  1587. {
  1588. "output": "babylon.normalMaterial.min.js",
  1589. "entry": "./legacy/legacy-normal.ts",
  1590. "preventLoadLibrary": true
  1591. },
  1592. {
  1593. "output": "babylon.shadowOnlyMaterial.min.js",
  1594. "entry": "./legacy/legacy-shadowOnly.ts",
  1595. "preventLoadLibrary": true
  1596. },
  1597. {
  1598. "output": "babylon.simpleMaterial.min.js",
  1599. "entry": "./legacy/legacy-simple.ts",
  1600. "preventLoadLibrary": true
  1601. },
  1602. {
  1603. "output": "babylon.skyMaterial.min.js",
  1604. "entry": "./legacy/legacy-sky.ts",
  1605. "preventLoadLibrary": true
  1606. },
  1607. {
  1608. "output": "babylon.terrainMaterial.min.js",
  1609. "entry": "./legacy/legacy-terrain.ts",
  1610. "preventLoadLibrary": true
  1611. },
  1612. {
  1613. "output": "babylon.triPlanarMaterial.min.js",
  1614. "entry": "./legacy/legacy-triPlanar.ts",
  1615. "preventLoadLibrary": true
  1616. },
  1617. {
  1618. "output": "babylon.waterMaterial.min.js",
  1619. "entry": "./legacy/legacy-water.ts",
  1620. "preventLoadLibrary": true
  1621. }
  1622. ],
  1623. "build": {
  1624. "webpack": "../../../materialsLibrary/webpack.config.js",
  1625. "srcDirectory": "../../materialsLibrary/src/",
  1626. "distOutputDirectory": "/materialsLibrary/",
  1627. "dtsBundle": {
  1628. "name": "babylonjs-materials",
  1629. "main": "../../dist/preview release/materialsLibrary/build/src/index.d.ts",
  1630. "out": "../babylonjs.materials.module.d.ts",
  1631. "baseDir": "../../dist/preview release/materialsLibrary/build/",
  1632. "headerText": "BabylonJS Materials"
  1633. },
  1634. "processDeclaration": {
  1635. "filename": "babylonjs.materials.module.d.ts",
  1636. "packageName": "babylonjs-materials",
  1637. "moduleName": "BABYLON",
  1638. "importsToRemove": [],
  1639. "classMap": {
  1640. "babylonjs": "BABYLON",
  1641. "babylonjs-loaders": "BABYLON",
  1642. "babylonjs-serializers": "BABYLON"
  1643. }
  1644. }
  1645. }
  1646. },
  1647. "postProcessesLibrary": {
  1648. "libraries": [
  1649. {
  1650. "output": "babylonjs.postProcess.min.js",
  1651. "entry": "./legacy/legacy.ts"
  1652. },
  1653. {
  1654. "output": "babylon.asciiArtPostProcess.min.js",
  1655. "entry": "./legacy/legacy-asciiArt.ts",
  1656. "preventLoadLibrary": true
  1657. },
  1658. {
  1659. "output": "babylon.digitalRainPostProcess.min.js",
  1660. "entry": "./legacy/legacy-digitalRain.ts",
  1661. "preventLoadLibrary": true
  1662. }
  1663. ],
  1664. "build": {
  1665. "webpack": "../../../postProcessLibrary/webpack.config.js",
  1666. "srcDirectory": "../../postProcessLibrary/src/",
  1667. "distOutputDirectory": "/postProcessesLibrary/",
  1668. "dtsBundle": {
  1669. "name": "babylonjs-postProcessLibrary",
  1670. "main": "../../dist/preview release/postProcessesLibrary/build/src/index.d.ts",
  1671. "out": "../babylonjs.postProcess.module.d.ts",
  1672. "baseDir": "../../dist/preview release/postProcessesLibrary/build/",
  1673. "headerText": "BabylonJS Postprocess library"
  1674. },
  1675. "processDeclaration": {
  1676. "filename": "babylonjs.postProcess.module.d.ts",
  1677. "packageName": "babylonjs-postProcessLibrary",
  1678. "moduleName": "BABYLON",
  1679. "importsToRemove": [],
  1680. "classMap": {
  1681. "babylonjs": "BABYLON",
  1682. "babylonjs-loaders": "BABYLON",
  1683. "babylonjs-serializers": "BABYLON"
  1684. }
  1685. }
  1686. }
  1687. },
  1688. "proceduralTexturesLibrary": {
  1689. "libraries": [
  1690. {
  1691. "output": "babylonjs.proceduralTextures.min.js",
  1692. "entry": "./legacy/legacy.ts"
  1693. },
  1694. {
  1695. "output": "babylon.brickProceduralTexture.min.js",
  1696. "entry": "./legacy/legacy-brick.ts",
  1697. "preventLoadLibrary": true
  1698. },
  1699. {
  1700. "output": "babylon.cloudProceduralTexture.min.js",
  1701. "entry": "./legacy/legacy-cloud.ts",
  1702. "preventLoadLibrary": true
  1703. },
  1704. {
  1705. "output": "babylon.fireProceduralTexture.min.js",
  1706. "entry": "./legacy/legacy-fire.ts",
  1707. "preventLoadLibrary": true
  1708. },
  1709. {
  1710. "output": "babylon.grassProceduralTexture.min.js",
  1711. "entry": "./legacy/legacy-grass.ts",
  1712. "preventLoadLibrary": true
  1713. },
  1714. {
  1715. "output": "babylon.marbleProceduralTexture.min.js",
  1716. "entry": "./legacy/legacy-marble.ts",
  1717. "preventLoadLibrary": true
  1718. },
  1719. {
  1720. "output": "babylon.normalMapProceduralTexture.min.js",
  1721. "entry": "./legacy/legacy-normalMap.ts",
  1722. "preventLoadLibrary": true
  1723. },
  1724. {
  1725. "output": "babylon.perlinNoiseProceduralTexture.min.js",
  1726. "entry": "./legacy/legacy-perlinNoise.ts",
  1727. "preventLoadLibrary": true
  1728. },
  1729. {
  1730. "output": "babylon.roadProceduralTexture.min.js",
  1731. "entry": "./legacy/legacy-road.ts",
  1732. "preventLoadLibrary": true
  1733. },
  1734. {
  1735. "output": "babylon.starfieldProceduralTexture.min.js",
  1736. "entry": "./legacy/legacy-starfield.ts",
  1737. "preventLoadLibrary": true
  1738. },
  1739. {
  1740. "output": "babylon.woodProceduralTexture.min.js",
  1741. "entry": "./legacy/legacy-wood.ts",
  1742. "preventLoadLibrary": true
  1743. }
  1744. ],
  1745. "build": {
  1746. "webpack": "../../../proceduralTexturesLibrary/webpack.config.js",
  1747. "srcDirectory": "../../proceduralTexturesLibrary/src/",
  1748. "distOutputDirectory": "/proceduralTexturesLibrary/",
  1749. "dtsBundle": {
  1750. "name": "babylonjs-procedural-textures",
  1751. "main": "../../dist/preview release/proceduralTexturesLibrary/build/src/index.d.ts",
  1752. "out": "../babylonjs.proceduralTextures.module.d.ts",
  1753. "baseDir": "../../dist/preview release/proceduralTexturesLibrary/build/",
  1754. "headerText": "BabylonJS Procedural Textures"
  1755. },
  1756. "processDeclaration": {
  1757. "filename": "babylonjs.proceduralTextures.module.d.ts",
  1758. "packageName": "babylonjs-procedural-textures",
  1759. "moduleName": "BABYLON",
  1760. "importsToRemove": [],
  1761. "classMap": {
  1762. "babylonjs": "BABYLON",
  1763. "babylonjs-loaders": "BABYLON",
  1764. "babylonjs-serializers": "BABYLON"
  1765. }
  1766. }
  1767. }
  1768. },
  1769. "loaders": {
  1770. "libraries": [
  1771. {
  1772. "output": "babylonjs.loaders.min.js",
  1773. "entry": "./legacy/legacy.ts"
  1774. },
  1775. {
  1776. "output": "babylon.objFileLoader.min.js",
  1777. "entry": "./legacy/legacy-objFileLoader.ts",
  1778. "preventLoadLibrary": true
  1779. },
  1780. {
  1781. "output": "babylon.stlFileLoader.min.js",
  1782. "entry": "./legacy/legacy-stlFileLoader.ts",
  1783. "preventLoadLibrary": true
  1784. },
  1785. {
  1786. "output": "babylon.glTF1FileLoader.min.js",
  1787. "entry": "./legacy/legacy-glTF1FileLoader.ts",
  1788. "preventLoadLibrary": true
  1789. },
  1790. {
  1791. "output": "babylon.glTF2FileLoader.min.js",
  1792. "entry": "./legacy/legacy-glTF2FileLoader.ts",
  1793. "preventLoadLibrary": true
  1794. },
  1795. {
  1796. "output": "babylon.glTFFileLoader.min.js",
  1797. "entry": "./legacy/legacy-glTFFileLoader.ts",
  1798. "preventLoadLibrary": true
  1799. }
  1800. ],
  1801. "build": {
  1802. "webpack": "../../../loaders/webpack.config.js",
  1803. "srcDirectory": "../../loaders/src/",
  1804. "distOutputDirectory": "/loaders/",
  1805. "dtsBundle": {
  1806. "name": "babylonjs-loaders",
  1807. "main": "../../dist/preview release/loaders/build/src/index.d.ts",
  1808. "out": "../babylonjs.loaders.module.d.ts",
  1809. "baseDir": "../../dist/preview release/loaders/build/",
  1810. "headerText": "BabylonJS Loaders"
  1811. },
  1812. "processDeclaration": {
  1813. "filename": "babylonjs.loaders.module.d.ts",
  1814. "packageName": "babylonjs-loaders",
  1815. "moduleName": "BABYLON",
  1816. "moduleSpecifics": [
  1817. {
  1818. "path": "babylonjs-loaders/src/glTF/1.0",
  1819. "namespace": "BABYLON.GLTF1"
  1820. },
  1821. {
  1822. "path": "babylonjs-loaders/src/glTF/2.0",
  1823. "namespace": "BABYLON.GLTF2"
  1824. },
  1825. {
  1826. "path": "babylonjs-loaders/src/glTF/2.0/glTFLoaderInterfaces",
  1827. "namespace": "BABYLON.GLTF2.Loader"
  1828. },
  1829. {
  1830. "path": "babylonjs-loaders/src/glTF/2.0/Extensions",
  1831. "namespace": "BABYLON.GLTF2.Loader.Extensions"
  1832. }
  1833. ],
  1834. "importsToRemove": [],
  1835. "classMap": {
  1836. "babylonjs": "BABYLON",
  1837. "babylonjs-gltf2interface": "BABYLON.GLTF2"
  1838. }
  1839. }
  1840. }
  1841. },
  1842. "serializers": {
  1843. "libraries": [
  1844. {
  1845. "output": "babylonjs.serializers.min.js",
  1846. "entry": "./legacy/legacy.ts"
  1847. },
  1848. {
  1849. "output": "babylon.objSerializer.min.js",
  1850. "entry": "./legacy/legacy-objSerializer.ts",
  1851. "preventLoadLibrary": true
  1852. },
  1853. {
  1854. "output": "babylon.glTF2Serializer.min.js",
  1855. "entry": "./legacy/legacy-glTF2Serializer.ts",
  1856. "preventLoadLibrary": true
  1857. }
  1858. ],
  1859. "build": {
  1860. "webpack": "../../../serializers/webpack.config.js",
  1861. "srcDirectory": "../../serializers/src/",
  1862. "distOutputDirectory": "/serializers/",
  1863. "dtsBundle": {
  1864. "name": "babylonjs-serializers",
  1865. "main": "../../dist/preview release/serializers/build/src/index.d.ts",
  1866. "out": "../babylonjs.serializers.module.d.ts",
  1867. "baseDir": "../../dist/preview release/serializers/build/",
  1868. "headerText": "BabylonJS serializers"
  1869. },
  1870. "processDeclaration": {
  1871. "filename": "babylonjs.serializers.module.d.ts",
  1872. "packageName": "babylonjs-serializers",
  1873. "moduleName": "BABYLON",
  1874. "importsToRemove": [],
  1875. "classMap": {
  1876. "babylonjs": "BABYLON",
  1877. "babylonjs-loaders": "BABYLON",
  1878. "babylonjs-serializers": "BABYLON",
  1879. "babylonjs-gltf2interface": "BABYLON.GLTF2"
  1880. },
  1881. "moduleSpecifics": [
  1882. {
  1883. "path": "babylonjs-serializers/src/glTF/2.0",
  1884. "namespace": "BABYLON.GLTF2.Exporter"
  1885. },
  1886. {
  1887. "path": "babylonjs-serializers/src/glTF/2.0/Extensions",
  1888. "namespace": "BABYLON.GLTF2.Exporter.Extensions"
  1889. },
  1890. {
  1891. "path": "babylonjs-serializers/src/glTF/2.0/glTFData",
  1892. "namespace": "BABYLON"
  1893. },
  1894. {
  1895. "path": "babylonjs-serializers/src/glTF/2.0/glTFSerializer",
  1896. "namespace": "BABYLON"
  1897. }
  1898. ]
  1899. }
  1900. }
  1901. },
  1902. "gui": {
  1903. "libraries": [
  1904. {
  1905. "output": "babylon.gui.min.js",
  1906. "entry": "././legacy/legacy.ts"
  1907. }
  1908. ],
  1909. "build": {
  1910. "webpack": "../../../gui/webpack.config.js",
  1911. "srcDirectory": "../../gui/src/",
  1912. "distOutputDirectory": "/gui/",
  1913. "dtsBundle": {
  1914. "name": "babylonjs-gui",
  1915. "main": "../../dist/preview release/gui/build/src/index.d.ts",
  1916. "out": "../babylon.gui.module.d.ts",
  1917. "baseDir": "../../dist/preview release/gui/build/",
  1918. "headerText": "BabylonJS GUI"
  1919. },
  1920. "processDeclaration": {
  1921. "filename": "babylon.gui.module.d.ts",
  1922. "packageName": "babylonjs-gui",
  1923. "moduleName": "BABYLON.GUI",
  1924. "importsToRemove": [],
  1925. "classMap": {
  1926. "babylonjs": "BABYLON",
  1927. "babylonjs-loaders": "BABYLON",
  1928. "babylonjs-serializers": "BABYLON"
  1929. }
  1930. }
  1931. }
  1932. },
  1933. "inspector": {
  1934. "libraries": [
  1935. {
  1936. "output": "babylon.inspector.bundle.js",
  1937. "entry": "././legacy/legacy.ts",
  1938. "extendsRoot": true
  1939. }
  1940. ],
  1941. "build": {
  1942. "webpack": "../../../inspector/webpack.config.js",
  1943. "srcDirectory": "../../inspector/src/",
  1944. "distOutputDirectory": "/inspector/",
  1945. "dtsBundle": {
  1946. "name": "babylonjs-inspector",
  1947. "main": "../../dist/preview release/inspector/build/src/index.d.ts",
  1948. "out": "../babylon.inspector.module.d.ts",
  1949. "baseDir": "../../dist/preview release/inspector/build/",
  1950. "headerText": "BabylonJS Inspector"
  1951. },
  1952. "processDeclaration": {
  1953. "filename": "babylon.inspector.module.d.ts",
  1954. "packageName": "babylonjs-inspector",
  1955. "moduleName": "INSPECTOR",
  1956. "importsToRemove": [],
  1957. "classMap": {
  1958. "babylonjs": "BABYLON",
  1959. "babylonjs-loaders": "BABYLON",
  1960. "babylonjs-serializers": "BABYLON",
  1961. "babylonjs-gui": "BABYLON.GUI"
  1962. }
  1963. }
  1964. }
  1965. },
  1966. "viewer": {
  1967. "libraries": [
  1968. {
  1969. "output": "babylon.viewer.js",
  1970. "moduleDeclaration": {
  1971. "name": "BabylonViewer",
  1972. "module": "babylonjs-viewer"
  1973. },
  1974. "preventLoadLibrary": true
  1975. }
  1976. ],
  1977. "build": {
  1978. "webpack": "../../../Viewer/webpack.gulp.config.js",
  1979. "srcDirectory": "../../Viewer/src/",
  1980. "distOutputDirectory": "/viewer/",
  1981. "dtsBundle": {
  1982. "name": "babylonjs-viewer",
  1983. "main": "../../dist/preview release/viewer/build/src/index.d.ts",
  1984. "out": "../../babylon.viewer.module.d.ts"
  1985. },
  1986. "processDeclaration": {
  1987. "packageName": "babylonjs-viewer",
  1988. "moduleName": "BabylonViewer",
  1989. "doNotAppendNamespace": true,
  1990. "prependText": "/// <reference path=\"./babylon.d.ts\"/>\n/// <reference path=\"./babylon.glTF2Interface.d.ts\"/>\n/// <reference path=\"./babylonjs.loaders.d.ts\"/>\ndeclare module \"babylonjs-loaders\"{ export=BABYLON;}\n",
  1991. "importsToRemove": [
  1992. "pep",
  1993. "babylonjs-loaders"
  1994. ],
  1995. "classMap": {
  1996. "babylonjs": "BABYLON",
  1997. "babylonjs-loaders": "BABYLON"
  1998. }
  1999. },
  2000. "outputs": [
  2001. {
  2002. "destinations": [
  2003. {
  2004. "filename": "viewer.js",
  2005. "outputDirectory": "/../../Viewer/dist/"
  2006. },
  2007. {
  2008. "filename": "babylon.viewer.js",
  2009. "outputDirectory": "/viewer/",
  2010. "addBabylonDeclaration": [
  2011. "babylon.d.ts",
  2012. "loaders/babylonjs.loaders.d.ts",
  2013. "glTF2Interface/babylon.glTF2Interface.d.ts"
  2014. ]
  2015. }
  2016. ],
  2017. "minified": true
  2018. },
  2019. {
  2020. "destinations": [
  2021. {
  2022. "filename": "viewer.max.js",
  2023. "outputDirectory": "/../../Viewer/dist/"
  2024. },
  2025. {
  2026. "filename": "babylon.viewer.max.js",
  2027. "outputDirectory": "/viewer/"
  2028. }
  2029. ]
  2030. }
  2031. ]
  2032. }
  2033. },
  2034. "viewer-assets": {
  2035. "libraries": [
  2036. {
  2037. "output": "babylon.viewer.assets.js",
  2038. "moduleDeclaration": {
  2039. "name": "BabylonViewerAssets",
  2040. "module": "babylonjs-viewer-assets"
  2041. },
  2042. "preventLoadLibrary": true
  2043. }
  2044. ],
  2045. "build": {
  2046. "webpack": "../../../Viewer/webpack.assets.config.js",
  2047. "srcDirectory": "../../Viewer/src/",
  2048. "distOutputDirectory": "/viewer/",
  2049. "dtsBundle": {
  2050. "name": "babylonjs-viewer-assets",
  2051. "main": "../../dist/preview release/viewer/build/src/assets/index.d.ts",
  2052. "out": "../../../../../../Viewer/build/assets/babylon.viewer.assets.module.d.ts"
  2053. },
  2054. "outputs": [
  2055. {
  2056. "destinations": [
  2057. {
  2058. "filename": "babylon.viewer.assets.js",
  2059. "outputDirectory": "/../../Viewer/build/assets/"
  2060. }
  2061. ],
  2062. "minified": true
  2063. }
  2064. ]
  2065. }
  2066. }
  2067. }