12345678910111213141516171819 |
- import type { PrePassEffectConfiguration } from "./prePassEffectConfiguration";
- /**
- * Contains all parameters needed for the prepass to perform
- * motion blur
- */
- export declare class MotionBlurConfiguration implements PrePassEffectConfiguration {
- /**
- * Is motion blur enabled
- */
- enabled: boolean;
- /**
- * Name of the configuration
- */
- name: string;
- /**
- * Textures that should be present in the MRT for this effect to work
- */
- readonly texturesRequired: number[];
- }
|