David Catuhe dd74ea9825 First nightly with new module support 7 gadi atpakaļ
..
babylon.asciiArtPostProcess.d.ts 97c5d80016 fixed #2982!!!!!!! 7 gadi atpakaļ
babylon.asciiArtPostProcess.js 2c79a068d4 Nightly 7 gadi atpakaļ
babylon.asciiArtPostProcess.min.js ac539e9934 Minor fix to set parent of node to check if parent has children, and commented code. 7 gadi atpakaļ
babylon.digitalRainPostProcess.d.ts 97c5d80016 fixed #2982!!!!!!! 7 gadi atpakaļ
babylon.digitalRainPostProcess.js 2c79a068d4 Nightly 7 gadi atpakaļ
babylon.digitalRainPostProcess.min.js ac539e9934 Minor fix to set parent of node to check if parent has children, and commented code. 7 gadi atpakaļ
babylonjs.postProcess.js 2aaaa340a1 Nightly 7 gadi atpakaļ
babylonjs.postProcess.min.js ac539e9934 Minor fix to set parent of node to check if parent has children, and commented code. 7 gadi atpakaļ
babylonjs.postProcess.module.d.ts dd74ea9825 First nightly with new module support 7 gadi atpakaļ
package.json d0ee77de23 3.2.0-alpha0 7 gadi atpakaļ
readme.md 2561068aad Small error in the readme files of the submodules. 7 gadi atpakaļ

readme.md

Babylon.js Post Processes Library

For usage documentation please visit http://doc.babylonjs.com/extensions and choose "post process library".

Installation instructions

CDN

Compiled js files (minified and source) are offered on our public CDN here:

NPM

To install using npm :

npm install --save babylonjs babylonjs-post-process

If using TypeScript, the typing needs to be added to tsconfig.json:

    ....
    "types": [
        "babylonjs",
        "babylonjs-post-process",
        "oneMoreDependencyThatIReallyNeed"
    ],
    ....

Afterwards it can be imported to the project using:

import * as BABYLON from 'babylonjs';
import 'babylonjs-post-process';

This will extend Babylon's namespace with the post processes available:

// Some awesome code
// Creates the post process
let postProcess = new BABYLON.AsciiArtPostProcess("AsciiArt", camera);
// Some more awesome code

Using webpack to package your project will use the minified js file.