threepipe
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

KTXLoadPlugin.ts 467B

12345678910111213
  1. import {Importer} from '../../assetmanager'
  2. import {KTXLoader} from 'three/examples/jsm/loaders/KTXLoader.js'
  3. import {BaseImporterPlugin} from '../base/BaseImporterPlugin'
  4. /**
  5. * Adds support for loading `.ktx`, `image/ktx` files and data uris.
  6. * @category Plugins
  7. */
  8. export class KTXLoadPlugin extends BaseImporterPlugin {
  9. public static readonly PluginType = 'KTXLoadPlugin'
  10. protected _importer = new Importer(KTXLoader, ['ktx'], ['image/ktx'], false)
  11. }