David Catuhe b93c44f06f Moving all codebase to TS 2.8.1 7 anni fa
..
babylon.asciiArtPostProcess.d.ts 97c5d80016 fixed #2982!!!!!!! 7 anni fa
babylon.asciiArtPostProcess.js b93c44f06f Moving all codebase to TS 2.8.1 7 anni fa
babylon.asciiArtPostProcess.min.js b93c44f06f Moving all codebase to TS 2.8.1 7 anni fa
babylon.digitalRainPostProcess.d.ts 97c5d80016 fixed #2982!!!!!!! 7 anni fa
babylon.digitalRainPostProcess.js b93c44f06f Moving all codebase to TS 2.8.1 7 anni fa
babylon.digitalRainPostProcess.min.js b93c44f06f Moving all codebase to TS 2.8.1 7 anni fa
babylonjs.postProcess.d.ts 034b01a4b2 presenting declaration dependencies 7 anni fa
babylonjs.postProcess.js b93c44f06f Moving all codebase to TS 2.8.1 7 anni fa
babylonjs.postProcess.min.js 54bd696346 First try to update bone scaling mechanism 7 anni fa
babylonjs.postProcess.module.d.ts 5c4a0ee5e4 Fix fresnel serialization issue 7 anni fa
package.json 0b56aa4ce0 npm update, 3.2.0-beta.4 7 anni fa
readme.md 2561068aad Small error in the readme files of the submodules. 7 anni fa

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.