screenSpaceReflections2Configuration.js 575 B

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