threepipe
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

index.ts 1.6KB

12345678910111213141516171819202122232425262728293031323334
  1. // base
  2. export {PipelinePassPlugin} from './base/PipelinePassPlugin'
  3. // pipeline
  4. export {ProgressivePlugin} from './pipeline/ProgressivePlugin'
  5. export {DepthBufferPlugin} from './pipeline/DepthBufferPlugin'
  6. export {NormalBufferPlugin} from './pipeline/NormalBufferPlugin'
  7. export {FrameFadePlugin, type FrameFadePluginEventTypes} from './pipeline/FrameFadePlugin'
  8. export type {ProgressivePluginEventTypes, ProgressivePluginTarget} from './pipeline/ProgressivePlugin'
  9. export type {DepthBufferPluginEventTypes, DepthBufferPluginPass, DepthBufferPluginTarget} from './pipeline/DepthBufferPlugin'
  10. export type {NormalBufferPluginEventTypes, NormalBufferPluginPass, NormalBufferPluginTarget} from './pipeline/NormalBufferPlugin'
  11. // ui
  12. export {RenderTargetPreviewPlugin} from './ui/RenderTargetPreviewPlugin'
  13. export {ViewerUiConfigPlugin} from './ui/ViewerUiConfigPlugin'
  14. export {SceneUiConfigPlugin} from './ui/SceneUiConfigPlugin'
  15. // interaction
  16. export {DropzonePlugin, type DropzonePluginOptions} from './interaction/DropzonePlugin'
  17. export {FullScreenPlugin} from './interaction/FullScreenPlugin'
  18. // import
  19. export {Rhino3dmLoadPlugin} from './import/Rhino3dmLoadPlugin'
  20. export {PLYLoadPlugin} from './import/PLYLoadPlugin'
  21. export {STLLoadPlugin} from './import/STLLoadPlugin'
  22. export {KTXLoadPlugin} from './import/KTXLoadPlugin'
  23. export {KTX2LoadPlugin} from './import/KTX2LoadPlugin'
  24. // postprocessing
  25. export {TonemapPlugin} from './postprocessing/TonemapPlugin'
  26. // animation
  27. export {GLTFAnimationPlugin} from './animation/GLTFAnimationPlugin'
  28. export {PopmotionPlugin} from './animation/PopmotionPlugin'