config.json 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329
  1. {
  2. "build": {
  3. "filename": "babylon.max.js",
  4. "minFilename": "babylon.js",
  5. "minWorkerFilename": "babylon.worker.js",
  6. "declarationFilename": "babylon.d.ts",
  7. "declarationModuleFilename": "babylon.module.d.ts",
  8. "outputDirectory": "../../dist/preview release",
  9. "srcOutputDirectory": "../../src/",
  10. "currentConfig": "all"
  11. },
  12. "buildConfigurations": {
  13. "all": [
  14. "standardMaterial", "pbrMaterial", "freeCamera", "arcRotateCamera", "hemisphericLight",
  15. "pointLight", "directionalLight", "spotLight", "animations", "actions", "sprites", "picking", "collisions",
  16. "particles", "solidParticles", "additionalMeshes", "meshBuilder", "audio", "additionalTextures", "shadows",
  17. "loader", "userData", "offline", "fresnel", "multiMaterial", "touchCamera", "procedural", "gamepad",
  18. "additionalCameras", "postProcesses", "renderingPipeline", "additionalRenderingPipeline", "depthRenderer", "additionalPostProcesses",
  19. "bones", "hdr", "polygonMesh", "csg", "lensFlares", "physics", "textureFormats", "debug", "morphTargets",
  20. "colorCurves", "octrees", "simd", "vr", "virtualJoystick", "optimizations", "highlights", "assetsManager",
  21. "mapTexture", "dynamicFloatArray", "serialization", "probes", "layer"
  22. ],
  23. "minimal": ["standardMaterial", "freeCamera", "hemisphericLight"],
  24. "minimalWithBuilder": ["meshBuilder", "standardMaterial", "freeCamera", "hemisphericLight"]
  25. },
  26. "workloads" :
  27. {
  28. "core" :
  29. {
  30. "files":[
  31. "../../src/Math/babylon.math.js",
  32. "../../src/babylon.mixins.js",
  33. "../../src/Tools/babylon.decorators.js",
  34. "../../src/Tools/babylon.observable.js",
  35. "../../src/Tools/babylon.smartArray.js",
  36. "../../src/Tools/babylon.tools.js",
  37. "../../src/States/babylon.alphaCullingState.js",
  38. "../../src/States/babylon.depthCullingState.js",
  39. "../../src/States/babylon.stencilState.js",
  40. "../../src/babylon.engine.js",
  41. "../../src/babylon.node.js",
  42. "../../src/Culling/babylon.boundingSphere.js",
  43. "../../src/Culling/babylon.boundingBox.js",
  44. "../../src/Culling/babylon.boundingInfo.js",
  45. "../../src/Mesh/babylon.abstractMesh.js",
  46. "../../src/Lights/babylon.light.js",
  47. "../../src/Cameras/babylon.camera.js",
  48. "../../src/Rendering/babylon.renderingManager.js",
  49. "../../src/Rendering/babylon.renderingGroup.js",
  50. "../../src/babylon.scene.js",
  51. "../../src/Mesh/babylon.buffer.js",
  52. "../../src/Mesh/babylon.vertexBuffer.js",
  53. "../../src/Materials/Textures/babylon.baseTexture.js",
  54. "../../src/Materials/Textures/babylon.texture.js",
  55. "../../src/Mesh/babylon.mesh.js",
  56. "../../src/Mesh/babylon.subMesh.js",
  57. "../../src/Materials/babylon.effect.js",
  58. "../../src/Materials/babylon.materialHelper.js",
  59. "../../src/Materials/babylon.material.js",
  60. "../../src/Materials/babylon.uniformBuffer.js",
  61. "../../src/Materials/babylon.pushMaterial.js",
  62. "../../src/Mesh/babylon.mesh.vertexData.js",
  63. "../../src/Mesh/babylon.geometry.js",
  64. "../../src/PostProcess/babylon.postProcessManager.js"
  65. ]
  66. },
  67. "particles" :
  68. {
  69. "files": [
  70. "../../src/Particles/babylon.particle.js",
  71. "../../src/Particles/babylon.particleSystem.js"
  72. ],
  73. "dependUpon" : [
  74. "core"
  75. ],
  76. "shaders" : [
  77. "particles.vertex",
  78. "particles.fragment"
  79. ]
  80. },
  81. "solidParticles" :
  82. {
  83. "files": [
  84. "../../src/Particles/babylon.solidParticle.js",
  85. "../../src/Particles/babylon.solidParticleSystem.js"
  86. ],
  87. "dependUpon" : [
  88. "core"
  89. ]
  90. },
  91. "collisions" :
  92. {
  93. "files": [
  94. "../../src/Collisions/babylon.collider.js",
  95. "../../src/Collisions/babylon.collisionCoordinator.js"
  96. ],
  97. "dependUpon" : [
  98. "core"
  99. ]
  100. },
  101. "picking" :
  102. {
  103. "files": [
  104. "../../src/Collisions/babylon.pickingInfo.js",
  105. "../../src/Culling/babylon.ray.js"
  106. ],
  107. "dependUpon" : [
  108. "core"
  109. ]
  110. },
  111. "sprites" :
  112. {
  113. "files": [
  114. "../../src/Sprites/babylon.spriteManager.js",
  115. "../../src/Sprites/babylon.sprite.js"
  116. ],
  117. "dependUpon" : [
  118. "core"
  119. ],
  120. "shaders" : [
  121. "sprites.vertex",
  122. "sprites.fragment"
  123. ]
  124. },
  125. "animations" :
  126. {
  127. "files": [
  128. "../../src/Animations/babylon.animation.js",
  129. "../../src/Animations/babylon.animatable.js",
  130. "../../src/Animations/babylon.easing.js"
  131. ],
  132. "dependUpon" : [
  133. "core"
  134. ]
  135. },
  136. "actions" :
  137. {
  138. "files": [
  139. "../../src/Actions/babylon.condition.js",
  140. "../../src/Actions/babylon.action.js",
  141. "../../src/Actions/babylon.actionManager.js",
  142. "../../src/Actions/babylon.interpolateValueAction.js",
  143. "../../src/Actions/babylon.directActions.js"
  144. ],
  145. "dependUpon" : [
  146. "core"
  147. ]
  148. },
  149. "additionalMeshes" :
  150. {
  151. "files": [
  152. "../../src/Mesh/babylon.groundMesh.js",
  153. "../../src/Mesh/babylon.instancedMesh.js",
  154. "../../src/Mesh/babylon.linesMesh.js"
  155. ],
  156. "dependUpon" : [
  157. "core"
  158. ],
  159. "shaders": [
  160. "color.vertex",
  161. "color.fragment"
  162. ]
  163. },
  164. "meshBuilder" :
  165. {
  166. "files": [
  167. "../../src/Mesh/babylon.meshBuilder.js"
  168. ],
  169. "dependUpon" : [
  170. "core",
  171. "shaderMaterial"
  172. ]
  173. },
  174. "shaderMaterial" :
  175. {
  176. "files": [
  177. "../../src/Materials/babylon.shaderMaterial.js"
  178. ],
  179. "dependUpon" : [
  180. "core"
  181. ]
  182. },
  183. "standardMaterial" :
  184. {
  185. "files": [
  186. "../../src/Materials/babylon.standardMaterial.js"
  187. ],
  188. "dependUpon" : [
  189. "core"
  190. ],
  191. "shaders": [
  192. "default.vertex",
  193. "default.fragment"
  194. ],
  195. "shaderIncludes": [
  196. "bonesDeclaration",
  197. "instancesDeclaration",
  198. "pointCloudVertexDeclaration",
  199. "bumpVertexDeclaration",
  200. "clipPlaneVertexDeclaration",
  201. "fogVertexDeclaration",
  202. "shadowsVertexDeclaration",
  203. "morphTargetsVertexGlobalDeclaration",
  204. "morphTargetsVertexDeclaration",
  205. "logDepthDeclaration",
  206. "morphTargetsVertex",
  207. "instancesVertex",
  208. "bonesVertex",
  209. "bumpVertex",
  210. "clipPlaneVertex",
  211. "fogVertex",
  212. "shadowsVertex",
  213. "pointCloudVertex",
  214. "logDepthVertex",
  215. "helperFunctions",
  216. "lightFragmentDeclaration",
  217. "lightsFragmentFunctions",
  218. "lightUboDeclaration",
  219. "defaultVertexDeclaration",
  220. "defaultFragmentDeclaration",
  221. "defaultUboDeclaration",
  222. "shadowsFragmentFunctions",
  223. "fresnelFunction",
  224. "reflectionFunction",
  225. "colorGradingDefinition",
  226. "colorGrading",
  227. "colorCurvesDefinition",
  228. "colorCurves",
  229. "bumpFragmentFunctions",
  230. "clipPlaneFragmentDeclaration",
  231. "logDepthDeclaration",
  232. "fogFragmentDeclaration",
  233. "clipPlaneFragment",
  234. "bumpFragment",
  235. "lightFragment",
  236. "logDepthFragment",
  237. "fogFragment"
  238. ]
  239. },
  240. "pbrMaterial" :
  241. {
  242. "files": [
  243. "../../src/Materials/babylon.pbrMaterial.js"
  244. ],
  245. "dependUpon" : [
  246. "core"
  247. ],
  248. "shaders": [
  249. "pbr.vertex",
  250. "pbr.fragment"
  251. ],
  252. "shaderIncludes": [
  253. "bonesDeclaration",
  254. "instancesDeclaration",
  255. "bumpVertexDeclaration",
  256. "clipPlaneVertexDeclaration",
  257. "fogVertexDeclaration",
  258. "shadowsVertexDeclaration",
  259. "morphTargetsVertexGlobalDeclaration",
  260. "morphTargetsVertexDeclaration",
  261. "logDepthDeclaration",
  262. "morphTargetsVertex",
  263. "instancesVertex",
  264. "bonesVertex",
  265. "bumpVertex",
  266. "clipPlaneVertex",
  267. "fogVertex",
  268. "shadowsVertex",
  269. "logDepthVertex",
  270. "lightFragmentDeclaration",
  271. "lightUboDeclaration",
  272. "pbrVertexDeclaration",
  273. "pbrFragmentDeclaration",
  274. "pbrUboDeclaration",
  275. "fresnelFunction",
  276. "reflectionFunction",
  277. "colorGradingDefinition",
  278. "colorCurvesDefinition",
  279. "shadowsFragmentFunctions",
  280. "pbrFunctions",
  281. "colorGrading",
  282. "colorCurves",
  283. "harmonicsFunctions",
  284. "pbrLightFunctions",
  285. "helperFunctions",
  286. "bumpFragmentFunctions",
  287. "clipPlaneFragmentDeclaration",
  288. "logDepthDeclaration",
  289. "fogFragmentDeclaration",
  290. "clipPlaneFragment",
  291. "bumpFragment",
  292. "pbrLightFunctionsCall",
  293. "logDepthFragment",
  294. "fogFragment"
  295. ]
  296. },
  297. "freeCamera" :
  298. {
  299. "files": [
  300. "../../src/Cameras/babylon.cameraInputsManager.js",
  301. "../../src/Cameras/Inputs/babylon.freeCameraMouseInput.js",
  302. "../../src/Cameras/Inputs/babylon.freeCameraKeyboardMoveInput.js",
  303. "../../src/Cameras/babylon.freeCameraInputsManager.js",
  304. "../../src/Cameras/babylon.targetCamera.js",
  305. "../../src/Cameras/babylon.freeCamera.js"
  306. ],
  307. "dependUpon" : [
  308. "core"
  309. ]
  310. },
  311. "arcRotateCamera" :
  312. {
  313. "files": [
  314. "../../src/Cameras/babylon.cameraInputsManager.js",
  315. "../../src/Cameras/babylon.targetCamera.js",
  316. "../../src/Cameras/Inputs/babylon.arcRotateCameraKeyboardMoveInput.js",
  317. "../../src/Cameras/Inputs/babylon.arcRotateCameraMouseWheelInput.js",
  318. "../../src/Cameras/Inputs/babylon.arcRotateCameraPointersInput.js",
  319. "../../src/Cameras/babylon.arcRotateCamera.js",
  320. "../../src/Cameras/babylon.arcRotateCameraInputsManager.js"
  321. ],
  322. "dependUpon" : [
  323. "core"
  324. ]
  325. },
  326. "hemisphericLight" :
  327. {
  328. "files": [
  329. "../../src/Lights/babylon.hemisphericLight.js"
  330. ],
  331. "dependUpon" : [
  332. "core"
  333. ]
  334. },
  335. "pointLight" :
  336. {
  337. "files": [
  338. "../../src/Lights/babylon.pointLight.js"
  339. ],
  340. "dependUpon" : [
  341. "core"
  342. ]
  343. },
  344. "directionalLight" :
  345. {
  346. "files": [
  347. "../../src/Lights/babylon.directionalLight.js"
  348. ],
  349. "dependUpon" : [
  350. "core"
  351. ]
  352. },
  353. "spotLight" :
  354. {
  355. "files": [
  356. "../../src/Lights/babylon.spotLight.js"
  357. ],
  358. "dependUpon" : [
  359. "core"
  360. ]
  361. },
  362. "audio" :
  363. {
  364. "files": [
  365. "../../src/Audio/babylon.audioEngine.js",
  366. "../../src/Audio/babylon.sound.js",
  367. "../../src/Audio/babylon.soundtrack.js",
  368. "../../src/Audio/babylon.analyser.js"
  369. ],
  370. "dependUpon" : [
  371. "core"
  372. ]
  373. },
  374. "additionalTextures" :
  375. {
  376. "files": [
  377. "../../src/Materials/Textures/babylon.cubeTexture.js",
  378. "../../src/Materials/Textures/babylon.renderTargetTexture.js",
  379. "../../src/Materials/Textures/babylon.mirrorTexture.js",
  380. "../../src/Materials/Textures/babylon.refractionTexture.js",
  381. "../../src/Materials/Textures/babylon.dynamicTexture.js",
  382. "../../src/Materials/Textures/babylon.videoTexture.js",
  383. "../../src/Materials/Textures/babylon.rawTexture.js"
  384. ],
  385. "dependUpon" : [
  386. "core"
  387. ]
  388. },
  389. "shadows" :
  390. {
  391. "files": [
  392. "../../src/Lights/Shadows/babylon.shadowGenerator.js"
  393. ],
  394. "dependUpon" : [
  395. "postProcesses"
  396. ],
  397. "shaders" : [
  398. "shadowMap.vertex",
  399. "shadowMap.fragment",
  400. "depthBoxBlur.fragment"
  401. ]
  402. },
  403. "loader" :
  404. {
  405. "files": [
  406. "../../src/Tools/babylon.loadingScreen.js",
  407. "../../src/Loading/babylon.sceneLoader.js",
  408. "../../src/Loading/Plugins/babylon.babylonFileLoader.js",
  409. "../../src/Tools/babylon.filesInput.js"
  410. ],
  411. "dependUpon" : [
  412. "core"
  413. ]
  414. },
  415. "userData" :
  416. {
  417. "files": [
  418. "../../src/Tools/babylon.stringDictionary.js",
  419. "../../src/Tools/babylon.tags.js",
  420. "../../src/Tools/babylon.andOrNotEvaluator.js"
  421. ],
  422. "dependUpon" : [
  423. "core"
  424. ]
  425. },
  426. "offline" :
  427. {
  428. "files": [
  429. "../../src/Tools/babylon.database.js"
  430. ],
  431. "dependUpon" : [
  432. "core"
  433. ]
  434. },
  435. "fresnel" :
  436. {
  437. "files": [
  438. "../../src/Materials/babylon.fresnelParameters.js"
  439. ],
  440. "dependUpon" : [
  441. "core"
  442. ]
  443. },
  444. "multiMaterial" :
  445. {
  446. "files": [
  447. "../../src/Materials/babylon.multiMaterial.js"
  448. ],
  449. "dependUpon" : [
  450. "core"
  451. ]
  452. },
  453. "touchCamera" :
  454. {
  455. "files": [
  456. "../../src/Cameras/Inputs/babylon.freeCameraTouchInput.js",
  457. "../../src/Cameras/babylon.touchCamera.js"
  458. ],
  459. "dependUpon" : [
  460. "core"
  461. ]
  462. },
  463. "procedural" :
  464. {
  465. "files": [
  466. "../../src/Materials/Textures/Procedurals/babylon.proceduralTexture.js",
  467. "../../src/Materials/Textures/Procedurals/babylon.customProceduralTexture.js"
  468. ],
  469. "dependUpon" : [
  470. "core"
  471. ],
  472. "shaders": [
  473. "procedural.vertex"
  474. ]
  475. },
  476. "gamepad" :
  477. {
  478. "files": [
  479. "../../src/Cameras/Inputs/babylon.freeCameraGamepadInput.js",
  480. "../../src/Cameras/Inputs/babylon.arcRotateCameraGamepadInput.js",
  481. "../../src/Tools/babylon.gamepads.js",
  482. "../../src/Tools/babylon.extendedGamepad.js"
  483. ],
  484. "dependUpon" : [
  485. "core"
  486. ]
  487. },
  488. "additionalCameras" :
  489. {
  490. "files": [
  491. "../../src/Cameras/babylon.followCamera.js",
  492. "../../src/Cameras/babylon.universalCamera.js",
  493. "../../src/Cameras/babylon.gamepadCamera.js"
  494. ],
  495. "dependUpon" : [
  496. "gamepad"
  497. ]
  498. },
  499. "depthRenderer" :
  500. {
  501. "files": [
  502. "../../src/Rendering/babylon.depthRenderer.js"
  503. ],
  504. "dependUpon" : [
  505. "core"
  506. ],
  507. "shaders" : [
  508. "depth.vertex",
  509. "depth.fragment"
  510. ],
  511. "shaderIncludes": [
  512. "bonesDeclaration",
  513. "instancesDeclaration",
  514. "instancesVertex",
  515. "bonesVertex"
  516. ]
  517. },
  518. "postProcesses" :
  519. {
  520. "files": [
  521. "../../src/PostProcess/babylon.postProcess.js",
  522. "../../src/PostProcess/babylon.passPostProcess.js"
  523. ],
  524. "dependUpon" : [
  525. "core"
  526. ],
  527. "shaders" : [
  528. "postprocess.vertex",
  529. "pass.fragment"
  530. ]
  531. },
  532. "additionalPostProcesses" :
  533. {
  534. "files": [
  535. "../../src/PostProcess/babylon.blurPostProcess.js",
  536. "../../src/PostProcess/babylon.refractionPostProcess.js",
  537. "../../src/PostProcess/babylon.blackAndWhitePostProcess.js",
  538. "../../src/PostProcess/babylon.convolutionPostProcess.js",
  539. "../../src/PostProcess/babylon.filterPostProcess.js",
  540. "../../src/PostProcess/babylon.fxaaPostProcess.js",
  541. "../../src/PostProcess/babylon.volumetricLightScatteringPostProcess.js",
  542. "../../src/PostProcess/babylon.colorCorrectionPostProcess.js",
  543. "../../src/PostProcess/babylon.tonemapPostProcess.js",
  544. "../../src/PostProcess/babylon.displayPassPostProcess.js"
  545. ],
  546. "dependUpon" : [
  547. "postProcesses"
  548. ],
  549. "shaders" : [
  550. "blur.fragment",
  551. "refraction.fragment",
  552. "blackAndWhite.fragment",
  553. "convolution.fragment",
  554. "filter.fragment",
  555. "fxaa.fragment",
  556. "volumetricLightScattering.fragment",
  557. "volumetricLightScatteringPass.fragment",
  558. "colorCorrection.fragment",
  559. "tonemap.fragment",
  560. "displayPass.fragment"
  561. ]
  562. },
  563. "renderingPipeline" :
  564. {
  565. "files": [
  566. "../../src/PostProcess/RenderPipeline/babylon.postProcessRenderPipelineManager.js",
  567. "../../src/PostProcess/RenderPipeline/babylon.postProcessRenderPass.js",
  568. "../../src/PostProcess/RenderPipeline/babylon.postProcessRenderEffect.js",
  569. "../../src/PostProcess/RenderPipeline/babylon.postProcessRenderPipeline.js"
  570. ],
  571. "dependUpon" : [
  572. "postProcesses"
  573. ]
  574. },
  575. "additionalRenderingPipeline" :
  576. {
  577. "files": [
  578. "../../src/PostProcess/babylon.ssaoRenderingPipeline.js",
  579. "../../src/PostProcess/babylon.lensRenderingPipeline.js",
  580. "../../src/PostProcess/babylon.hdrRenderingPipeline.js",
  581. "../../src/PostProcess/babylon.standardRenderingPipeline.js"
  582. ],
  583. "dependUpon" : [
  584. "renderingPipeline",
  585. "depthRenderer"
  586. ],
  587. "shaders" : [
  588. "ssao.fragment",
  589. "ssaoCombine.fragment",
  590. "chromaticAberration.fragment",
  591. "lensHighlights.fragment",
  592. "depthOfField.fragment",
  593. "standard.fragment",
  594. "hdr.fragment"
  595. ]
  596. },
  597. "bones" :
  598. {
  599. "files": [
  600. "../../src/Bones/babylon.bone.js",
  601. "../../src/Bones/babylon.boneIKController.js",
  602. "../../src/Bones/babylon.boneLookController.js",
  603. "../../src/Bones/babylon.skeleton.js"
  604. ],
  605. "dependUpon" : [
  606. "core"
  607. ]
  608. },
  609. "hdr" :
  610. {
  611. "files": [
  612. "../../src/Tools/HDR/babylon.cubemapToSphericalPolynomial.js",
  613. "../../src/Tools/HDR/babylon.panoramaToCubemap.js",
  614. "../../src/Tools/HDR/babylon.hdr.js",
  615. "../../src/Tools/HDR/babylon.pmremgenerator.js",
  616. "../../src/Materials/Textures/babylon.hdrCubeTexture.js"
  617. ],
  618. "dependUpon" : [
  619. "core"
  620. ]
  621. },
  622. "csg" :
  623. {
  624. "files": [
  625. "../../src/Mesh/babylon.csg.js"
  626. ],
  627. "dependUpon" : [
  628. "core"
  629. ]
  630. },
  631. "polygonMesh" :
  632. {
  633. "files": [
  634. "../../src/Tools/babylon.earcut.js",
  635. "../../src/Mesh/babylon.polygonMesh.js"
  636. ],
  637. "dependUpon" : [
  638. "core"
  639. ]
  640. },
  641. "lensFlares" :
  642. {
  643. "files": [
  644. "../../src/LensFlare/babylon.lensFlare.js",
  645. "../../src/LensFlare/babylon.lensFlareSystem.js"
  646. ],
  647. "dependUpon" : [
  648. "core"
  649. ],
  650. "shaders" : [
  651. "lensFlare.vertex",
  652. "lensFlare.fragment"
  653. ]
  654. },
  655. "physics" :
  656. {
  657. "files": [
  658. "../../src/Physics/babylon.physicsJoint.js",
  659. "../../src/Physics/babylon.physicsImpostor.js",
  660. "../../src/Physics/babylon.physicsEngine.js",
  661. "../../src/Physics/Plugins/babylon.cannonJSPlugin.js",
  662. "../../src/Physics/Plugins/babylon.oimoJSPlugin.js"
  663. ],
  664. "dependUpon" : [
  665. "core"
  666. ]
  667. },
  668. "textureFormats" :
  669. {
  670. "files": [
  671. "../../src/Tools/babylon.tga.js",
  672. "../../src/Tools/babylon.dds.js",
  673. "../../src/Tools/babylon.khronosTextureContainer.js"
  674. ],
  675. "dependUpon" : [
  676. "core"
  677. ]
  678. },
  679. "debug" :
  680. {
  681. "files": [
  682. "../../src/Debug/babylon.skeletonViewer.js",
  683. "../../src/Debug/babylon.axesViewer.js",
  684. "../../src/Debug/babylon.boneAxesViewer.js",
  685. "../../src/Debug/babylon.rayHelper.js",
  686. "../../src/Debug/babylon.debugLayer.js",
  687. "../../src/Rendering/babylon.boundingBoxRenderer.js"
  688. ],
  689. "dependUpon" : [
  690. "shaderMaterial",
  691. "additionalMeshes"
  692. ],
  693. "shaders" : [
  694. "color.vertex",
  695. "color.fragment"
  696. ]
  697. },
  698. "morphTargets" :
  699. {
  700. "files": [
  701. "../../src/Morph/babylon.morphTarget.js",
  702. "../../src/Morph/babylon.morphTargetManager.js"
  703. ],
  704. "dependUpon" : [
  705. "core"
  706. ]
  707. },
  708. "colorCurves" :
  709. {
  710. "files": [
  711. "../../src/Materials/Textures/babylon.colorGradingTexture.js",
  712. "../../src/Materials/babylon.colorCurves.js"
  713. ],
  714. "dependUpon" : [
  715. "core"
  716. ]
  717. },
  718. "octrees" :
  719. {
  720. "files": [
  721. "../../src/Culling/Octrees/babylon.octree.js",
  722. "../../src/Culling/Octrees/babylon.octreeBlock.js"
  723. ],
  724. "dependUpon" : [
  725. "core"
  726. ]
  727. },
  728. "simd" :
  729. {
  730. "files": [
  731. "../../src/Math/babylon.math.SIMD.js"
  732. ],
  733. "dependUpon" : [
  734. "core"
  735. ]
  736. },
  737. "vr" :
  738. {
  739. "files": [
  740. "../../src/PostProcess/babylon.vrDistortionCorrectionPostProcess.js",
  741. "../../src/PostProcess/babylon.anaglyphPostProcess.js",
  742. "../../src/PostProcess/babylon.stereoscopicInterlacePostProcess.js",
  743. "../../src/Cameras/Inputs/babylon.freeCameraDeviceOrientationInput.js",
  744. "../../src/Cameras/Inputs/babylon.arcRotateCameraVRDeviceOrientationInput.js",
  745. "../../src/Cameras/VR/babylon.vrCameraMetrics.js",
  746. "../../src/Cameras/VR/babylon.webVRCamera.js",
  747. "../../src/Cameras/babylon.deviceOrientationCamera.js",
  748. "../../src/Cameras/VR/babylon.vrDeviceOrientationCamera.js",
  749. "../../src/Cameras/babylon.stereoscopicCameras.js"
  750. ],
  751. "dependUpon" : [
  752. "core"
  753. ],
  754. "shaders" :[
  755. "anaglyph.fragment",
  756. "stereoscopicInterlace.fragment",
  757. "vrDistortionCorrection.fragment"
  758. ]
  759. },
  760. "virtualJoystick" :
  761. {
  762. "files": [
  763. "../../src/Tools/babylon.virtualJoystick.js",
  764. "../../src/Cameras/babylon.virtualJoysticksCamera.js",
  765. "../../src/Cameras/Inputs/babylon.freeCameraVirtualJoystickInput.js"
  766. ],
  767. "dependUpon" : [
  768. "core"
  769. ]
  770. },
  771. "optimizations" :
  772. {
  773. "files": [
  774. "../../src/Mesh/babylon.meshSimplification.js",
  775. "../../src/Mesh/babylon.meshLODLevel.js",
  776. "../../src/Tools/babylon.sceneOptimizer.js"
  777. ],
  778. "dependUpon" : [
  779. "core"
  780. ]
  781. },
  782. "highlights" :
  783. {
  784. "files": [
  785. "../../src/Rendering/babylon.outlineRenderer.js",
  786. "../../src/Rendering/babylon.edgesRenderer.js",
  787. "../../src/Layer/babylon.highlightlayer.js"
  788. ],
  789. "dependUpon" : [
  790. "shaderMaterial"
  791. ],
  792. "shaders" : [
  793. "glowBlurPostProcess.fragment",
  794. "glowMapGeneration.fragment",
  795. "glowMapGeneration.vertex",
  796. "glowMapMerge.fragment",
  797. "glowMapMerge.vertex",
  798. "line.vertex",
  799. "line.fragment",
  800. "outline.vertex",
  801. "outline.fragment"
  802. ]
  803. },
  804. "assetsManager" :
  805. {
  806. "files": [
  807. "../../src/Tools/babylon.assetsManager.js"
  808. ],
  809. "dependUpon" : [
  810. "core"
  811. ]
  812. },
  813. "mapTexture" :
  814. {
  815. "files": [
  816. "../../src/Materials/Textures/babylon.mapTexture.js",
  817. "../../src/Tools/babylon.rectPackingMap.js"
  818. ],
  819. "dependUpon" : [
  820. "core"
  821. ]
  822. },
  823. "dynamicFloatArray" :
  824. {
  825. "files": [
  826. "../../src/Tools/babylon.dynamicFloatArray.js"
  827. ],
  828. "dependUpon" : [
  829. "core"
  830. ]
  831. },
  832. "serialization" :
  833. {
  834. "files": [
  835. "../../src/Tools/babylon.sceneSerializer.js"
  836. ],
  837. "dependUpon" : [
  838. "core"
  839. ]
  840. },
  841. "probes" :
  842. {
  843. "files": [
  844. "../../src/Probes/babylon.reflectionProbe.js"
  845. ],
  846. "dependUpon" : [
  847. "core"
  848. ]
  849. },
  850. "layer" :
  851. {
  852. "files": [
  853. "../../src/Layer/babylon.layer.js"
  854. ],
  855. "dependUpon" : [
  856. "core"
  857. ]
  858. }
  859. },
  860. "typescript": [
  861. "../../src/**/*.ts",
  862. "!../../src/**/*.d.ts"
  863. ],
  864. "workers": [
  865. {
  866. "variable": "BABYLON.CollisionWorker",
  867. "files": [
  868. "../../src/Collisions/babylon.collider.js",
  869. "../../src/Collisions/babylon.collisionWorker.js",
  870. "../../src/Collisions/babylon.collisionCoordinator.js",
  871. "../../src/Math/babylon.math.js"
  872. ]
  873. }
  874. ],
  875. "modules": [
  876. "canvas2D",
  877. "materialsLibrary",
  878. "postProcessesLibrary",
  879. "proceduralTexturesLibrary",
  880. "loaders",
  881. "serializers",
  882. "inspector"
  883. ],
  884. "materialsLibrary": {
  885. "libraries": [
  886. {
  887. "files": [
  888. "../../materialsLibrary/src/shadowOnly/babylon.shadowOnlyMaterial.ts"
  889. ],
  890. "shaderFiles": [
  891. "../../materialsLibrary/src/shadowOnly/shadowOnly.vertex.fx",
  892. "../../materialsLibrary/src/shadowOnly/shadowOnly.fragment.fx"
  893. ],
  894. "output": "babylon.shadowOnlyMaterial.js"
  895. },
  896. {
  897. "files": [
  898. "../../materialsLibrary/src/gradient/babylon.gradientMaterial.ts"
  899. ],
  900. "shaderFiles": [
  901. "../../materialsLibrary/src/gradient/gradient.vertex.fx",
  902. "../../materialsLibrary/src/gradient/gradient.fragment.fx"
  903. ],
  904. "output": "babylon.gradientMaterial.js"
  905. },
  906. {
  907. "files": [
  908. "../../materialsLibrary/src/normal/babylon.normalMaterial.ts"
  909. ],
  910. "shaderFiles": [
  911. "../../materialsLibrary/src/normal/normal.vertex.fx",
  912. "../../materialsLibrary/src/normal/normal.fragment.fx"
  913. ],
  914. "output": "babylon.normalMaterial.js"
  915. },
  916. {
  917. "files": [
  918. "../../materialsLibrary/src/lava/babylon.lavaMaterial.ts"
  919. ],
  920. "shaderFiles": [
  921. "../../materialsLibrary/src/lava/lava.vertex.fx",
  922. "../../materialsLibrary/src/lava/lava.fragment.fx"
  923. ],
  924. "output": "babylon.lavaMaterial.js"
  925. },
  926. {
  927. "files": [
  928. "../../materialsLibrary/src/simple/babylon.simpleMaterial.ts"
  929. ],
  930. "shaderFiles": [
  931. "../../materialsLibrary/src/simple/simple.vertex.fx",
  932. "../../materialsLibrary/src/simple/simple.fragment.fx"
  933. ],
  934. "output": "babylon.simpleMaterial.js"
  935. },
  936. {
  937. "files": [
  938. "../../materialsLibrary/src/water/babylon.waterMaterial.ts"
  939. ],
  940. "shaderFiles": [
  941. "../../materialsLibrary/src/water/water.vertex.fx",
  942. "../../materialsLibrary/src/water/water.fragment.fx"
  943. ],
  944. "output": "babylon.waterMaterial.js"
  945. },
  946. {
  947. "files": [
  948. "../../materialsLibrary/src/fire/babylon.fireMaterial.ts"
  949. ],
  950. "shaderFiles": [
  951. "../../materialsLibrary/src/fire/fire.vertex.fx",
  952. "../../materialsLibrary/src/fire/fire.fragment.fx"
  953. ],
  954. "output": "babylon.fireMaterial.js"
  955. },
  956. {
  957. "files": [
  958. "../../materialsLibrary/src/fur/babylon.furMaterial.ts"
  959. ],
  960. "shaderFiles": [
  961. "../../materialsLibrary/src/fur/fur.vertex.fx",
  962. "../../materialsLibrary/src/fur/fur.fragment.fx"
  963. ],
  964. "output": "babylon.furMaterial.js"
  965. },
  966. {
  967. "files": [
  968. "../../materialsLibrary/src/terrain/babylon.terrainMaterial.ts"
  969. ],
  970. "shaderFiles": [
  971. "../../materialsLibrary/src/terrain/terrain.vertex.fx",
  972. "../../materialsLibrary/src/terrain/terrain.fragment.fx"
  973. ],
  974. "output": "babylon.terrainMaterial.js"
  975. },
  976. {
  977. "files": [
  978. "../../materialsLibrary/src/triPlanar/babylon.triPlanarMaterial.ts"
  979. ],
  980. "shaderFiles": [
  981. "../../materialsLibrary/src/triPlanar/triplanar.vertex.fx",
  982. "../../materialsLibrary/src/triPlanar/triplanar.fragment.fx"
  983. ],
  984. "output": "babylon.triPlanarMaterial.js"
  985. },
  986. {
  987. "files": [
  988. "../../materialsLibrary/src/sky/babylon.skyMaterial.ts"
  989. ],
  990. "shaderFiles": [
  991. "../../materialsLibrary/src/sky/sky.vertex.fx",
  992. "../../materialsLibrary/src/sky/sky.fragment.fx"
  993. ],
  994. "output": "babylon.skyMaterial.js"
  995. },
  996. {
  997. "files": [
  998. "../../materialsLibrary/src/grid/babylon.gridmaterial.ts"
  999. ],
  1000. "shaderFiles": [
  1001. "../../materialsLibrary/src/grid/grid.vertex.fx",
  1002. "../../materialsLibrary/src/grid/grid.fragment.fx",
  1003. "../../materialsLibrary/src/grid/legacygrid.vertex.fx",
  1004. "../../materialsLibrary/src/grid/legacygrid.fragment.fx"
  1005. ],
  1006. "output": "babylon.gridMaterial.js"
  1007. },
  1008. {
  1009. "files": [
  1010. "../../materialsLibrary/src/custom/babylon.customMaterial.ts"
  1011. ],
  1012. "output": "babylon.customMaterial.js"
  1013. }
  1014. ],
  1015. "build": {
  1016. "srcOutputDirectory": "../../materialsLibrary/",
  1017. "distOutputDirectory": "/materialsLibrary/"
  1018. }
  1019. },
  1020. "postProcessesLibrary": {
  1021. "libraries": [
  1022. {
  1023. "files": [
  1024. "../../postProcessLibrary/src/asciiArt/babylon.asciiArtPostProcess.ts"
  1025. ],
  1026. "shaderFiles": [
  1027. "../../postProcessLibrary/src/asciiArt/asciiart.fragment.fx"
  1028. ],
  1029. "output": "babylon.asciiArtPostProcess.js"
  1030. },
  1031. {
  1032. "files": [
  1033. "../../postProcessLibrary/src/digitalRain/babylon.digitalRainPostProcess.ts"
  1034. ],
  1035. "shaderFiles": [
  1036. "../../postProcessLibrary/src/digitalRain/digitalrain.fragment.fx"
  1037. ],
  1038. "output": "babylon.digitalRainPostProcess.js"
  1039. }
  1040. ],
  1041. "build": {
  1042. "srcOutputDirectory": "../../postProcessLibrary/",
  1043. "distOutputDirectory": "/postProcessesLibrary/"
  1044. }
  1045. },
  1046. "proceduralTexturesLibrary": {
  1047. "libraries": [
  1048. {
  1049. "files": [
  1050. "../../proceduralTexturesLibrary/src/wood/babylon.woodProceduralTexture.ts"
  1051. ],
  1052. "shaderFiles": [
  1053. "../../proceduralTexturesLibrary/src/wood/woodProceduralTexture.fragment.fx"
  1054. ],
  1055. "output": "babylon.woodProceduralTexture.js"
  1056. },
  1057. {
  1058. "files": [
  1059. "../../proceduralTexturesLibrary/src/fire/babylon.fireProceduralTexture.ts"
  1060. ],
  1061. "shaderFiles": [
  1062. "../../proceduralTexturesLibrary/src/fire/fireProceduralTexture.fragment.fx"
  1063. ],
  1064. "output": "babylon.fireProceduralTexture.js"
  1065. },
  1066. {
  1067. "files": [
  1068. "../../proceduralTexturesLibrary/src/cloud/babylon.cloudProceduralTexture.ts"
  1069. ],
  1070. "shaderFiles": [
  1071. "../../proceduralTexturesLibrary/src/cloud/cloudProceduralTexture.fragment.fx"
  1072. ],
  1073. "output": "babylon.cloudProceduralTexture.js"
  1074. },
  1075. {
  1076. "files": [
  1077. "../../proceduralTexturesLibrary/src/grass/babylon.grassProceduralTexture.ts"
  1078. ],
  1079. "shaderFiles": [
  1080. "../../proceduralTexturesLibrary/src/grass/grassProceduralTexture.fragment.fx"
  1081. ],
  1082. "output": "babylon.grassProceduralTexture.js"
  1083. },
  1084. {
  1085. "files": [
  1086. "../../proceduralTexturesLibrary/src/road/babylon.roadProceduralTexture.ts"
  1087. ],
  1088. "shaderFiles": [
  1089. "../../proceduralTexturesLibrary/src/road/roadProceduralTexture.fragment.fx"
  1090. ],
  1091. "output": "babylon.roadProceduralTexture.js"
  1092. },
  1093. {
  1094. "files": [
  1095. "../../proceduralTexturesLibrary/src/brick/babylon.brickProceduralTexture.ts"
  1096. ],
  1097. "shaderFiles": [
  1098. "../../proceduralTexturesLibrary/src/brick/brickProceduralTexture.fragment.fx"
  1099. ],
  1100. "output": "babylon.brickProceduralTexture.js"
  1101. },
  1102. {
  1103. "files": [
  1104. "../../proceduralTexturesLibrary/src/marble/babylon.marbleProceduralTexture.ts"
  1105. ],
  1106. "shaderFiles": [
  1107. "../../proceduralTexturesLibrary/src/marble/marbleProceduralTexture.fragment.fx"
  1108. ],
  1109. "output": "babylon.marbleProceduralTexture.js"
  1110. },
  1111. {
  1112. "files": [
  1113. "../../proceduralTexturesLibrary/src/starfield/babylon.starfieldProceduralTexture.ts"
  1114. ],
  1115. "shaderFiles": [
  1116. "../../proceduralTexturesLibrary/src/starfield/starfieldProceduralTexture.fragment.fx"
  1117. ],
  1118. "output": "babylon.starfieldProceduralTexture.js"
  1119. },
  1120. {
  1121. "files": [
  1122. "../../proceduralTexturesLibrary/src/normalMap/babylon.normalMapProceduralTexture.ts"
  1123. ],
  1124. "shaderFiles": [
  1125. "../../proceduralTexturesLibrary/src/normalMap/normalMapProceduralTexture.fragment.fx"
  1126. ],
  1127. "output": "babylon.normalMapProceduralTexture.js"
  1128. }
  1129. ],
  1130. "build": {
  1131. "srcOutputDirectory": "../../proceduralTexturesLibrary/",
  1132. "distOutputDirectory": "/proceduralTexturesLibrary/"
  1133. }
  1134. },
  1135. "loaders": {
  1136. "libraries": [
  1137. {
  1138. "files": [
  1139. "../../loaders/src/STL/babylon.stlFileLoader.ts"
  1140. ],
  1141. "output": "babylon.stlFileLoader.js"
  1142. },
  1143. {
  1144. "files": [
  1145. "../../loaders/src/OBJ/babylon.objFileLoader.ts"
  1146. ],
  1147. "output": "babylon.objFileLoader.js"
  1148. },
  1149. {
  1150. "files": [
  1151. "../../loaders/src/glTF/babylon.glTFFileLoader.ts",
  1152. "../../loaders/src/glTF/1.0/babylon.glTFLoaderInterfaces.ts",
  1153. "../../loaders/src/glTF/1.0/babylon.glTFLoader.ts",
  1154. "../../loaders/src/glTF/1.0/babylon.glTFLoaderUtils.ts",
  1155. "../../loaders/src/glTF/1.0/babylon.glTFLoaderExtension.ts",
  1156. "../../loaders/src/glTF/1.0/babylon.glTFBinaryExtension.ts",
  1157. "../../loaders/src/glTF/1.0/babylon.glTFMaterialsCommonExtension.ts"
  1158. ],
  1159. "output": "babylon.glTF1FileLoader.js"
  1160. },
  1161. {
  1162. "files": [
  1163. "../../loaders/src/glTF/babylon.glTFFileLoader.ts",
  1164. "../../loaders/src/glTF/2.0/babylon.glTFLoaderInterfaces.ts",
  1165. "../../loaders/src/glTF/2.0/babylon.glTFLoader.ts",
  1166. "../../loaders/src/glTF/2.0/babylon.glTFLoaderUtils.ts",
  1167. "../../loaders/src/glTF/2.0/babylon.glTFLoaderExtension.ts",
  1168. "../../loaders/src/glTF/2.0/babylon.glTFMaterialsPbrSpecularGlossinessExtension.ts"
  1169. ],
  1170. "output": "babylon.glTF2FileLoader.js"
  1171. },
  1172. {
  1173. "files": [
  1174. "../../loaders/src/glTF/babylon.glTFFileLoader.ts",
  1175. "../../loaders/src/glTF/1.0/babylon.glTFLoaderInterfaces.ts",
  1176. "../../loaders/src/glTF/1.0/babylon.glTFLoader.ts",
  1177. "../../loaders/src/glTF/1.0/babylon.glTFLoaderUtils.ts",
  1178. "../../loaders/src/glTF/1.0/babylon.glTFLoaderExtension.ts",
  1179. "../../loaders/src/glTF/1.0/babylon.glTFBinaryExtension.ts",
  1180. "../../loaders/src/glTF/1.0/babylon.glTFMaterialsCommonExtension.ts",
  1181. "../../loaders/src/glTF/2.0/babylon.glTFLoaderInterfaces.ts",
  1182. "../../loaders/src/glTF/2.0/babylon.glTFLoader.ts",
  1183. "../../loaders/src/glTF/2.0/babylon.glTFLoaderUtils.ts",
  1184. "../../loaders/src/glTF/2.0/babylon.glTFLoaderExtension.ts",
  1185. "../../loaders/src/glTF/2.0/babylon.glTFMaterialsPbrSpecularGlossinessExtension.ts"
  1186. ],
  1187. "output": "babylon.glTFFileLoader.js"
  1188. }
  1189. ],
  1190. "build": {
  1191. "srcOutputDirectory": "../../loaders/",
  1192. "distOutputDirectory": "/loaders/"
  1193. }
  1194. },
  1195. "serializers": {
  1196. "libraries": [
  1197. {
  1198. "files": [
  1199. "../../serializers/src/OBJ/babylon.objSerializer.ts"
  1200. ],
  1201. "output": "babylon.objSerializer.js"
  1202. }
  1203. ],
  1204. "build": {
  1205. "srcOutputDirectory": "../../serializers/",
  1206. "distOutputDirectory": "/serializers/"
  1207. }
  1208. },
  1209. "canvas2D": {
  1210. "libraries": [
  1211. {
  1212. "files": [
  1213. "../../canvas2D/src/Tools/babylon.math2D.ts",
  1214. "../../canvas2D/src/Tools/babylon.iPropertyChanged.ts",
  1215. "../../canvas2D/src/Tools/babylon.c2dlogging.ts",
  1216. "../../canvas2D/src/Tools/babylon.observableArray.ts",
  1217. "../../canvas2D/src/Tools/babylon.observableStringDictionary.ts",
  1218. "../../canvas2D/src/Engine/babylon.fontTexture.ts",
  1219. "../../canvas2D/src/Engine/babylon.bounding2d.ts",
  1220. "../../canvas2D/src/Engine/babylon.primitiveCollisionManager.ts",
  1221. "../../canvas2D/src/Engine/babylon.canvas2dLayoutEngine.ts",
  1222. "../../canvas2D/src/Engine/babylon.brushes2d.ts",
  1223. "../../canvas2D/src/Engine/babylon.smartPropertyPrim.ts",
  1224. "../../canvas2D/src/Engine/babylon.prim2dBase.ts",
  1225. "../../canvas2D/src/Engine/babylon.modelRenderCache.ts",
  1226. "../../canvas2D/src/Engine/babylon.renderablePrim2d.ts",
  1227. "../../canvas2D/src/Engine/babylon.shape2d.ts",
  1228. "../../canvas2D/src/Engine/babylon.group2d.ts",
  1229. "../../canvas2D/src/Engine/babylon.wireFrame2d.ts",
  1230. "../../canvas2D/src/Engine/babylon.rectangle2d.ts",
  1231. "../../canvas2D/src/Engine/babylon.ellipse2d.ts",
  1232. "../../canvas2D/src/Engine/babylon.sprite2d.ts",
  1233. "../../canvas2D/src/Engine/babylon.atlasPicture.ts",
  1234. "../../canvas2D/src/Engine/babylon.text2d.ts",
  1235. "../../canvas2D/src/Engine/babylon.lines2d.ts",
  1236. "../../canvas2D/src/Engine/babylon.canvas2d.ts",
  1237. "../../canvas2D/src/Engine/babylon.worldSpaceCanvas2dNode.ts",
  1238. "../../canvas2D/src/GUI/babylon.gui.UIElement.ts",
  1239. "../../canvas2D/src/GUI/Layouts/babylon.gui.stackPanel.ts",
  1240. "../../canvas2D/src/GUI/babylon.gui.control.ts",
  1241. "../../canvas2D/src/GUI/babylon.gui.contentControl.ts",
  1242. "../../canvas2D/src/GUI/babylon.gui.window.ts",
  1243. "../../canvas2D/src/GUI/babylon.gui.label.ts",
  1244. "../../canvas2D/src/GUI/babylon.gui.button.ts",
  1245. "../../canvas2D/src/lib.d.ts"
  1246. ],
  1247. "shaderFiles": [
  1248. "../../canvas2D/src/shaders/**.fx",
  1249. "!../../canvas2D/src/shaders/**.js.fx"
  1250. ],
  1251. "output": "babylon.canvas2d.js"
  1252. }
  1253. ],
  1254. "build": {
  1255. "srcOutputDirectory": "../../canvas2D/",
  1256. "distOutputDirectory": "/canvas2D/"
  1257. }
  1258. },
  1259. "inspector": {
  1260. "libraries": [
  1261. {
  1262. "files": [
  1263. "../../inspector/src/Inspector.ts",
  1264. "../../inspector/src/properties.ts",
  1265. "../../inspector/src/gui/BasicElement.ts",
  1266. "../../inspector/src/adapters/Adapter.ts",
  1267. "../../inspector/src/adapters/CameraAdapter.ts",
  1268. "../../inspector/src/adapters/SoundAdapter.ts",
  1269. "../../inspector/src/adapters/TextureAdapter.ts",
  1270. "../../inspector/src/adapters/Canvas2DAdapter.ts",
  1271. "../../inspector/src/adapters/LightAdapter.ts",
  1272. "../../inspector/src/adapters/MaterialAdapter.ts",
  1273. "../../inspector/src/adapters/MeshAdapter.ts",
  1274. "../../inspector/src/details/DetailPanel.ts",
  1275. "../../inspector/src/details/Property.ts",
  1276. "../../inspector/src/details/PropertyLine.ts",
  1277. "../../inspector/src/gui/ColorElement.ts",
  1278. "../../inspector/src/gui/CubeTextureElement.ts",
  1279. "../../inspector/src/gui/HDRCubeTextureElement.ts",
  1280. "../../inspector/src/gui/SearchBar.ts",
  1281. "../../inspector/src/gui/TextureElement.ts",
  1282. "../../inspector/src/gui/Tooltip.ts",
  1283. "../../inspector/src/helpers/Helpers.ts",
  1284. "../../inspector/src/scheduler/Scheduler.ts",
  1285. "../../inspector/src/tabs/Tab.ts",
  1286. "../../inspector/src/tabs/PropertyTab.ts",
  1287. "../../inspector/src/tabs/CameraTab.ts",
  1288. "../../inspector/src/tabs/SoundTab.ts",
  1289. "../../inspector/src/tabs/TextureTab.ts",
  1290. "../../inspector/src/tabs/Canvas2DTab.ts",
  1291. "../../inspector/src/tabs/LightTab.ts",
  1292. "../../inspector/src/tabs/MaterialTab.ts",
  1293. "../../inspector/src/tabs/MeshTab.ts",
  1294. "../../inspector/src/tabs/SceneTab.ts",
  1295. "../../inspector/src/tabs/ShaderTab.ts",
  1296. "../../inspector/src/tabs/ConsoleTab.ts",
  1297. "../../inspector/src/tabs/StatsTab.ts",
  1298. "../../inspector/src/tabs/TabBar.ts",
  1299. "../../inspector/src/tools/AbstractTool.ts",
  1300. "../../inspector/src/tools/PauseScheduleTool.ts",
  1301. "../../inspector/src/tools/PickTool.ts",
  1302. "../../inspector/src/tools/PopupTool.ts",
  1303. "../../inspector/src/tools/RefreshTool.ts",
  1304. "../../inspector/src/tools/LabelTool.ts",
  1305. "../../inspector/src/tools/Toolbar.ts",
  1306. "../../inspector/src/tools/DisposeTool.ts",
  1307. "../../inspector/src/tree/TreeItem.ts",
  1308. "../../inspector/src/treetools/AbstractTreeTool.ts",
  1309. "../../inspector/src/treetools/BoundingBox.ts",
  1310. "../../inspector/src/treetools/CameraPOV.ts",
  1311. "../../inspector/src/treetools/SoundInteractions.ts",
  1312. "../../inspector/src/treetools/Checkbox.ts",
  1313. "../../inspector/src/treetools/DebugArea.ts",
  1314. "../../inspector/src/treetools/Info.ts",
  1315. "../../inspector/src/lib.d.ts"
  1316. ],
  1317. "sassFiles": [
  1318. "../../inspector/sass/**/*.scss"
  1319. ],
  1320. "output": "babylon.inspector.js",
  1321. "webpack": "../../inspector/webpack.config.js"
  1322. }
  1323. ],
  1324. "build": {
  1325. "srcOutputDirectory": "../../inspector/",
  1326. "distOutputDirectory": "/inspector/"
  1327. }
  1328. }
  1329. }