threepipe
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1 год назад
1234567891011121314151617181920212223242526
  1. ---
  2. prev:
  3. text: 'PLYLoadPlugin'
  4. link: './PLYLoadPlugin'
  5. next:
  6. text: 'STLLoadPlugin'
  7. link: './STLLoadPlugin'
  8. ---
  9. # USDZLoadPlugin
  10. [Example](https://threepipe.org/examples/#usdz-load/) —
  11. [Source Code](https://github.com/repalash/threepipe/blob/master/src/plugins/import/USDZLoadPlugin.ts) —
  12. [API Reference](https://threepipe.org/docs/classes/USDZLoadPlugin.html)
  13. Adds support for loading .usdz and .usda ([Universal Scene Description](https://graphics.pixar.com/usd/docs/index.html)) files.
  14. ```typescript
  15. import {USDZLoadPlugin} from 'threepipe'
  16. viewer.addPluginSync(new USDZLoadPlugin())
  17. const mesh = await viewer.load('file.usdz')
  18. const mesh2 = await viewer.load('file.usda')
  19. ```