motionBlurConfiguration.js 525 B

12345678910111213141516171819202122
  1. /**
  2. * Contains all parameters needed for the prepass to perform
  3. * motion blur
  4. */
  5. export class MotionBlurConfiguration {
  6. constructor() {
  7. /**
  8. * Is motion blur enabled
  9. */
  10. this.enabled = false;
  11. /**
  12. * Name of the configuration
  13. */
  14. this.name = "motionBlur";
  15. /**
  16. * Textures that should be present in the MRT for this effect to work
  17. */
  18. this.texturesRequired = [2];
  19. }
  20. }
  21. //# sourceMappingURL=motionBlurConfiguration.js.map