KHR_mesh_quantization.d.ts 617 B

123456789101112131415161718192021
  1. import type { IGLTFLoaderExtension } from "../glTFLoaderExtension";
  2. import { GLTFLoader } from "../glTFLoader";
  3. /**
  4. * [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_mesh_quantization/README.md)
  5. */
  6. export declare class KHR_mesh_quantization implements IGLTFLoaderExtension {
  7. /**
  8. * The name of this extension.
  9. */
  10. readonly name = "KHR_mesh_quantization";
  11. /**
  12. * Defines whether this extension is enabled.
  13. */
  14. enabled: boolean;
  15. /**
  16. * @internal
  17. */
  18. constructor(loader: GLTFLoader);
  19. /** @internal */
  20. dispose(): void;
  21. }