threepipe
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

index.ts 2.2KB

123456789101112131415161718192021222324
  1. export {PerspectiveCamera2} from './camera/PerspectiveCamera2'
  2. export {CameraView, type ICameraView} from './camera/CameraView'
  3. export {ExtendedShaderMaterial} from './material/ExtendedShaderMaterial'
  4. export {PhysicalMaterial, type PhysicalMaterialEventTypes, MeshStandardMaterial2} from './material/PhysicalMaterial'
  5. export {ShaderMaterial2} from './material/ShaderMaterial2'
  6. export {UnlitMaterial, type UnlitMaterialEventTypes, MeshBasicMaterial2} from './material/UnlitMaterial'
  7. export {UnlitLineMaterial, type UnlitLineMaterialEventTypes, LineBasicMaterial2} from './material/UnlitLineMaterial'
  8. export {LineMaterial2, type LineMaterial2EventTypes} from './material/LineMaterial2'
  9. export {LegacyPhongMaterial, type PhongMaterialEventTypes} from './material/LegacyPhongMaterial'
  10. export {iObjectCommons} from './object/iObjectCommons'
  11. export {iCameraCommons} from './object/iCameraCommons'
  12. export {iGeometryCommons} from './geometry/iGeometryCommons'
  13. export {iMaterialCommons} from './material/iMaterialCommons'
  14. export {upgradeTexture} from './ITexture'
  15. export {upgradeWebGLRenderer} from './IRenderer'
  16. export {RootScene} from './object/RootScene'
  17. export type {ICameraControls, TControlsCtor} from './camera/ICameraControls'
  18. export type {ICamera, ICameraEvent, ICameraEventTypes, ICameraUserData, TCameraControlsMode, ICameraSetDirtyOptions} from './ICamera'
  19. export type {IGeometry, IGeometryUserData, IGeometryEvent, IGeometryEventTypes, IGeometrySetDirtyOptions} from './IGeometry'
  20. export type {IMaterial, IMaterialEvent, IMaterialEventTypes, IMaterialParameters, IMaterialUserData, IMaterialSetDirtyOptions, IMaterialTemplate, IMaterialGenerator} from './IMaterial'
  21. export type {IObject3D, IObject3DEvent, IObjectSetDirtyOptions, IObjectProcessor, IObject3DEventTypes, IObject3DUserData} from './IObject'
  22. export type {IRenderManager, IRenderManagerOptions, IWebGLRenderer, IRenderManagerEventTypes, IAnimationLoopEvent, TThreeRendererMode, TThreeRendererModeUserData, IRenderManagerUpdateEvent, IRenderManagerEvent} from './IRenderer'
  23. export type {IScene, ISceneEvent, ISceneEventTypes, ISceneSetDirtyOptions, AddObjectOptions, ISceneUserData, IWidget} from './IScene'
  24. export type {ITexture, ITextureUserData, ITextureEvent, ITextureEventTypes} from './ITexture'