threepipe
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Rhino3dmLoadPlugin.ts 472B

пре 2 година
пре 2 година
1234567891011
  1. import {Importer, Rhino3dmLoader2} from '../../assetmanager'
  2. import {BaseImporterPlugin} from '../base/BaseImporterPlugin'
  3. /**
  4. * Adds support for loading Rhino `.3dm`, `model/vnd.3dm`, `model/3dm` files and data uris.
  5. * @category Plugins
  6. */
  7. export class Rhino3dmLoadPlugin extends BaseImporterPlugin {
  8. public static readonly PluginType = 'Rhino3dmLoadPlugin'
  9. protected _importer = new Importer(Rhino3dmLoader2, ['3dm'], ['model/vnd.3dm', 'model/3dm'], true)
  10. }