Babylon.js Post Processes Library =====================
npm install babylonjs-post-processBabylon.js Post Processes Library
=====================
For usage documentation please visit https://doc.babylonjs.com/extensions and choose "post process library".
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
``