motionBlurConfiguration.d.ts 517 B

12345678910111213141516171819
  1. import type { PrePassEffectConfiguration } from "./prePassEffectConfiguration";
  2. /**
  3. * Contains all parameters needed for the prepass to perform
  4. * motion blur
  5. */
  6. export declare class MotionBlurConfiguration implements PrePassEffectConfiguration {
  7. /**
  8. * Is motion blur enabled
  9. */
  10. enabled: boolean;
  11. /**
  12. * Name of the configuration
  13. */
  14. name: string;
  15. /**
  16. * Textures that should be present in the MRT for this effect to work
  17. */
  18. readonly texturesRequired: number[];
  19. }