| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067 |
- {
- "build": {
- "filename": "babylon.max.js",
- "minFilename": "babylon.js",
- "minWorkerFilename": "babylon.worker.js",
- "noModuleFilename": "babylon.no-module.max.js",
- "declarationFilename": "babylon.d.ts",
- "declarationModuleFilename": "babylon.module.d.ts",
- "outputDirectory": "../../dist/preview release",
- "playgroundDirectory": "../../Playground/",
- "tempDirectory": "../../.temp/",
- "intellisenseFile": "babylon.d.txt",
- "intellisenseSources": [
- "../../dist/preview release/babylon.d.ts",
- "../../dist/preview release/gui/babylon.gui.d.ts",
- "../../dist/preview release/loaders/babylonjs.loaders.d.ts",
- "../../dist/preview release/serializers/babylonjs.serializers.d.ts",
- "../../dist/preview release/glTF2Interface/babylon.glTF2Interface.d.ts",
- "../../dist/preview release/materialsLibrary/babylonjs.materials.d.ts",
- "../../dist/preview release/postProcessesLibrary/babylonjs.postProcess.d.ts",
- "../../dist/preview release/proceduralTexturesLibrary/babylonjs.proceduralTextures.d.ts"
- ],
- "outputCustomConfigurationsDirectory": "../../dist/preview release/customConfigurations",
- "srcOutputDirectory": "../../src/",
- "currentConfig": "all",
- "typedocJSON": "../../.temp/babylon.typedoc.json",
- "typedocValidationBaseline": "../../dist/preview release/typedocValidationBaseline.json",
- "dependencies": [
- {
- "name": "CANNON",
- "module": "cannon",
- "optional": true
- },
- {
- "name": "OIMO",
- "module": "oimo",
- "optional": true
- },
- {
- "name": "earcut",
- "module": "earcut",
- "optional": true
- }
- ]
- },
- "buildConfigurations": {
- "all": [
- "pbrMaterial",
- "freeCamera",
- "flyCamera",
- "arcRotateCamera",
- "hemisphericLight",
- "pointLight",
- "directionalLight",
- "spotLight",
- "animations",
- "actions",
- "sprites",
- "picking",
- "collisions",
- "particles",
- "gpuParticles",
- "solidParticles",
- "additionalMeshes",
- "meshBuilder",
- "meshCompression",
- "audio",
- "additionalTextures",
- "shadows",
- "loader",
- "userData",
- "offline",
- "fresnel",
- "multiMaterial",
- "touchCamera",
- "procedural",
- "gamepad",
- "additionalCameras",
- "postProcesses",
- "renderingPipeline",
- "additionalRenderingPipeline",
- "defaultRenderingPipeline",
- "depthRenderer",
- "geometryBufferRenderer",
- "additionalPostProcesses",
- "additionalPostProcess_blur",
- "additionalPostProcess_depthOfFieldBlur",
- "additionalPostProcess_fxaa",
- "additionalPostProcess_circleOfConfusion",
- "additionalPostProcess_depthOfFieldMerge",
- "additionalPostProcess_bloomMerge",
- "additionalPostProcess_depthOfFieldEffect",
- "additionalPostProcess_bloomEffect",
- "additionalPostProcess_imageProcessing",
- "additionalPostProcess_motionBlur",
- "bones",
- "hdr",
- "polygonMesh",
- "csg",
- "lensFlares",
- "physics",
- "textureFormats",
- "debug",
- "utilityLayer",
- "gizmos",
- "morphTargets",
- "octrees",
- "anaglyph",
- "stereoscopic",
- "vr",
- "virtualJoystick",
- "optimizations",
- "highlights",
- "assetsManager",
- "serialization",
- "probes",
- "layer",
- "textureTools",
- "cameraBehaviors",
- "meshBehaviors",
- "nullEngine",
- "instrumentation",
- "backgroundMaterial",
- "environmentHelper",
- "particleHelper",
- "videoDome",
- "photoDome",
- "behaviors",
- "imageProcessing",
- "occlusionQuery",
- "transformFeedback",
- "noise",
- "videoRecorder",
- "sceneHelpers"
- ],
- "minimal": [
- "meshBuilder",
- "freeCamera",
- "flyCamera",
- "hemisphericLight"
- ],
- "360Viewer": [
- "arcRotateCamera",
- "meshBuilder",
- "picking",
- "backgroundMaterial",
- "videoDome"
- ],
- "glTFViewer": [
- "arcRotateCamera",
- "imageProcessing",
- "backgroundMaterial",
- "pbrMaterial",
- "hdr"
- ]
- },
- "workloads": {
- "core": {
- "files": [
- "../../src/Materials/effect.js",
- "../../src/types.js",
- "../../src/Events/keyboardEvents.js",
- "../../src/Events/pointerEvents.js",
- "../../src/Tools/tools.js",
- "../../src/Math/math.js",
- "../../src/Math/math.scalar.js",
- "../../src/mixins.js",
- "../../src/Engine/webgl2.js",
- "../../src/Tools/decorators.js",
- "../../src/Tools/deferred.js",
- "../../src/Tools/observable.js",
- "../../src/Tools/smartArray.js",
- "../../src/Tools/promise.js",
- "../../src/Tools/workerPool.js",
- "../../src/States/alphaCullingState.js",
- "../../src/States/depthCullingState.js",
- "../../src/States/stencilState.js",
- "../../src/Engine/engine.js",
- "../../src/node.js",
- "../../src/Culling/boundingSphere.js",
- "../../src/Culling/boundingBox.js",
- "../../src/Culling/boundingInfo.js",
- "../../src/Mesh/transformNode.js",
- "../../src/Mesh/abstractMesh.js",
- "../../src/Lights/light.js",
- "../../src/Cameras/camera.js",
- "../../src/Rendering/renderingManager.js",
- "../../src/Rendering/renderingGroup.js",
- "../../src/sceneComponent.js",
- "../../src/abstractScene.js",
- "../../src/scene.js",
- "../../src/assetContainer.js",
- "../../src/Mesh/buffer.js",
- "../../src/Mesh/vertexBuffer.js",
- "../../src/Materials/Textures/internalTextureLoader.js",
- "../../src/Materials/Textures/internalTextureTracker.js",
- "../../src/Materials/Textures/internalTexture.js",
- "../../src/Materials/Textures/baseTexture.js",
- "../../src/Materials/Textures/texture.js",
- "../../src/Mesh/mesh.js",
- "../../src/Mesh/subMesh.js",
- "../../src/Materials/material.js",
- "../../src/Materials/uniformBuffer.js",
- "../../src/Mesh/mesh.vertexData.js",
- "../../src/Mesh/geometry.js",
- "../../src/Tools/performanceMonitor.js",
- "../../src/Materials/materialHelper.js",
- "../../src/Materials/pushMaterial.js",
- "../../src/Materials/standardMaterial.js"
- ],
- "shaders": [
- "default.vertex",
- "default.fragment"
- ],
- "shaderIncludes": [
- "depthPrePass",
- "bonesDeclaration",
- "instancesDeclaration",
- "pointCloudVertexDeclaration",
- "bumpVertexDeclaration",
- "clipPlaneVertexDeclaration",
- "fogVertexDeclaration",
- "morphTargetsVertexGlobalDeclaration",
- "morphTargetsVertexDeclaration",
- "logDepthDeclaration",
- "morphTargetsVertex",
- "instancesVertex",
- "bonesVertex",
- "bumpVertex",
- "clipPlaneVertex",
- "fogVertex",
- "shadowsVertex",
- "pointCloudVertex",
- "logDepthVertex",
- "helperFunctions",
- "lightFragmentDeclaration",
- "lightsFragmentFunctions",
- "lightUboDeclaration",
- "defaultVertexDeclaration",
- "defaultFragmentDeclaration",
- "defaultUboDeclaration",
- "shadowsFragmentFunctions",
- "fresnelFunction",
- "reflectionFunction",
- "imageProcessingDeclaration",
- "imageProcessingFunctions",
- "bumpFragmentFunctions",
- "clipPlaneFragmentDeclaration",
- "fogFragmentDeclaration",
- "clipPlaneFragment",
- "bumpFragment",
- "lightFragment",
- "logDepthFragment",
- "fogFragment"
- ]
- },
- "transformFeedback": {
- "files": [
- "../../src/Engine/Extensions/engine.transformFeedback.js"
- ],
- "dependUpon": [
- "core",
- "debug"
- ]
- },
- "occlusionQuery": {
- "files": [
- "../../src/Engine/Extensions/engine.occlusionQuery.js"
- ],
- "dependUpon": [
- "core",
- "debug"
- ]
- },
- "behaviors": {
- "files": [
- "../../src/Behaviors/behavior.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "imageProcessing": {
- "files": [
- "../../src/Materials/imageProcessingConfiguration.js",
- "../../src/Materials/Textures/colorGradingTexture.js",
- "../../src/Materials/colorCurves.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "noise": {
- "files": [
- "../../src/Materials/Textures/Procedurals/noiseProceduralTexture.js"
- ],
- "dependUpon": [
- "core",
- "procedural"
- ],
- "shaders": [
- "noise.fragment"
- ]
- },
- "particles": {
- "files": [
- "../../src/Particles/particle.js",
- "../../src/Particles/baseParticleSystem.js",
- "../../src/Particles/particleSystem.js",
- "../../src/Particles/EmitterTypes/boxParticleEmitter.js",
- "../../src/Particles/EmitterTypes/cylinderParticleEmitter.js",
- "../../src/Particles/EmitterTypes/coneParticleEmitter.js",
- "../../src/Particles/EmitterTypes/sphereParticleEmitter.js",
- "../../src/Particles/EmitterTypes/hemisphericParticleEmitter.js",
- "../../src/Particles/EmitterTypes/pointParticleEmitter.js",
- "../../src/Particles/particleSystemComponent.js",
- "../../src/Particles/subEmitter.js"
- ],
- "dependUpon": [
- "core"
- ],
- "shaders": [
- "particles.vertex",
- "particles.fragment"
- ],
- "shaderIncludes": [
- "clipPlaneVertexDeclaration2",
- "clipPlaneFragmentDeclaration2"
- ]
- },
- "gpuParticles": {
- "files": [
- "../../src/Particles/gpuParticleSystem.js"
- ],
- "dependUpon": [
- "core",
- "particles",
- "transformFeedback"
- ],
- "shaders": [
- "gpuRenderParticles.vertex",
- "gpuRenderParticles.fragment",
- "gpuUpdateParticles.vertex",
- "gpuUpdateParticles.fragment"
- ]
- },
- "nullEngine": {
- "files": [
- "../../src/Engine/nullEngine.js",
- "../../src/Engine/webgl2.js",
- "../../src/mixins.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "instrumentation": {
- "files": [
- "../../src/Engine/webgl2.js",
- "../../src/Instrumentation/engineInstrumentation.js",
- "../../src/Instrumentation/sceneInstrumentation.js",
- "../../src/Instrumentation/timeToken.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "cameraBehaviors": {
- "files": [
- "../../src/Behaviors/Cameras/framingBehavior.js",
- "../../src/Behaviors/Cameras/bouncingBehavior.js",
- "../../src/Behaviors/Cameras/autoRotationBehavior.js"
- ],
- "dependUpon": [
- "behaviors"
- ]
- },
- "meshBehaviors": {
- "files": [
- "../../src/Behaviors/Mesh/pointerDragBehavior.js",
- "../../src/Behaviors/Mesh/multiPointerScaleBehavior.js",
- "../../src/Behaviors/Mesh/sixDofDragBehavior.js",
- "../../src/Behaviors/Mesh/attachToBoxBehavior.js",
- "../../src/Behaviors/Mesh/fadeInOutBehavior.js"
- ],
- "dependUpon": [
- "behaviors"
- ]
- },
- "textureTools": {
- "files": [
- "../../src/Tools/textureTools.js"
- ],
- "dependUpon": [
- "core",
- "postProcesses"
- ]
- },
- "solidParticles": {
- "files": [
- "../../src/Particles/solidParticle.js",
- "../../src/Particles/solidParticleSystem.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "collisions": {
- "files": [
- "../../src/Collisions/collider.js",
- "../../src/Collisions/collisionCoordinator.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "picking": {
- "files": [
- "../../src/Collisions/pickingInfo.js",
- "../../src/Culling/ray.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "sprites": {
- "files": [
- "../../src/Sprites/spriteManager.js",
- "../../src/Sprites/sprite.js",
- "../../src/Sprites/spriteSceneComponent.js"
- ],
- "dependUpon": [
- "core"
- ],
- "shaders": [
- "sprites.vertex",
- "sprites.fragment"
- ]
- },
- "animations": {
- "files": [
- "../../src/Animations/animationPropertiesOverride.js",
- "../../src/Animations/animation.js",
- "../../src/Animations/animationGroup.js",
- "../../src/Animations/runtimeAnimation.js",
- "../../src/Animations/animatable.js",
- "../../src/Animations/easing.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "actions": {
- "files": [
- "../../src/Actions/condition.js",
- "../../src/Actions/action.js",
- "../../src/Actions/actionManager.js",
- "../../src/Actions/interpolateValueAction.js",
- "../../src/Actions/directActions.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "additionalMeshes": {
- "files": [
- "../../src/Mesh/groundMesh.js",
- "../../src/Mesh/instancedMesh.js",
- "../../src/Mesh/linesMesh.js"
- ],
- "dependUpon": [
- "core",
- "shaderMaterial"
- ],
- "shaders": [
- "color.vertex",
- "color.fragment"
- ]
- },
- "meshBuilder": {
- "files": [
- "../../src/Mesh/meshBuilder.js"
- ],
- "dependUpon": [
- "core",
- "additionalMeshes"
- ]
- },
- "meshCompression": {
- "files": [
- "../../src/Mesh/Compression/dracoCompression.js"
- ]
- },
- "shaderMaterial": {
- "files": [
- "../../src/Materials/shaderMaterial.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "pbrMaterial": {
- "files": [
- "../../src/Materials/PBR/pbrBaseMaterial.js",
- "../../src/Materials/PBR/pbrBaseSimpleMaterial.js",
- "../../src/Materials/PBR/pbrMaterial.js",
- "../../src/Materials/PBR/pbrMetallicRoughnessMaterial.js",
- "../../src/Materials/PBR/pbrSpecularGlossinessMaterial.js"
- ],
- "dependUpon": [
- "core",
- "harmonics"
- ],
- "shaders": [
- "pbr.vertex",
- "pbr.fragment",
- "rgbdEncode.fragment",
- "rgbdDecode.fragment"
- ],
- "shaderIncludes": [
- "pbrVertexDeclaration",
- "pbrFragmentDeclaration",
- "pbrUboDeclaration",
- "pbrFunctions",
- "harmonicsFunctions",
- "pbrLightFunctions"
- ]
- },
- "targetCamera": {
- "files": [
- "../../src/Cameras/cameraInputsManager.js",
- "../../src/Cameras/targetCamera.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "freeCamera": {
- "files": [
- "../../src/Cameras/Inputs/freeCameraMouseInput.js",
- "../../src/Cameras/Inputs/freeCameraKeyboardMoveInput.js",
- "../../src/Cameras/freeCameraInputsManager.js",
- "../../src/Cameras/freeCamera.js"
- ],
- "dependUpon": [
- "targetCamera"
- ]
- },
- "flyCamera": {
- "files": [
- "../../src/Cameras/Inputs/flyCameraMouseInput.js",
- "../../src/Cameras/Inputs/flyCameraKeyboardInput.js",
- "../../src/Cameras/flyCameraInputsManager.js",
- "../../src/Cameras/flyCamera.js"
- ],
- "dependUpon": [
- "targetCamera"
- ]
- },
- "arcRotateCamera": {
- "files": [
- "../../src/Cameras/Inputs/arcRotateCameraKeyboardMoveInput.js",
- "../../src/Cameras/Inputs/arcRotateCameraMouseWheelInput.js",
- "../../src/Cameras/Inputs/arcRotateCameraPointersInput.js",
- "../../src/Cameras/arcRotateCameraInputsManager.js",
- "../../src/Cameras/arcRotateCamera.js"
- ],
- "dependUpon": [
- "targetCamera"
- ]
- },
- "hemisphericLight": {
- "files": [
- "../../src/Lights/hemisphericLight.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "pointLight": {
- "files": [
- "../../src/Lights/shadowLight.js",
- "../../src/Lights/pointLight.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "directionalLight": {
- "files": [
- "../../src/Lights/shadowLight.js",
- "../../src/Lights/directionalLight.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "spotLight": {
- "files": [
- "../../src/Lights/shadowLight.js",
- "../../src/Lights/spotLight.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "audio": {
- "files": [
- "../../src/Audio/audioEngine.js",
- "../../src/Audio/sound.js",
- "../../src/Audio/soundtrack.js",
- "../../src/Audio/analyser.js",
- "../../src/Audio/weightedsound.js",
- "../../src/Audio/audioSceneComponent.js",
- "../../src/Actions/directAudioActions.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "additionalTextures": {
- "files": [
- "../../src/Materials/Textures/cubeTexture.js",
- "../../src/Materials/Textures/rawCubeTexture.js",
- "../../src/Materials/Textures/renderTargetTexture.js",
- "../../src/Materials/Textures/multiRenderTarget.js",
- "../../src/Materials/Textures/mirrorTexture.js",
- "../../src/Materials/Textures/refractionTexture.js",
- "../../src/Materials/Textures/dynamicTexture.js",
- "../../src/Materials/Textures/videoTexture.js",
- "../../src/Materials/Textures/rawTexture.js",
- "../../src/Materials/Textures/rawTexture3D.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "shadows": {
- "files": [
- "../../src/Lights/Shadows/shadowGenerator.js",
- "../../src/Lights/Shadows/shadowGeneratorSceneComponent.js"
- ],
- "dependUpon": [
- "postProcesses"
- ],
- "shaders": [
- "shadowMap.vertex",
- "shadowMap.fragment",
- "depthBoxBlur.fragment"
- ]
- },
- "loader": {
- "files": [
- "../../src/Loading/loadingScreen.js",
- "../../src/Loading/sceneLoader.js",
- "../../src/Loading/Plugins/babylonFileLoader.js",
- "../../src/Tools/filesInput.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "stringDictionary": {
- "files": [
- "../../src/Tools/stringDictionary.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "userData": {
- "files": [
- "../../src/Tools/tags.js",
- "../../src/Tools/andOrNotEvaluator.js"
- ],
- "dependUpon": [
- "stringDictionary"
- ]
- },
- "offline": {
- "files": [
- "../../src/Offline/database.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "fresnel": {
- "files": [
- "../../src/Materials/fresnelParameters.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "multiMaterial": {
- "files": [
- "../../src/Materials/multiMaterial.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "touchCamera": {
- "files": [
- "../../src/Cameras/Inputs/freeCameraTouchInput.js",
- "../../src/Cameras/touchCamera.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "procedural": {
- "files": [
- "../../src/Materials/Textures/Procedurals/proceduralTexture.js",
- "../../src/Materials/Textures/Procedurals/proceduralTextureSceneComponent.js",
- "../../src/Materials/Textures/Procedurals/customProceduralTexture.js"
- ],
- "dependUpon": [
- "core"
- ],
- "shaders": [
- "procedural.vertex"
- ]
- },
- "gamepad": {
- "files": [
- "../../src/Cameras/Inputs/freeCameraGamepadInput.js",
- "../../src/Cameras/Inputs/arcRotateCameraGamepadInput.js",
- "../../src/Gamepad/gamepadManager.js",
- "../../src/Gamepad/gamepad.js",
- "../../src/Gamepad/xboxGamepad.js",
- "../../src/Gamepad/Controllers/poseEnabledController.js",
- "../../src/Gamepad/Controllers/webVRController.js",
- "../../src/Gamepad/Controllers/oculusTouchController.js",
- "../../src/Gamepad/Controllers/viveController.js",
- "../../src/Gamepad/Controllers/genericController.js",
- "../../src/Gamepad/Controllers/windowsMotionController.js",
- "../../src/Gamepad/Controllers/gearVRController.js",
- "../../src/Gamepad/Controllers/daydreamController.js",
- "../../src/Gamepad/gamepadSceneComponent.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "additionalCameras": {
- "files": [
- "../../src/Cameras/followCamera.js",
- "../../src/Cameras/universalCamera.js",
- "../../src/Cameras/gamepadCamera.js"
- ],
- "dependUpon": [
- "gamepad"
- ]
- },
- "depthRenderer": {
- "files": [
- "../../src/Rendering/depthRenderer.js",
- "../../src/Rendering/depthRendererSceneComponent.js"
- ],
- "dependUpon": [
- "core"
- ],
- "shaders": [
- "depth.vertex",
- "depth.fragment"
- ],
- "shaderIncludes": []
- },
- "geometryBufferRenderer": {
- "files": [
- "../../src/Rendering/geometryBufferRenderer.js",
- "../../src/Rendering/geometryBufferRendererSceneComponent.js"
- ],
- "dependUpon": [
- "core"
- ],
- "shaders": [
- "geometry.vertex",
- "geometry.fragment"
- ],
- "shaderIncludes": [
- "mrtFragmentDeclaration",
- "bones300Declaration",
- "instances300Declaration"
- ]
- },
- "postProcesses": {
- "files": [
- "../../src/PostProcess/postProcessManager.js",
- "../../src/PostProcess/postProcess.js",
- "../../src/PostProcess/passPostProcess.js"
- ],
- "dependUpon": [
- "core"
- ],
- "shaders": [
- "postprocess.vertex",
- "pass.fragment"
- ]
- },
- "additionalPostProcess_blur": {
- "files": [
- "../../src/PostProcess/blurPostProcess.js"
- ],
- "dependUpon": [
- "postProcesses"
- ],
- "shaders": [
- "kernelBlur.vertex",
- "kernelBlur.fragment"
- ],
- "shaderIncludes": [
- "kernelBlurFragment",
- "kernelBlurFragment2",
- "kernelBlurVaryingDeclaration",
- "kernelBlurVertex"
- ]
- },
- "additionalPostProcess_depthOfFieldBlur": {
- "files": [
- "../../src/PostProcess/depthOfFieldBlurPostProcess.js"
- ],
- "dependUpon": [
- "postProcesses",
- "additionalPostProcess_blur"
- ],
- "shaders": [
- "kernelBlur.vertex",
- "kernelBlur.fragment"
- ],
- "shaderIncludes": [
- "kernelBlurFragment",
- "kernelBlurFragment2",
- "kernelBlurVaryingDeclaration",
- "kernelBlurVertex"
- ]
- },
- "additionalPostProcess_circleOfConfusion": {
- "files": [
- "../../src/PostProcess/circleOfConfusionPostProcess.js"
- ],
- "dependUpon": [
- "postProcesses"
- ],
- "shaders": [
- "circleOfConfusion.fragment"
- ]
- },
- "additionalPostProcess_sharpen": {
- "files": [
- "../../src/PostProcess/sharpenPostProcess.js"
- ],
- "dependUpon": [
- "postProcesses"
- ],
- "shaders": [
- "sharpen.fragment"
- ]
- },
- "additionalPostProcess_chromaticAberration": {
- "files": [
- "../../src/PostProcess/chromaticAberrationPostProcess.js"
- ],
- "dependUpon": [
- "postProcesses"
- ],
- "shaders": [
- "chromaticAberration.fragment"
- ]
- },
- "additionalPostProcess_grain": {
- "files": [
- "../../src/PostProcess/grainPostProcess.js"
- ],
- "dependUpon": [
- "postProcesses"
- ],
- "shaders": [
- "grain.fragment"
- ]
- },
- "additionalPostProcess_depthOfFieldMerge": {
- "files": [
- "../../src/PostProcess/depthOfFieldMergePostProcess.js"
- ],
- "dependUpon": [
- "postProcesses"
- ],
- "shaders": [
- "depthOfFieldMerge.fragment"
- ]
- },
- "additionalPostProcess_bloomMerge": {
- "files": [
- "../../src/PostProcess/bloomMergePostProcess.js"
- ],
- "dependUpon": [
- "postProcesses"
- ],
- "shaders": [
- "bloomMerge.fragment"
- ]
- },
- "additionalPostProcess_depthOfFieldEffect": {
- "files": [
- "../../src/PostProcess/depthOfFieldEffect.js"
- ],
- "dependUpon": [
- "additionalPostProcess_depthOfFieldBlur",
- "additionalPostProcess_depthOfFieldMerge",
- "additionalPostProcess_circleOfConfusion"
- ]
- },
- "additionalPostProcess_bloomEffect": {
- "files": [
- "../../src/PostProcess/bloomEffect.js"
- ],
- "dependUpon": [
- "additionalPostProcess_blur",
- "additionalPostProcess_bloomMerge",
- "additionalPostProcess_extractHighlights"
- ]
- },
- "additionalPostProcess_fxaa": {
- "files": [
- "../../src/PostProcess/fxaaPostProcess.js"
- ],
- "dependUpon": [
- "postProcesses"
- ],
- "shaders": [
- "fxaa.vertex",
- "fxaa.fragment"
- ]
- },
- "additionalPostProcess_highlights": {
- "files": [
- "../../src/PostProcess/highlightsPostProcess.js"
- ],
- "dependUpon": [
- "postProcesses"
- ],
- "shaders": [
- "highlights.fragment"
- ]
- },
- "additionalPostProcess_extractHighlights": {
- "files": [
- "../../src/PostProcess/extractHighlightsPostProcess.js"
- ],
- "dependUpon": [
- "postProcesses"
- ],
- "shaders": [
- "extractHighlights.fragment"
- ]
- },
- "additionalPostProcess_imageProcessing": {
- "files": [
- "../../src/PostProcess/imageProcessingPostProcess.js"
- ],
- "dependUpon": [
- "postProcesses",
- "imageProcessing"
- ],
- "shaders": [
- "imageProcessing.fragment"
- ],
- "shaderIncludes": []
- },
- "additionalPostProcess_motionBlur": {
- "files": [
- "../../src/PostProcess/motionBlurPostProcess.js"
- ],
- "dependUpon": [
- "postProcesses"
- ],
- "shaders": [
- "motionBlur.fragment"
- ]
- },
- "additionalPostProcesses": {
- "files": [
- "../../src/PostProcess/refractionPostProcess.js",
- "../../src/PostProcess/blackAndWhitePostProcess.js",
- "../../src/PostProcess/convolutionPostProcess.js",
- "../../src/PostProcess/sharpenPostProcess.js",
- "../../src/PostProcess/chromaticAberrationPostProcess.js",
- "../../src/PostProcess/grainPostProcess.js",
- "../../src/PostProcess/filterPostProcess.js",
- "../../src/PostProcess/fxaaPostProcess.js",
- "../../src/PostProcess/volumetricLightScatteringPostProcess.js",
- "../../src/PostProcess/colorCorrectionPostProcess.js",
- "../../src/PostProcess/tonemapPostProcess.js",
- "../../src/PostProcess/displayPassPostProcess.js",
- "../../src/PostProcess/highlightsPostProcess.js",
- "../../src/PostProcess/extractHighlightsPostProcess.js",
- "../../src/PostProcess/imageProcessingPostProcess.js",
- "../../src/PostProcess/motionBlurPostProcess.js"
- ],
- "dependUpon": [
- "postProcesses",
- "imageProcessing"
- ],
- "shaders": [
- "refraction.fragment",
- "blackAndWhite.fragment",
- "convolution.fragment",
- "sharpen.fragment",
- "filter.fragment",
- "fxaa.fragment",
- "volumetricLightScattering.fragment",
- "volumetricLightScatteringPass.fragment",
- "colorCorrection.fragment",
- "tonemap.fragment",
- "displayPass.fragment",
- "highlights.fragment",
- "imageProcessing.fragment",
- "motionBlur.fragment"
- ]
- },
- "renderingPipeline": {
- "files": [
- "../../src/PostProcess/RenderPipeline/postProcessRenderPipelineManager.js",
- "../../src/PostProcess/RenderPipeline/postProcessRenderPipelineManagerSceneComponent.js",
- "../../src/PostProcess/RenderPipeline/postProcessRenderEffect.js",
- "../../src/PostProcess/RenderPipeline/postProcessRenderPipeline.js"
- ],
- "dependUpon": [
- "postProcesses"
- ]
- },
- "additionalRenderingPipeline": {
- "files": [
- "../../src/PostProcess/RenderPipeline/Pipelines/ssaoRenderingPipeline.js",
- "../../src/PostProcess/RenderPipeline/Pipelines/ssao2RenderingPipeline.js",
- "../../src/PostProcess/RenderPipeline/Pipelines/lensRenderingPipeline.js",
- "../../src/PostProcess/RenderPipeline/Pipelines/standardRenderingPipeline.js"
- ],
- "dependUpon": [
- "renderingPipeline",
- "depthRenderer",
- "geometryBufferRenderer"
- ],
- "shaders": [
- "ssao.fragment",
- "ssao2.fragment",
- "ssaoCombine.fragment",
- "lensHighlights.fragment",
- "depthOfField.fragment",
- "standard.fragment"
- ]
- },
- "defaultRenderingPipeline": {
- "files": [
- "../../src/PostProcess/RenderPipeline/Pipelines/defaultRenderingPipeline.js"
- ],
- "dependUpon": [
- "renderingPipeline",
- "additionalPostProcess_fxaa",
- "additionalPostProcess_chromaticAberration",
- "additionalPostProcess_grain",
- "additionalPostProcess_sharpen",
- "additionalPostProcess_depthOfFieldEffect",
- "additionalPostProcess_bloomEffect"
- ]
- },
- "bones": {
- "files": [
- "../../src/Bones/bone.js",
- "../../src/Bones/boneIKController.js",
- "../../src/Bones/boneLookController.js",
- "../../src/Bones/skeleton.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "hdr": {
- "files": [
- "../../src/Tools/HDR/hdr.js",
- "../../src/Materials/Textures/hdrCubeTexture.js",
- "../../src/Tools/HDR/panoramaToCubemap.js"
- ],
- "dependUpon": [
- "core",
- "harmonics"
- ]
- },
- "csg": {
- "files": [
- "../../src/Mesh/csg.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "polygonMesh": {
- "files": [
- "../../src/Mesh/polygonMesh.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "lensFlares": {
- "files": [
- "../../src/LensFlare/lensFlare.js",
- "../../src/LensFlare/lensFlareSystemSceneComponent.js",
- "../../src/LensFlare/lensFlareSystem.js"
- ],
- "dependUpon": [
- "core"
- ],
- "shaders": [
- "lensFlare.vertex",
- "lensFlare.fragment"
- ]
- },
- "physics": {
- "files": [
- "../../src/Physics/physicsJoint.js",
- "../../src/Physics/physicsImpostor.js",
- "../../src/Physics/physicsEngine.js",
- "../../src/Physics/physicsHelper.js",
- "../../src/Physics/Plugins/cannonJSPlugin.js",
- "../../src/Physics/Plugins/oimoJSPlugin.js",
- "../../src/Physics/physicsEngineComponent.js"
- ],
- "dependUpon": [
- "core",
- "picking"
- ]
- },
- "harmonics": {
- "files": [
- "../../src/Math/sphericalPolynomial.js",
- "../../src/Tools/HDR/cubemapToSphericalPolynomial.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "textureFormats": {
- "files": [],
- "dependUpon": [
- "dds",
- "tga",
- "ktx",
- "env"
- ]
- },
- "dds": {
- "files": [
- "../../src/Tools/dds.js",
- "../../src/Materials/Textures/Loaders/ddsTextureLoader.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "tga": {
- "files": [
- "../../src/Tools/tga.js",
- "../../src/Materials/Textures/Loaders/tgaTextureLoader.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "ktx": {
- "files": [
- "../../src/Tools/khronosTextureContainer.js",
- "../../src/Materials/Textures/Loaders/ktxTextureLoader.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "env": {
- "files": [
- "../../src/Tools/environmentTextureTools.js",
- "../../src/Materials/Textures/Loaders/envTextureLoader.js"
- ],
- "dependUpon": [
- "core",
- "harmonics"
- ]
- },
- "debug": {
- "files": [
- "../../src/Debug/skeletonViewer.js",
- "../../src/Debug/axesViewer.js",
- "../../src/Debug/boneAxesViewer.js",
- "../../src/Debug/rayHelper.js",
- "../../src/Debug/debugLayer.js",
- "../../src/Debug/physicsViewer.js",
- "../../src/Rendering/boundingBoxRenderer.js"
- ],
- "dependUpon": [
- "shaderMaterial",
- "additionalMeshes",
- "core",
- "stringDictionary",
- "actions"
- ],
- "shaders": []
- },
- "utilityLayer": {
- "files": [
- "../../src/Rendering/utilityLayerRenderer.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "gizmos": {
- "files": [
- "../../src/Gizmos/gizmo.js",
- "../../src/Gizmos/axisDragGizmo.js",
- "../../src/Gizmos/axisScaleGizmo.js",
- "../../src/Gizmos/planeRotationGizmo.js",
- "../../src/Gizmos/positionGizmo.js",
- "../../src/Gizmos/rotationGizmo.js",
- "../../src/Gizmos/scaleGizmo.js",
- "../../src/Gizmos/boundingBoxGizmo.js",
- "../../src/Gizmos/gizmoManager.js"
- ],
- "dependUpon": [
- "core",
- "utilityLayer",
- "meshBehaviors"
- ]
- },
- "morphTargets": {
- "files": [
- "../../src/Morph/morphTarget.js",
- "../../src/Morph/morphTargetManager.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "octrees": {
- "files": [
- "../../src/Culling/Octrees/octree.js",
- "../../src/Culling/Octrees/octreeBlock.js",
- "../../src/Culling/Octrees/octreeSceneComponent.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "anaglyph": {
- "files": [
- "../../src/PostProcess/anaglyphPostProcess.js",
- "../../src/Cameras/Stereoscopic/anaglyphArcRotateCamera.js",
- "../../src/Cameras/Stereoscopic/anaglyphFreeCamera.js",
- "../../src/Cameras/Stereoscopic/anaglyphGamepadCamera.js",
- "../../src/Cameras/Stereoscopic/anaglyphUniversalCamera.js"
- ],
- "dependUpon": [
- "core",
- "postProcesses",
- "freeCamera",
- "gamepad"
- ],
- "shaders": [
- "anaglyph.fragment"
- ]
- },
- "stereoscopic": {
- "files": [
- "../../src/PostProcess/stereoscopicInterlacePostProcess.js",
- "../../src/Cameras/Stereoscopic/stereoscopicArcRotateCamera.js",
- "../../src/Cameras/Stereoscopic/stereoscopicFreeCamera.js",
- "../../src/Cameras/Stereoscopic/stereoscopicGamepadCamera.js",
- "../../src/Cameras/Stereoscopic/stereoscopicUniversalCamera.js"
- ],
- "dependUpon": [
- "core",
- "postProcesses",
- "freeCamera",
- "gamepad"
- ],
- "shaders": [
- "stereoscopicInterlace.fragment"
- ]
- },
- "vr": {
- "files": [
- "../../src/PostProcess/vrDistortionCorrectionPostProcess.js",
- "../../src/Cameras/Inputs/freeCameraDeviceOrientationInput.js",
- "../../src/Cameras/Inputs/arcRotateCameraVRDeviceOrientationInput.js",
- "../../src/Cameras/VR/vrCameraMetrics.js",
- "../../src/Cameras/VR/webVRCamera.js",
- "../../src/Cameras/deviceOrientationCamera.js",
- "../../src/Cameras/VR/vrDeviceOrientationFreeCamera.js",
- "../../src/Cameras/VR/vrDeviceOrientationArcRotateCamera.js",
- "../../src/Cameras/VR/vrDeviceOrientationGamepadCamera.js",
- "../../src/Cameras/VR/vrExperienceHelper.js",
- "../../src/Cameras/XR/webXRCamera.js",
- "../../src/Cameras/XR/webXRSessionManager.js",
- "../../src/Cameras/XR/webXRExperienceHelper.js",
- "../../src/Cameras/XR/webXREnterExitUI.js",
- "../../src/Cameras/XR/webXRManagedOutputCanvas.js",
- "../../src/Cameras/XR/webXRInput.js"
- ],
- "dependUpon": [
- "core",
- "postProcesses",
- "freeCamera",
- "gamepad"
- ],
- "shaders": [
- "vrDistortionCorrection.fragment"
- ]
- },
- "virtualJoystick": {
- "files": [
- "../../src/Tools/virtualJoystick.js",
- "../../src/Cameras/virtualJoysticksCamera.js",
- "../../src/Cameras/Inputs/freeCameraVirtualJoystickInput.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "optimizations": {
- "files": [
- "../../src/Mesh/meshSimplification.js",
- "../../src/Mesh/meshSimplificationSceneComponent.js",
- "../../src/Mesh/meshLODLevel.js",
- "../../src/Tools/sceneOptimizer.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "highlights": {
- "files": [
- "../../src/Rendering/outlineRenderer.js",
- "../../src/Rendering/edgesRenderer.js",
- "../../src/Rendering/lineEdgesRenderer.js",
- "../../src/Layer/effectLayerSceneComponent.js",
- "../../src/Layer/effectLayer.js",
- "../../src/Layer/highlightLayer.js",
- "../../src/Layer/glowLayer.js"
- ],
- "dependUpon": [
- "shaderMaterial"
- ],
- "shaders": [
- "glowBlurPostProcess.fragment",
- "glowMapGeneration.fragment",
- "glowMapGeneration.vertex",
- "glowMapMerge.fragment",
- "glowMapMerge.vertex",
- "line.vertex",
- "line.fragment",
- "outline.vertex",
- "outline.fragment"
- ]
- },
- "assetsManager": {
- "files": [
- "../../src/Tools/assetsManager.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "serialization": {
- "files": [
- "../../src/Tools/sceneSerializer.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "probes": {
- "files": [
- "../../src/Probes/reflectionProbe.js"
- ],
- "dependUpon": [
- "core"
- ]
- },
- "layer": {
- "files": [
- "../../src/Layer/layerSceneComponent.js",
- "../../src/Layer/layer.js"
- ],
- "dependUpon": [
- "core"
- ],
- "shaders": [
- "layer.vertex",
- "layer.fragment"
- ]
- },
- "backgroundMaterial": {
- "files": [
- "../../src/Materials/Background/backgroundMaterial.js"
- ],
- "dependUpon": [
- "core"
- ],
- "shaders": [
- "background.vertex",
- "background.fragment"
- ],
- "shaderIncludes": [
- "backgroundVertexDeclaration",
- "backgroundFragmentDeclaration",
- "backgroundUboDeclaration"
- ]
- },
- "sceneHelpers": {
- "files": [
- "../../src/Helpers/sceneHelpers.js"
- ],
- "dependUpon": [
- "core",
- "arcRotateCamera",
- "freeCamera",
- "hemisphericLight",
- "pbrMaterial",
- "environmentHelper",
- "vr"
- ]
- },
- "environmentHelper": {
- "files": [
- "../../src/Helpers/environmentHelper.js"
- ],
- "dependUpon": [
- "core",
- "backgroundMaterial",
- "additionalTextures"
- ]
- },
- "particleHelper": {
- "files": [
- "../../src/Particles/particleSystemSet.js",
- "../../src/Particles/particleHelper.js"
- ],
- "dependUpon": [
- "particles"
- ]
- },
- "videoDome": {
- "files": [
- "../../src/Helpers/videoDome.js"
- ],
- "dependUpon": [
- "core",
- "meshBuilder",
- "additionalTextures"
- ]
- },
- "photoDome": {
- "files": [
- "../../src/Helpers/photoDome.js"
- ],
- "dependUpon": [
- "core",
- "meshBuilder",
- "additionalTextures"
- ]
- },
- "videoRecorder": {
- "files": [
- "../../src/Tools/videoRecorder.js"
- ],
- "dependUpon": [
- "core"
- ]
- }
- },
- "typescript": [
- "../../src/**/*.ts"
- ],
- "workers": [
- {
- "variable": "BABYLON.CollisionWorker",
- "files": [
- "../../src/Collisions/collider.js",
- "../../src/Collisions/collisionWorker.js",
- "../../src/Collisions/collisionCoordinator.js",
- "../../src/Math/math.js"
- ]
- }
- ],
- "modules": [
- "core",
- "materialsLibrary",
- "postProcessesLibrary",
- "proceduralTexturesLibrary",
- "loaders",
- "serializers",
- "gui",
- "inspector"
- ],
- "viewerModules": [
- "viewer",
- "viewer-assets"
- ],
- "core": {
- "libraries": [
- {
- "output": "babylon.js",
- "maxOutput": "babylon.max.js",
- "entry": "./Legacy/legacy.ts"
- }
- ],
- "build": {
- "webpack": "../../../src/webpack.config.js",
- "srcDirectory": "../../src/",
- "distOutputDirectory": "/",
- "dtsBundle": {
- "name": "babylonjs",
- "main": "../../dist/preview release/build/src/index.d.ts",
- "out": "../babylon.module.d.ts",
- "baseDir": "../../dist/preview release/build/",
- "headerText": "BabylonJS"
- },
- "processDeclaration": {
- "filename": "babylon.module.d.ts",
- "packageName": "babylonjs",
- "moduleName": "BABYLON",
- "importsToRemove": [],
- "classMap": {
- "babylonjs": "BABYLON"
- }
- }
- }
- },
- "materialsLibrary": {
- "libraries": [
- {
- "output": "babylonjs.materials.min.js",
- "entry": "./legacy/legacy.ts"
- },
- {
- "output": "babylon.cellMaterial.min.js",
- "entry": "./legacy/legacy-cell.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.customMaterial.min.js",
- "entry": "./legacy/legacy-custom.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.fireMaterial.min.js",
- "entry": "./legacy/legacy-fire.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.furMaterial.min.js",
- "entry": "./legacy/legacy-fur.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.gradientMaterial.min.js",
- "entry": "./legacy/legacy-gradient.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.gridMaterial.min.js",
- "entry": "./legacy/legacy-grid.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.lavaMaterial.min.js",
- "entry": "./legacy/legacy-lava.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.mixMaterial.min.js",
- "entry": "./legacy/legacy-mix.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.normalMaterial.min.js",
- "entry": "./legacy/legacy-normal.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.shadowOnlyMaterial.min.js",
- "entry": "./legacy/legacy-shadowOnly.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.simpleMaterial.min.js",
- "entry": "./legacy/legacy-simple.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.skyMaterial.min.js",
- "entry": "./legacy/legacy-sky.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.terrainMaterial.min.js",
- "entry": "./legacy/legacy-terrain.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.triPlanarMaterial.min.js",
- "entry": "./legacy/legacy-triPlanar.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.waterMaterial.min.js",
- "entry": "./legacy/legacy-water.ts",
- "preventLoadLibrary": true
- }
- ],
- "build": {
- "webpack": "../../../materialsLibrary/webpack.config.js",
- "srcDirectory": "../../materialsLibrary/src/",
- "distOutputDirectory": "/materialsLibrary/",
- "dtsBundle": {
- "name": "babylonjs-materials",
- "main": "../../dist/preview release/materialsLibrary/build/src/index.d.ts",
- "out": "../babylonjs.materials.module.d.ts",
- "baseDir": "../../dist/preview release/materialsLibrary/build/",
- "headerText": "BabylonJS Materials"
- },
- "processDeclaration": {
- "filename": "babylonjs.materials.module.d.ts",
- "packageName": "babylonjs-materials",
- "moduleName": "BABYLON",
- "importsToRemove": [],
- "classMap": {
- "babylonjs": "BABYLON",
- "babylonjs-loaders": "BABYLON",
- "babylonjs-serializers": "BABYLON"
- }
- }
- }
- },
- "postProcessesLibrary": {
- "libraries": [
- {
- "output": "babylonjs.postProcess.min.js",
- "entry": "./legacy/legacy.ts"
- },
- {
- "output": "babylon.asciiArtPostProcess.min.js",
- "entry": "./legacy/legacy-asciiArt.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.digitalRainPostProcess.min.js",
- "entry": "./legacy/legacy-digitalRain.ts",
- "preventLoadLibrary": true
- }
- ],
- "build": {
- "webpack": "../../../postProcessLibrary/webpack.config.js",
- "srcDirectory": "../../postProcessLibrary/src/",
- "distOutputDirectory": "/postProcessesLibrary/",
- "dtsBundle": {
- "name": "babylonjs-postProcessLibrary",
- "main": "../../dist/preview release/postProcessesLibrary/build/src/index.d.ts",
- "out": "../babylonjs.postProcess.module.d.ts",
- "baseDir": "../../dist/preview release/postProcessesLibrary/build/",
- "headerText": "BabylonJS Postprocess library"
- },
- "processDeclaration": {
- "filename": "babylonjs.postProcess.module.d.ts",
- "packageName": "babylonjs-postProcessLibrary",
- "moduleName": "BABYLON",
- "importsToRemove": [],
- "classMap": {
- "babylonjs": "BABYLON",
- "babylonjs-loaders": "BABYLON",
- "babylonjs-serializers": "BABYLON"
- }
- }
- }
- },
- "proceduralTexturesLibrary": {
- "libraries": [
- {
- "output": "babylonjs.proceduralTextures.min.js",
- "entry": "./legacy/legacy.ts"
- },
- {
- "output": "babylon.brickProceduralTexture.min.js",
- "entry": "./legacy/legacy-brick.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.cloudProceduralTexture.min.js",
- "entry": "./legacy/legacy-cloud.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.fireProceduralTexture.min.js",
- "entry": "./legacy/legacy-fire.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.grassProceduralTexture.min.js",
- "entry": "./legacy/legacy-grass.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.marbleProceduralTexture.min.js",
- "entry": "./legacy/legacy-marble.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.normalMapProceduralTexture.min.js",
- "entry": "./legacy/legacy-normalMap.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.perlinNoiseProceduralTexture.min.js",
- "entry": "./legacy/legacy-perlinNoise.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.roadProceduralTexture.min.js",
- "entry": "./legacy/legacy-road.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.starfieldProceduralTexture.min.js",
- "entry": "./legacy/legacy-starfield.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.woodProceduralTexture.min.js",
- "entry": "./legacy/legacy-wood.ts",
- "preventLoadLibrary": true
- }
- ],
- "build": {
- "webpack": "../../../proceduralTexturesLibrary/webpack.config.js",
- "srcDirectory": "../../proceduralTexturesLibrary/src/",
- "distOutputDirectory": "/proceduralTexturesLibrary/",
- "dtsBundle": {
- "name": "babylonjs-procedural-textures",
- "main": "../../dist/preview release/proceduralTexturesLibrary/build/src/index.d.ts",
- "out": "../babylonjs.proceduralTextures.module.d.ts",
- "baseDir": "../../dist/preview release/proceduralTexturesLibrary/build/",
- "headerText": "BabylonJS Procedural Textures"
- },
- "processDeclaration": {
- "filename": "babylonjs.proceduralTextures.module.d.ts",
- "packageName": "babylonjs-procedural-textures",
- "moduleName": "BABYLON",
- "importsToRemove": [],
- "classMap": {
- "babylonjs": "BABYLON",
- "babylonjs-loaders": "BABYLON",
- "babylonjs-serializers": "BABYLON"
- }
- }
- }
- },
- "loaders": {
- "libraries": [
- {
- "output": "babylonjs.loaders.min.js",
- "entry": "./legacy/legacy.ts"
- },
- {
- "output": "babylon.objFileLoader.min.js",
- "entry": "./legacy/legacy-objFileLoader.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.stlFileLoader.min.js",
- "entry": "./legacy/legacy-stlFileLoader.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.glTF1FileLoader.min.js",
- "entry": "./legacy/legacy-glTF1FileLoader.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.glTF2FileLoader.min.js",
- "entry": "./legacy/legacy-glTF2FileLoader.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.glTFFileLoader.min.js",
- "entry": "./legacy/legacy-glTFFileLoader.ts",
- "preventLoadLibrary": true
- }
- ],
- "build": {
- "webpack": "../../../loaders/webpack.config.js",
- "srcDirectory": "../../loaders/src/",
- "distOutputDirectory": "/loaders/",
- "dtsBundle": {
- "name": "babylonjs-loaders",
- "main": "../../dist/preview release/loaders/build/src/index.d.ts",
- "out": "../babylonjs.loaders.module.d.ts",
- "baseDir": "../../dist/preview release/loaders/build/",
- "headerText": "BabylonJS Loaders"
- },
- "processDeclaration": {
- "filename": "babylonjs.loaders.module.d.ts",
- "packageName": "babylonjs-loaders",
- "moduleName": "BABYLON",
- "moduleSpecifics": [
- {
- "path": "babylonjs-loaders/src/glTF/1.0",
- "namespace": "BABYLON.GLTF1"
- },
- {
- "path": "babylonjs-loaders/src/glTF/2.0",
- "namespace": "BABYLON.GLTF2"
- },
- {
- "path": "babylonjs-loaders/src/glTF/2.0/glTFLoaderInterfaces",
- "namespace": "BABYLON.GLTF2.Loader"
- },
- {
- "path": "babylonjs-loaders/src/glTF/2.0/Extensions",
- "namespace": "BABYLON.GLTF2.Loader.Extensions"
- }
- ],
- "importsToRemove": [],
- "classMap": {
- "babylonjs": "BABYLON",
- "babylonjs-gltf2interface": "BABYLON.GLTF2"
- }
- }
- }
- },
- "serializers": {
- "libraries": [
- {
- "output": "babylonjs.serializers.min.js",
- "entry": "./legacy/legacy.ts"
- },
- {
- "output": "babylon.objSerializer.min.js",
- "entry": "./legacy/legacy-objSerializer.ts",
- "preventLoadLibrary": true
- },
- {
- "output": "babylon.glTF2Serializer.min.js",
- "entry": "./legacy/legacy-glTF2Serializer.ts",
- "preventLoadLibrary": true
- }
- ],
- "build": {
- "webpack": "../../../serializers/webpack.config.js",
- "srcDirectory": "../../serializers/src/",
- "distOutputDirectory": "/serializers/",
- "dtsBundle": {
- "name": "babylonjs-serializers",
- "main": "../../dist/preview release/serializers/build/src/index.d.ts",
- "out": "../babylonjs.serializers.module.d.ts",
- "baseDir": "../../dist/preview release/serializers/build/",
- "headerText": "BabylonJS serializers"
- },
- "processDeclaration": {
- "filename": "babylonjs.serializers.module.d.ts",
- "packageName": "babylonjs-serializers",
- "moduleName": "BABYLON",
- "importsToRemove": [],
- "classMap": {
- "babylonjs": "BABYLON",
- "babylonjs-loaders": "BABYLON",
- "babylonjs-serializers": "BABYLON",
- "babylonjs-gltf2interface": "BABYLON.GLTF2"
- },
- "moduleSpecifics": [
- {
- "path": "babylonjs-serializers/src/glTF/2.0",
- "namespace": "BABYLON.GLTF2.Exporter"
- },
- {
- "path": "babylonjs-serializers/src/glTF/2.0/Extensions",
- "namespace": "BABYLON.GLTF2.Exporter.Extensions"
- },
- {
- "path": "babylonjs-serializers/src/glTF/2.0/glTFData",
- "namespace": "BABYLON"
- },
- {
- "path": "babylonjs-serializers/src/glTF/2.0/glTFSerializer",
- "namespace": "BABYLON"
- }
- ]
- }
- }
- },
- "gui": {
- "libraries": [
- {
- "output": "babylon.gui.min.js",
- "entry": "././legacy/legacy.ts"
- }
- ],
- "build": {
- "webpack": "../../../gui/webpack.config.js",
- "srcDirectory": "../../gui/src/",
- "distOutputDirectory": "/gui/",
- "dtsBundle": {
- "name": "babylonjs-gui",
- "main": "../../dist/preview release/gui/build/src/index.d.ts",
- "out": "../babylon.gui.module.d.ts",
- "baseDir": "../../dist/preview release/gui/build/",
- "headerText": "BabylonJS GUI"
- },
- "processDeclaration": {
- "filename": "babylon.gui.module.d.ts",
- "packageName": "babylonjs-gui",
- "moduleName": "BABYLON.GUI",
- "importsToRemove": [],
- "classMap": {
- "babylonjs": "BABYLON",
- "babylonjs-loaders": "BABYLON",
- "babylonjs-serializers": "BABYLON"
- }
- }
- }
- },
- "inspector": {
- "libraries": [
- {
- "output": "babylon.inspector.bundle.js",
- "entry": "././legacy/legacy.ts",
- "extendsRoot": true
- }
- ],
- "build": {
- "webpack": "../../../inspector/webpack.config.js",
- "srcDirectory": "../../inspector/src/",
- "distOutputDirectory": "/inspector/",
- "dtsBundle": {
- "name": "babylonjs-inspector",
- "main": "../../dist/preview release/inspector/build/src/index.d.ts",
- "out": "../babylon.inspector.module.d.ts",
- "baseDir": "../../dist/preview release/inspector/build/",
- "headerText": "BabylonJS Inspector"
- },
- "processDeclaration": {
- "filename": "babylon.inspector.module.d.ts",
- "packageName": "babylonjs-inspector",
- "moduleName": "INSPECTOR",
- "importsToRemove": [],
- "classMap": {
- "babylonjs": "BABYLON",
- "babylonjs-loaders": "BABYLON",
- "babylonjs-serializers": "BABYLON",
- "babylonjs-gui": "BABYLON.GUI"
- }
- }
- }
- },
- "viewer": {
- "libraries": [
- {
- "output": "babylon.viewer.js",
- "moduleDeclaration": {
- "name": "BabylonViewer",
- "module": "babylonjs-viewer"
- },
- "preventLoadLibrary": true
- }
- ],
- "build": {
- "webpack": "../../../Viewer/webpack.gulp.config.js",
- "srcDirectory": "../../Viewer/src/",
- "distOutputDirectory": "/viewer/",
- "dtsBundle": {
- "name": "babylonjs-viewer",
- "main": "../../dist/preview release/viewer/build/src/index.d.ts",
- "out": "../../babylon.viewer.module.d.ts"
- },
- "processDeclaration": {
- "packageName": "babylonjs-viewer",
- "moduleName": "BabylonViewer",
- "doNotAppendNamespace": true,
- "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",
- "importsToRemove": [
- "pep",
- "babylonjs-loaders"
- ],
- "classMap": {
- "babylonjs": "BABYLON",
- "babylonjs-loaders": "BABYLON"
- }
- },
- "outputs": [
- {
- "destinations": [
- {
- "filename": "viewer.js",
- "outputDirectory": "/../../Viewer/dist/"
- },
- {
- "filename": "babylon.viewer.js",
- "outputDirectory": "/viewer/",
- "addBabylonDeclaration": [
- "babylon.d.ts",
- "loaders/babylonjs.loaders.d.ts",
- "glTF2Interface/babylon.glTF2Interface.d.ts"
- ]
- }
- ],
- "minified": true
- },
- {
- "destinations": [
- {
- "filename": "viewer.max.js",
- "outputDirectory": "/../../Viewer/dist/"
- },
- {
- "filename": "babylon.viewer.max.js",
- "outputDirectory": "/viewer/"
- }
- ]
- }
- ]
- }
- },
- "viewer-assets": {
- "libraries": [
- {
- "output": "babylon.viewer.assets.js",
- "moduleDeclaration": {
- "name": "BabylonViewerAssets",
- "module": "babylonjs-viewer-assets"
- },
- "preventLoadLibrary": true
- }
- ],
- "build": {
- "webpack": "../../../Viewer/webpack.assets.config.js",
- "srcDirectory": "../../Viewer/src/",
- "distOutputDirectory": "/viewer/",
- "dtsBundle": {
- "name": "babylonjs-viewer-assets",
- "main": "../../dist/preview release/viewer/build/src/assets/index.d.ts",
- "out": "../../../../../../Viewer/build/assets/babylon.viewer.assets.module.d.ts"
- },
- "outputs": [
- {
- "destinations": [
- {
- "filename": "babylon.viewer.assets.js",
- "outputDirectory": "/../../Viewer/build/assets/"
- }
- ],
- "minified": true
- }
- ]
- }
- }
- }
|