Abstract base class for block based textures loader (dds, pvr, ...). This uses the FileLoader internally for loading files.
See the DDSLoader and PVRLoader for examples of derived classes.
manager — The loadingManager for the loader to use.
Default is v3d.DefaultLoadingManager.
Creates a new CompressedTextureLoader.
See the base Loader class for common properties.
See the base Loader class for common methods.
url — the path or URL to the file. This can also be a
Data URI.
onLoad — Will be called when load completes. The argument will be the loaded texture.
onProgress — Will be called while load progresses. The argument will be the XMLHttpRequest instance, which contains .total and .loaded bytes.
onError — Will be called when load errors.
Begin loading from url and pass the loaded texture to onLoad.
For more info on how to obtain the source code of this module see this page.