threepipe
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

index.ts 3.0KB

123456789101112131415161718192021222324252627282930313233343536
  1. export {PerspectiveCamera2, PerspectiveCamera0} from './camera/PerspectiveCamera2'
  2. export {OrthographicCamera2, OrthographicCamera0} from './camera/OrthographicCamera2'
  3. export {CameraView, type ICameraView} from './camera/CameraView'
  4. export {ExtendedShaderMaterial} from './material/ExtendedShaderMaterial'
  5. export {PhysicalMaterial, type PhysicalMaterialEventTypes, MeshStandardMaterial2} from './material/PhysicalMaterial'
  6. export {ShaderMaterial2} from './material/ShaderMaterial2'
  7. export {ObjectShaderMaterial, type ObjectShaderMaterialEventTypes} from './material/ObjectShaderMaterial'
  8. export {UnlitMaterial, type UnlitMaterialEventTypes, MeshBasicMaterial2} from './material/UnlitMaterial'
  9. export {UnlitLineMaterial, type UnlitLineMaterialEventTypes, LineBasicMaterial2} from './material/UnlitLineMaterial'
  10. export {LineMaterial2, type LineMaterial2EventTypes} from './material/LineMaterial2'
  11. export {LegacyPhongMaterial, type PhongMaterialEventTypes} from './material/LegacyPhongMaterial'
  12. export {Mesh2} from './object/Mesh2'
  13. export {BufferGeometry2} from './geometry/BufferGeometry2'
  14. export {AmbientLight2} from './light/AmbientLight2'
  15. export {DirectionalLight2} from './light/DirectionalLight2'
  16. export {HemisphereLight2} from './light/HemisphereLight2'
  17. export {PointLight2} from './light/PointLight2'
  18. export {RectAreaLight2} from './light/RectAreaLight2'
  19. export {SpotLight2} from './light/SpotLight2'
  20. export {iObjectCommons} from './object/iObjectCommons'
  21. export {iCameraCommons} from './object/iCameraCommons'
  22. export {iLightCommons} from './object/iLightCommons'
  23. export {iGeometryCommons} from './geometry/iGeometryCommons'
  24. export {iMaterialCommons} from './material/iMaterialCommons'
  25. export {upgradeTexture} from './ITexture'
  26. export {upgradeWebGLRenderer, setThreeRendererMode} from './IRenderer'
  27. export {RootScene} from './object/RootScene'
  28. export type {ICameraControls, TControlsCtor} from './camera/ICameraControls'
  29. export type {ICamera, ICameraEvent, ICameraEventTypes, ICameraUserData, TCameraControlsMode, ICameraSetDirtyOptions} from './ICamera'
  30. export type {IGeometry, IGeometryUserData, IGeometryEvent, IGeometryEventTypes, IGeometrySetDirtyOptions} from './IGeometry'
  31. export type {IMaterial, IMaterialEvent, IMaterialEventTypes, IMaterialParameters, IMaterialUserData, IMaterialSetDirtyOptions, IMaterialTemplate, IMaterialGenerator} from './IMaterial'
  32. export type {IObject3D, IObject3DEvent, IObjectSetDirtyOptions, IObjectProcessor, IObject3DEventTypes, IObject3DUserData} from './IObject'
  33. export type {IRenderManager, IRenderManagerOptions, IWebGLRenderer, IRenderManagerEventTypes, IAnimationLoopEvent, TThreeRendererMode, TThreeRendererModeUserData, IRenderManagerUpdateEvent, IRenderManagerEvent, RendererBlitOptions} from './IRenderer'
  34. export type {IScene, ISceneEvent, ISceneEventTypes, ISceneSetDirtyOptions, AddObjectOptions, ISceneUserData, IWidget} from './IScene'
  35. export type {ITexture, ITextureUserData, ITextureEvent, ITextureEventTypes} from './ITexture'
  36. export type {ILight, ILightEvent, ILightEventTypes} from './light/ILight'