David Catuhe 721bca9888 nightly 8 년 전
..
babylon.asciiArtPostProcess.d.ts e8ca73d095 Nightly 8 년 전
babylon.asciiArtPostProcess.js 44788457a4 Nightly 8 년 전
babylon.asciiArtPostProcess.min.js 721bca9888 nightly 8 년 전
babylon.digitalRainPostProcess.d.ts e8ca73d095 Nightly 8 년 전
babylon.digitalRainPostProcess.js 44788457a4 Nightly 8 년 전
babylon.digitalRainPostProcess.min.js 721bca9888 nightly 8 년 전
babylonjs.postProcess.js 613af5b1b9 Fix playground bug when dist=true 8 년 전
babylonjs.postProcess.min.js 721bca9888 nightly 8 년 전
babylonjs.postProcess.module.d.ts 386be42463 Missing files for npm packages (generated) 8 년 전
package.json 7d7506145b adding readme.md files to the package json 8 년 전
readme.md 241153b81f Readme files for all modules 8 년 전

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 from '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.