Christopher Stock 9f52a66941 Fixed minor TypeScript typing errors that occurred on upgrading to 7 vuotta sitten
..
babylon.asciiArtPostProcess.d.ts eb720ae1d7 Nightly 7 vuotta sitten
babylon.asciiArtPostProcess.js 9f52a66941 Fixed minor TypeScript typing errors that occurred on upgrading to 7 vuotta sitten
babylon.asciiArtPostProcess.min.js 9f52a66941 Fixed minor TypeScript typing errors that occurred on upgrading to 7 vuotta sitten
babylon.digitalRainPostProcess.d.ts eb720ae1d7 Nightly 7 vuotta sitten
babylon.digitalRainPostProcess.js 9f52a66941 Fixed minor TypeScript typing errors that occurred on upgrading to 7 vuotta sitten
babylon.digitalRainPostProcess.min.js 9f52a66941 Fixed minor TypeScript typing errors that occurred on upgrading to 7 vuotta sitten
babylonjs.postProcess.d.ts eb720ae1d7 Nightly 7 vuotta sitten
babylonjs.postProcess.js b93c44f06f Moving all codebase to TS 2.8.1 7 vuotta sitten
babylonjs.postProcess.min.js eb720ae1d7 Nightly 7 vuotta sitten
babylonjs.postProcess.module.d.ts eb720ae1d7 Nightly 7 vuotta sitten
package.json 07ac039007 3.3.0-alpha.15 7 vuotta sitten
readme.md 2561068aad Small error in the readme files of the submodules. 7 vuotta sitten

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.