12345678910111213141516171819202122 |
- /**
- * Contains all parameters needed for the prepass to perform
- * motion blur
- */
- export class MotionBlurConfiguration {
- constructor() {
- /**
- * Is motion blur enabled
- */
- this.enabled = false;
- /**
- * Name of the configuration
- */
- this.name = "motionBlur";
- /**
- * Textures that should be present in the MRT for this effect to work
- */
- this.texturesRequired = [2];
- }
- }
- //# sourceMappingURL=motionBlurConfiguration.js.map
|