sebastien a23f964d8d Dist 6 年之前
..
babylon.asciiArtPostProcess.js.map a23f964d8d Dist 6 年之前
babylon.asciiArtpostProcess.js a23f964d8d Dist 6 年之前
babylon.asciiArtpostProcess.min.js a23f964d8d Dist 6 年之前
babylon.asciiArtpostProcess.min.js.map a23f964d8d Dist 6 年之前
babylon.digitalRainPostProcess.js a23f964d8d Dist 6 年之前
babylon.digitalRainPostProcess.js.map a23f964d8d Dist 6 年之前
babylon.digitalRainPostProcess.min.js a23f964d8d Dist 6 年之前
babylon.digitalRainPostProcess.min.js.map a23f964d8d Dist 6 年之前
babylonjs.postProcess.d.ts f0faefbeba Fix Dts 6 年之前
babylonjs.postProcess.js a23f964d8d Dist 6 年之前
babylonjs.postProcess.js.map a23f964d8d Dist 6 年之前
babylonjs.postProcess.min.js 0db7777268 Factorize pckg.json 6 年之前
babylonjs.postProcess.min.js.map 0db7777268 Factorize pckg.json 6 年之前
babylonjs.postProcess.module.d.ts f0faefbeba Fix Dts 6 年之前
package.json 647775717b Merge 6 年之前
readme.md 2561068aad Small error in the readme files of the submodules. 7 年之前

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.