babylonjs-post-process 5.0.0-beta.6 → 5.0.0-beta.8-snapshot

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/readme.md DELETED
@@ -1,51 +0,0 @@
1
- Babylon.js Post Processes Library
2
- =====================
3
-
4
- For usage documentation please visit http://doc.babylonjs.com/extensions and choose "post process library".
5
-
6
- # Installation instructions
7
-
8
- ## CDN
9
-
10
- Compiled js files (minified and source) are offered on our public CDN here:
11
-
12
- * https://preview.babylonjs.com/postProcessesLibrary/babylonjs.postProcess.js
13
- * https://preview.babylonjs.com/postProcessesLibrary/babylonjs.postProcess.min.js
14
-
15
- ## NPM
16
-
17
- To install using npm :
18
-
19
- ```
20
- npm install --save babylonjs babylonjs-post-process
21
- ```
22
-
23
- If using TypeScript, the typing needs to be added to tsconfig.json:
24
-
25
- ```
26
- ....
27
- "types": [
28
- "babylonjs",
29
- "babylonjs-post-process",
30
- "oneMoreDependencyThatIReallyNeed"
31
- ],
32
- ....
33
- ```
34
-
35
- Afterwards it can be imported to the project using:
36
-
37
- ```
38
- import * as BABYLON from 'babylonjs';
39
- import 'babylonjs-post-process';
40
- ```
41
-
42
- This will extend Babylon's namespace with the post processes available:
43
-
44
- ```
45
- // Some awesome code
46
- // Creates the post process
47
- let postProcess = new BABYLON.AsciiArtPostProcess("AsciiArt", camera);
48
- // Some more awesome code
49
- ```
50
-
51
- Using webpack to package your project will use the minified js file.