GLTFTextureDDSExtension constructor

GLTFTextureDDSExtension(
  1. dynamic ddsLoader
)

Implementation

GLTFTextureDDSExtension(ddsLoader) {
  if (!ddsLoader) {
    throw ('THREE.GLTFLoader: Attempting to load .dds texture without importing DDSLoader');
  }

  this.ddsLoader = ddsLoader;
}