@google/model-viewer-effects
Version:
Easily add and combine post-processing effects with <model-viewer>!
14 lines (13 loc) • 447 B
TypeScript
import { $updateProperties, MVEffectBase } from './mixins/effect-base.js';
export declare class MVPixelateEffect extends MVEffectBase {
static get is(): string;
/**
* The pixel granularity. Higher value = lower resolution.
* @default 10
*/
granularity: number;
constructor();
connectedCallback(): void;
updated(changedProperties: Map<string | number | symbol, any>): void;
[$updateProperties](): void;
}