We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5310a0 commit 0546503Copy full SHA for 0546503
types/index.d.ts
@@ -5206,7 +5206,7 @@ declare module "postprocessing" {
5206
color,
5207
inverted
5208
}?: {
5209
- asciiTexture?: ASCIITexture;
+ asciiTexture?: ASCIITexture | null;
5210
cellSize?: number;
5211
color?: Color | string | number | null;
5212
inverted?: boolean;
@@ -5217,8 +5217,8 @@ declare module "postprocessing" {
5217
*
5218
* @type {ASCIITexture}
5219
*/
5220
- get asciiTexture(): ASCIITexture;
5221
- set asciiTexture(value: ASCIITexture);
+ get asciiTexture(): ASCIITexture | null;
+ set asciiTexture(value: ASCIITexture | null);
5222
/**
5223
* A color that overrides the scene colors.
5224
0 commit comments