environmentMapConfiguration.ts 482 B

123456789101112131415161718192021
  1. export interface IEnvironmentMapConfiguration {
  2. /**
  3. * Environment map texture path in relative to the asset folder.
  4. */
  5. texture: string;
  6. /**
  7. * Default rotation to apply to the environment map.
  8. */
  9. rotationY: number;
  10. /**
  11. * Tint level of the main color on the environment map.
  12. */
  13. tintLevel: number;
  14. /**
  15. * The environment's main color.
  16. */
  17. mainColor?: { r?: number, g?: number, b?: number };
  18. }