babylonjs-post-process 5.0.0 → 5.0.3
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.
|
@@ -13,7 +13,7 @@ declare module BABYLON {
|
|
|
13
13
|
* It basically takes care rendering the font front the given font size to a texture.
|
|
14
14
|
* This is used later on in the postprocess.
|
|
15
15
|
*/
|
|
16
|
-
export class AsciiArtFontTexture extends
|
|
16
|
+
export class AsciiArtFontTexture extends BaseTexture {
|
|
17
17
|
private _font;
|
|
18
18
|
private _text;
|
|
19
19
|
private _charSize;
|
|
@@ -83,7 +83,7 @@ declare module BABYLON {
|
|
|
83
83
|
* Simmply add it to your scene and let the nerd that lives in you have fun.
|
|
84
84
|
* Example usage: var pp = new AsciiArtPostProcess("myAscii", "20px Monospace", camera);
|
|
85
85
|
*/
|
|
86
|
-
export class AsciiArtPostProcess extends
|
|
86
|
+
export class AsciiArtPostProcess extends PostProcess {
|
|
87
87
|
/**
|
|
88
88
|
* The font texture used to render the char in the post process.
|
|
89
89
|
*/
|
|
@@ -124,7 +124,7 @@ declare module BABYLON {
|
|
|
124
124
|
* It basically takes care rendering the font front the given font size to a texture.
|
|
125
125
|
* This is used later on in the postprocess.
|
|
126
126
|
*/
|
|
127
|
-
export class DigitalRainFontTexture extends
|
|
127
|
+
export class DigitalRainFontTexture extends BaseTexture {
|
|
128
128
|
private _font;
|
|
129
129
|
private _text;
|
|
130
130
|
private _charSize;
|
|
@@ -190,7 +190,7 @@ declare module BABYLON {
|
|
|
190
190
|
* Simmply add it to your scene and let the nerd that lives in you have fun.
|
|
191
191
|
* Example usage: var pp = new DigitalRainPostProcess("digitalRain", "20px Monospace", camera);
|
|
192
192
|
*/
|
|
193
|
-
export class DigitalRainPostProcess extends
|
|
193
|
+
export class DigitalRainPostProcess extends PostProcess {
|
|
194
194
|
/**
|
|
195
195
|
* The font texture used to render the char in the post process.
|
|
196
196
|
*/
|
|
@@ -280,7 +280,7 @@ declare module BABYLON {
|
|
|
280
280
|
* It basically takes care rendering the font front the given font size to a texture.
|
|
281
281
|
* This is used later on in the postprocess.
|
|
282
282
|
*/
|
|
283
|
-
export class AsciiArtFontTexture extends
|
|
283
|
+
export class AsciiArtFontTexture extends BaseTexture {
|
|
284
284
|
private _font;
|
|
285
285
|
private _text;
|
|
286
286
|
private _charSize;
|
|
@@ -350,7 +350,7 @@ declare module BABYLON {
|
|
|
350
350
|
* Simmply add it to your scene and let the nerd that lives in you have fun.
|
|
351
351
|
* Example usage: var pp = new AsciiArtPostProcess("myAscii", "20px Monospace", camera);
|
|
352
352
|
*/
|
|
353
|
-
export class AsciiArtPostProcess extends
|
|
353
|
+
export class AsciiArtPostProcess extends PostProcess {
|
|
354
354
|
/**
|
|
355
355
|
* The font texture used to render the char in the post process.
|
|
356
356
|
*/
|
|
@@ -391,7 +391,7 @@ declare module BABYLON {
|
|
|
391
391
|
* It basically takes care rendering the font front the given font size to a texture.
|
|
392
392
|
* This is used later on in the postprocess.
|
|
393
393
|
*/
|
|
394
|
-
export class DigitalRainFontTexture extends
|
|
394
|
+
export class DigitalRainFontTexture extends BaseTexture {
|
|
395
395
|
private _font;
|
|
396
396
|
private _text;
|
|
397
397
|
private _charSize;
|
|
@@ -457,7 +457,7 @@ declare module BABYLON {
|
|
|
457
457
|
* Simmply add it to your scene and let the nerd that lives in you have fun.
|
|
458
458
|
* Example usage: var pp = new DigitalRainPostProcess("digitalRain", "20px Monospace", camera);
|
|
459
459
|
*/
|
|
460
|
-
export class DigitalRainPostProcess extends
|
|
460
|
+
export class DigitalRainPostProcess extends PostProcess {
|
|
461
461
|
/**
|
|
462
462
|
* The font texture used to render the char in the post process.
|
|
463
463
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-post-process",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.3",
|
|
4
4
|
"main": "babylonjs.postProcess.min.js",
|
|
5
5
|
"types": "babylonjs.postProcess.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.*"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^5.0.
|
|
17
|
+
"babylonjs": "^5.0.3"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|