babylonjs-post-process 5.22.1 → 5.24.0
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/babylon.asciiArtPostProcess.js +4 -4
- package/babylon.asciiArtPostProcess.js.map +1 -1
- package/babylon.asciiArtPostProcess.min.js.map +1 -1
- package/babylon.digitalRainPostProcess.js +4 -4
- package/babylon.digitalRainPostProcess.js.map +1 -1
- package/babylon.digitalRainPostProcess.min.js.map +1 -1
- package/babylonjs.postProcess.d.ts +8 -8
- package/babylonjs.postProcess.js +8 -8
- package/babylonjs.postProcess.js.map +1 -1
- package/babylonjs.postProcess.min.js.map +1 -1
- package/babylonjs.postProcess.module.d.ts +16 -16
- package/package.json +2 -2
|
@@ -40,25 +40,25 @@ export class AsciiArtFontTexture extends BaseTexture {
|
|
|
40
40
|
/**
|
|
41
41
|
* Gets the max char width of a font.
|
|
42
42
|
* @param font the font to use, use the W3C CSS notation
|
|
43
|
-
* @
|
|
43
|
+
* @returns the max char width
|
|
44
44
|
*/
|
|
45
45
|
private _getFontWidth;
|
|
46
46
|
/**
|
|
47
47
|
* Gets the max char height of a font.
|
|
48
48
|
* @param font the font to use, use the W3C CSS notation
|
|
49
|
-
* @
|
|
49
|
+
* @returns the max char height
|
|
50
50
|
*/
|
|
51
51
|
private _getFontHeight;
|
|
52
52
|
/**
|
|
53
53
|
* Clones the current AsciiArtTexture.
|
|
54
|
-
* @
|
|
54
|
+
* @returns the clone of the texture.
|
|
55
55
|
*/
|
|
56
56
|
clone(): AsciiArtFontTexture;
|
|
57
57
|
/**
|
|
58
58
|
* Parses a json object representing the texture and returns an instance of it.
|
|
59
59
|
* @param source the source JSON representation
|
|
60
60
|
* @param scene the scene to create the texture for
|
|
61
|
-
* @
|
|
61
|
+
* @returns the parsed texture
|
|
62
62
|
*/
|
|
63
63
|
static Parse(source: any, scene: Scene): AsciiArtFontTexture;
|
|
64
64
|
}
|
|
@@ -162,25 +162,25 @@ export class DigitalRainFontTexture extends BaseTexture {
|
|
|
162
162
|
/**
|
|
163
163
|
* Gets the max char width of a font.
|
|
164
164
|
* @param font the font to use, use the W3C CSS notation
|
|
165
|
-
* @
|
|
165
|
+
* @returns the max char width
|
|
166
166
|
*/
|
|
167
167
|
private _getFontWidth;
|
|
168
168
|
/**
|
|
169
169
|
* Gets the max char height of a font.
|
|
170
170
|
* @param font the font to use, use the W3C CSS notation
|
|
171
|
-
* @
|
|
171
|
+
* @returns the max char height
|
|
172
172
|
*/
|
|
173
173
|
private _getFontHeight;
|
|
174
174
|
/**
|
|
175
175
|
* Clones the current DigitalRainFontTexture.
|
|
176
|
-
* @
|
|
176
|
+
* @returns the clone of the texture.
|
|
177
177
|
*/
|
|
178
178
|
clone(): DigitalRainFontTexture;
|
|
179
179
|
/**
|
|
180
180
|
* Parses a json object representing the texture and returns an instance of it.
|
|
181
181
|
* @param source the source JSON representation
|
|
182
182
|
* @param scene the scene to create the texture for
|
|
183
|
-
* @
|
|
183
|
+
* @returns the parsed texture
|
|
184
184
|
*/
|
|
185
185
|
static Parse(source: any, scene: Scene): DigitalRainFontTexture;
|
|
186
186
|
}
|
|
@@ -299,25 +299,25 @@ declare module BABYLON {
|
|
|
299
299
|
/**
|
|
300
300
|
* Gets the max char width of a font.
|
|
301
301
|
* @param font the font to use, use the W3C CSS notation
|
|
302
|
-
* @
|
|
302
|
+
* @returns the max char width
|
|
303
303
|
*/
|
|
304
304
|
private _getFontWidth;
|
|
305
305
|
/**
|
|
306
306
|
* Gets the max char height of a font.
|
|
307
307
|
* @param font the font to use, use the W3C CSS notation
|
|
308
|
-
* @
|
|
308
|
+
* @returns the max char height
|
|
309
309
|
*/
|
|
310
310
|
private _getFontHeight;
|
|
311
311
|
/**
|
|
312
312
|
* Clones the current AsciiArtTexture.
|
|
313
|
-
* @
|
|
313
|
+
* @returns the clone of the texture.
|
|
314
314
|
*/
|
|
315
315
|
clone(): AsciiArtFontTexture;
|
|
316
316
|
/**
|
|
317
317
|
* Parses a json object representing the texture and returns an instance of it.
|
|
318
318
|
* @param source the source JSON representation
|
|
319
319
|
* @param scene the scene to create the texture for
|
|
320
|
-
* @
|
|
320
|
+
* @returns the parsed texture
|
|
321
321
|
*/
|
|
322
322
|
static Parse(source: any, scene: Scene): AsciiArtFontTexture;
|
|
323
323
|
}
|
|
@@ -410,25 +410,25 @@ declare module BABYLON {
|
|
|
410
410
|
/**
|
|
411
411
|
* Gets the max char width of a font.
|
|
412
412
|
* @param font the font to use, use the W3C CSS notation
|
|
413
|
-
* @
|
|
413
|
+
* @returns the max char width
|
|
414
414
|
*/
|
|
415
415
|
private _getFontWidth;
|
|
416
416
|
/**
|
|
417
417
|
* Gets the max char height of a font.
|
|
418
418
|
* @param font the font to use, use the W3C CSS notation
|
|
419
|
-
* @
|
|
419
|
+
* @returns the max char height
|
|
420
420
|
*/
|
|
421
421
|
private _getFontHeight;
|
|
422
422
|
/**
|
|
423
423
|
* Clones the current DigitalRainFontTexture.
|
|
424
|
-
* @
|
|
424
|
+
* @returns the clone of the texture.
|
|
425
425
|
*/
|
|
426
426
|
clone(): DigitalRainFontTexture;
|
|
427
427
|
/**
|
|
428
428
|
* Parses a json object representing the texture and returns an instance of it.
|
|
429
429
|
* @param source the source JSON representation
|
|
430
430
|
* @param scene the scene to create the texture for
|
|
431
|
-
* @
|
|
431
|
+
* @returns the parsed texture
|
|
432
432
|
*/
|
|
433
433
|
static Parse(source: any, scene: Scene): DigitalRainFontTexture;
|
|
434
434
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-post-process",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.24.0",
|
|
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.
|
|
17
|
+
"babylonjs": "^5.24.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|