compatibilityOptions.d.ts 328 B

123456789
  1. /**
  2. * Options used to control default behaviors regarding compatibility support
  3. */
  4. export declare class CompatibilityOptions {
  5. /**
  6. * Defines if the system should use OpenGL convention for UVs when creating geometry or loading .babylon files (false by default)
  7. */
  8. static UseOpenGLOrientationForUV: boolean;
  9. }