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

3 лет назад
3 лет назад
2 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
2 лет назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122
  1. # ThreePipe
  2. A new way to work with three.js, 3D models and rendering on the web.
  3. [ThreePipe](https://threepipe.org/) —
  4. [Github](https://github.com/repalash/threepipe) —
  5. [Examples](https://threepipe.org/examples/) —
  6. [API Reference](https://threepipe.org/docs/) —
  7. [WebGi](https://webgi.xyz/docs/)
  8. [![NPM Package](https://img.shields.io/npm/v/threepipe.svg)](https://www.npmjs.com/package/threepipe)
  9. [![Discord Server](https://img.shields.io/discord/956788102473584660?label=Discord&logo=discord)](https://discord.gg/apzU8rUWxY)
  10. [![License: Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-green.svg)](https://opensource.org/license/apache-2-0/)
  11. [![Twitter](https://img.shields.io/twitter/url/https/twitter.com/repalash.svg?style=social&label=Follow%20%40repalash)](https://twitter.com/repalash)
  12. ThreePipe is a 3D framework built on top of [three.js](https://threejs.org/) in TypeScript with a focus on rendering quality, modularity, and extensibility.
  13. Key features include:
  14. - Simple, intuitive API for creating 3D model viewers/configurators/editors on web pages, with many built-in presets for common workflows and use-cases.
  15. - Companion [editor](https://threepipe.org/examples/tweakpane-editor/) to create, edit and configure 3D scenes in the browser.
  16. - Modular architecture that allows you to easily extend the viewer, scene objects, materials, shaders, rendering, post-processing and serialization with custom functionality.
  17. - Plugin system along with a rich library of built-in plugins that allows you to easily add new features to the viewer.
  18. - [uiconfig](https://github.com/repalash/uiconfig.js) compatibility to automatically generate configuration UIs in the browser.
  19. - Modular rendering pipeline with built-in deferred rendering, post-processing, RGBM HDR rendering, etc.
  20. - Material extension framework to modify/inject/build custom shader code into existing materials at runtime from plugins.
  21. - Extendable asset import, export and management pipeline with built-in support for gltf, glb, obj+mtl, fbx, materials(pmat/bmat), json, zip, png, jpeg, svg, webp, ktx2, ply, 3dm and many more.
  22. - Automatic serialization of all viewer and plugin settings in GLB(with custom extensions) and JSON formats.
  23. - Automatic disposal of all three.js resources with built-in reference management.
  24. ## Examples
  25. Code samples and demos covering various usecases and test are present in the [examples](./examples/) folder.
  26. Try them: https://threepipe.org/examples/
  27. View the source code by pressing the code button on the top left of the example page.
  28. To make changes and run the example, click on the CodePen button on the top right of the source code.
  29. ## Table of Contents
  30. - [ThreePipe](#threepipe)
  31. - [Examples](https://threepipe.org/examples/)
  32. - [Table of Contents](#table-of-contents)
  33. - [Getting Started](#getting-started)
  34. - [HTML/JS Quickstart (CDN)](#htmljs-quickstart-cdn)
  35. - [React](#react)
  36. - [Vue.js](#vuejs)
  37. - [Svelte](#svelte)
  38. - [NPM/YARN Package](#npmyarn)
  39. - [Installation](#installation)
  40. - [Loading a 3D Model](#loading-a-3d-model)
  41. - [License](#license)
  42. - [Status](#status)
  43. - [Documentation (API Reference)](#documentation)
  44. - [WebGi](#webgi)
  45. - [Contributing](#contributing)
  46. - [Features](#features)
  47. - [File Formats](#file-formats)
  48. - [Loading files](#loading-files)
  49. - [3D models](#3d-models)
  50. - [Materials](#materials)
  51. - [Images/Textures](#imagestextures)
  52. - [zip files](#zip-files)
  53. - [txt, json files](#txt-json-files)
  54. - [Data URLs](#data-urls)
  55. - [Local files, File and Blob](#local-files-file-and-blob)
  56. - [Background, Environment maps](#background-environment-maps)
  57. - [SVG strings](#svg-strings)
  58. - [Exporting files](#exporting-files)
  59. - [Exporting 3D models](#exporting-3d-models)
  60. - [Exporting Materials](#exporting-materials)
  61. - [Exporting Canvas Images](#exporting-canvas-images)
  62. - [Exporting Images/Textures](#exporting-imagestextures)
  63. - [Exporting Render Targets](#exporting-render-targets)
  64. - [Render Pipeline](#render-pipeline)
  65. - [Material Extension](#material-extension)
  66. - [UI Configuration](#ui-configuration)
  67. - [Serialization](#serialization)
  68. - [Plugin System](#plugin-system)
  69. - [Viewer API](#viewer-api)
  70. - [ThreeViewer](#threeviewer)
  71. - [RenderManager](#rendermanager)
  72. - [RootScene](#rootscene)
  73. - [ICamera](#icamera)
  74. - [AssetManager](#assetmanager)
  75. - [AssetImporter](#assetimporter)
  76. - [AssetExporter](#assetexporter)
  77. - [MaterialManager](#materialmanager)
  78. - [Other classes and interfaces](#other-classes-and-interfaces)
  79. - [Plugins](#threepipe-plugins)
  80. - [TonemapPlugin](#tonemapplugin) - Add tonemap to the final screen pass
  81. - [DropzonePlugin](#dropzoneplugin) - Drag and drop local files to import and load
  82. - [ProgressivePlugin](#progressiveplugin) - Post-render pass to blend the last frame with the current frame
  83. - [SSAAPlugin](#ssaaplugin) - Add Super Sample Anti-Aliasing by applying jitter to the camera.
  84. - [DepthBufferPlugin](#depthbufferplugin) - Pre-rendering of depth buffer
  85. - [NormalBufferPlugin](#normalbufferplugin) - Pre-rendering of normal buffer
  86. - [GBufferPlugin](#gbufferplugin) - Pre-rendering of depth-normal and flags buffers in a single pass
  87. - [SSAOPlugin](#ssaoplugin) - Add SSAO(Screen Space Ambient Occlusion) for physical materials.
  88. - [CanvasSnapshotPlugin](#canvassnapshotplugin) - Add support for taking snapshots of the canvas
  89. - [PickingPlugin](#pickingplugin) - Adds support for selecting objects in the viewer with user interactions and selection widgets
  90. - [AssetExporterPlugin](#assetexporterplugin) - Provides options and methods to export the scene, object GLB or Viewer Configuration.
  91. - [LoadingScreenPlugin](#loadingscreenplugin) - Shows a configurable loading screen overlay over the canvas.
  92. - [FullScreenPlugin](#fullscreenplugin) - Adds support for moving the canvas or the container fullscreen mode in browsers
  93. - [InteractionPromptPlugin](#interactionpromptplugin) - Adds an animated hand icon over canvas to prompt the user to interact
  94. - [TransformControlsPlugin](#transformcontrolsplugin) - Adds support for moving, rotating and scaling objects in the viewer with interactive widgets
  95. - [ContactShadowGroundPlugin](#contactshadowgroundplugin) - Adds a ground plane at runtime with contact shadows
  96. - [GLTFAnimationPlugin](#gltfanimationplugin) - Add support for playing and seeking gltf animations
  97. - [PopmotionPlugin](#popmotionplugin) - Integrates with popmotion.io library for animation/tweening
  98. - [CameraViewPlugin](#cameraviewplugin) - Add support for saving, loading, animating, looping between camera views
  99. - [RenderTargetPreviewPlugin](#rendertargetpreviewplugin) - Preview any render target in a UI panel over the canvas
  100. - [GeometryUVPreviewPlugin](#geometryuvpreviewplugin) - Preview UVs of any geometry in a UI panel over the canvas
  101. - [FrameFadePlugin](#framefadeplugin) - Post-render pass to smoothly fade to a new rendered frame over time
  102. - [VignettePlugin](#vignetteplugin) - Add Vignette effect by patching the final screen pass
  103. - [ChromaticAberrationPlugin](#chromaticaberrationplugin) - Add Chromatic Aberration effect by patching the final screen pass
  104. - [FilmicGrainPlugin](#filmicgrainplugin) - Add Filmic Grain effect by patching the final screen pass
  105. - [NoiseBumpMaterialPlugin](#noisebumpmaterialplugin) - Sparkle Bump/Noise Bump material extension for PhysicalMaterial
  106. - [CustomBumpMapPlugin](#custombumpmapplugin) - Custom Bump Map material extension for PhysicalMaterial
  107. - [ClearcoatTintPlugin](#clearcoattintplugin) - Clearcoat Tint material extension for PhysicalMaterial
  108. - [FragmentClippingExtensionPlugin](#fragmentclippingextensionplugin) - Fragment/SDF Clipping material extension for PhysicalMaterial
  109. - [ParallaxMappingPlugin](#parallaxmappingplugin) - Relief Parallax Bump Mapping extension for PhysicalMaterial
  110. - [HDRiGroundPlugin](#hdrigroundplugin) - Add support for ground projected hdri/skybox to the webgl background shader.
  111. - [VirtualCamerasPlugin](#virtualcamerasplugin) - Add support for rendering virtual cameras before the main one every frame.
  112. - [EditorViewWidgetPlugin](#editorviewwidgetplugin) - Adds an interactive ViewHelper/AxisHelper that syncs with the main camera.
  113. - [Object3DWidgetsPlugin](#object3dwidgetsplugin) - Automatically create light and camera helpers/gizmos when they are added to the scene.
  114. - [Object3DGeneratorPlugin](#object3dwidgetsplugin) - Provides UI and API to create scene objects like lights, cameras, meshes, etc.
  115. - [DeviceOrientationControlsPlugin](#deviceorientationcontrolsplugin) - Adds a controlsMode to the mainCamera for device orientation controls(gyroscope rotation control).
  116. - [PointerLockControlsPlugin](#pointerlockcontrolsplugin) - Adds a controlsMode to the mainCamera for pointer lock controls.
  117. - [ThreeFirstPersonControlsPlugin](#threefirstpersoncontrolsplugin) - Adds a controlsMode to the mainCamera for first person controls from threejs.
  118. - [GLTFKHRMaterialVariantsPlugin](#gltfkhrmaterialvariantsplugin) - Support using for variants from KHR_materials_variants extension in gltf models.
  119. - [Rhino3dmLoadPlugin](#rhino3dmloadplugin) - Add support for loading .3dm files
  120. - [PLYLoadPlugin](#plyloadplugin) - Add support for loading .ply files
  121. - [STLLoadPlugin](#stlloadplugin) - Add support for loading .stl files
  122. - [KTX2LoadPlugin](#ktx2loadplugin) - Add support for loading .ktx2 files
  123. - [KTXLoadPlugin](#ktxloadplugin) - Add support for loading .ktx files
  124. - [GLTFMeshOptDecodePlugin](#gltfmeshoptdecodeplugin) - Decode gltf files with EXT_meshopt_compression extension.
  125. - [SimplifyModifierPlugin](#simplifymodifierplugin) - Boilerplate for plugin to simplify geometries
  126. - [MeshOptSimplifyModifierPlugin](#meshoptsimplifymodifierplugin) - Simplify geometries using meshoptimizer library
  127. - [Packages](#threepipe-packages)
  128. - [@threepipe/plugin-tweakpane](#threepipeplugin-tweakpane) Tweakpane UI Plugin
  129. - [@threepipe/plugin-blueprintjs](#threepipeplugin-blueprintjs) BlueprintJs UI Plugin
  130. - [@threepipe/plugin-tweakpane-editor](#threepipeplugin-tweakpane-editor) - Tweakpane Editor Plugin
  131. - [@threepipe/plugin-configurator](#threepipeplugin-configurator) - Provides Material Configurator and Switch Node Plugin to allow users to select variations
  132. - [@threepipe/plugin-gltf-transform](#threepipeplugin-gltf-transform) - Plugin to transform gltf models (draco compression)
  133. - [@threepipe/plugins-extra-importers](#threepipeplugins-extra-importers) - Plugin for loading more file types supported by loaders in three.js
  134. - [@threepipe/plugin-blend-importer](#threepipeplugin-blend-importer) - Blender to add support for loading .blend file
  135. - [@threepipe/plugin-geometry-generator](#threepipeplugin-geometry-generator) - Generate parametric geometry types that can be re-generated from UI/API.
  136. - [@threepipe/plugin-gaussian-splatting](#threepipeplugin-gaussian-splatting) - Gaussian Splatting plugin for loading and rendering splat files
  137. ## Getting Started
  138. ### HTML/JS Quickstart (CDN)
  139. ```html
  140. <canvas id="three-canvas" style="width: 800px; height: 600px;"></canvas>
  141. <script type="module">
  142. import {ThreeViewer, DepthBufferPlugin} from 'https://threepipe.org/dist/index.mjs'
  143. const viewer = new ThreeViewer({canvas: document.getElementById('three-canvas')})
  144. // Add some plugins
  145. viewer.addPluginSync(new DepthBufferPlugin())
  146. // Load an environment map
  147. const envPromise = viewer.setEnvironmentMap('https://threejs.org/examples/textures/equirectangular/venice_sunset_1k.hdr')
  148. const modelPromise = viewer.load('https://threejs.org/examples/models/gltf/DamagedHelmet/glTF/DamagedHelmet.gltf', {
  149. autoCenter: true,
  150. autoScale: true,
  151. })
  152. Promise.all([envPromise, modelPromise]).then(([env, model]) => {
  153. console.log('Loaded', model, env, viewer)
  154. })
  155. </script>
  156. ```
  157. Check it in action: https://threepipe.org/examples/#html-js-sample/
  158. Check out the details about the [ThreeViewer API](#viewer-api) and more [plugins](#threepipe-plugins) below.
  159. ### React
  160. A sample [react](https://react.dev) component in tsx to render a model with an environment map.
  161. ```tsx
  162. import React from 'react'
  163. function ThreeViewerComponent({src, env}: {src: string, env: string}) {
  164. const canvasRef = React.useRef(null)
  165. React.useEffect(() => {
  166. const viewer = new ThreeViewer({canvas: canvasRef.current})
  167. const envPromise = viewer.setEnvironmentMap(env)
  168. const modelPromise = viewer.load(src)
  169. Promise.all([envPromise, modelPromise])
  170. return () => {
  171. viewer.dispose()
  172. }
  173. }, [])
  174. return (
  175. <canvas id="three-canvas" style={{width: 800, height: 600}} ref={canvasRef} />
  176. )
  177. }
  178. ```
  179. Check it in action: https://threepipe.org/examples/#react-tsx-sample/
  180. Other examples in js: https://threepipe.org/examples/#react-js-sample/ and jsx: https://threepipe.org/examples/#react-jsx-sample/
  181. ### Vue.js
  182. A sample [vue.js](https://vuejs.org/) component in js to render a model with an environment map.
  183. ```js
  184. const ThreeViewerComponent = {
  185. setup() {
  186. const canvasRef = ref(null);
  187. onMounted(() => {
  188. const viewer = new ThreeViewer({ canvas: canvasRef.value });
  189. const envPromise = viewer.setEnvironmentMap('https://threejs.org/examples/textures/equirectangular/venice_sunset_1k.hdr');
  190. const modelPromise = viewer.load('https://threejs.org/examples/models/gltf/DamagedHelmet/glTF/DamagedHelmet.gltf');
  191. Promise.all([envPromise, modelPromise])
  192. onBeforeUnmount(() => {
  193. viewer.dispose();
  194. });
  195. });
  196. return { canvasRef };
  197. },
  198. };
  199. ```
  200. Check it in action: https://threepipe.org/examples/#vue-html-sample/
  201. Another example with Vue SFC(Single file component): https://threepipe.org/examples/#vue-sfc-sample/
  202. ### Svelte
  203. A sample [svelte](https://svelte.dev/) component in js to render a model with an environment map.
  204. ```html
  205. <script>
  206. import {onDestroy, onMount} from 'svelte';
  207. import {ThreeViewer} from 'threepipe';
  208. let canvasRef;
  209. let viewer;
  210. onMount(() => {
  211. viewer = new ThreeViewer({canvas: canvasRef});
  212. const envPromise = viewer.setEnvironmentMap('https://threejs.org/examples/textures/equirectangular/venice_sunset_1k.hdr');
  213. const modelPromise = viewer.load('https://threejs.org/examples/models/gltf/DamagedHelmet/glTF/DamagedHelmet.gltf');
  214. Promise.all([envPromise, modelPromise])
  215. });
  216. onDestroy(() => viewer.dispose())
  217. </script>
  218. <canvas bind:this={canvasRef} id="three-canvas" style="width: 800px; height: 600px"></canvas>
  219. ```
  220. Check it in action: https://threepipe.org/examples/#svelte-sample/
  221. ### NPM/YARN
  222. ### Installation
  223. ```bash
  224. npm install threepipe
  225. ```
  226. ### Loading a 3D Model
  227. First, create a canvas element in your HTML page:
  228. ```html
  229. <canvas id="three-canvas" style="width: 800px; height: 600px;"></canvas>
  230. ```
  231. Then, import the viewer and create a new instance:
  232. ```typescript
  233. import {ThreeViewer, IObject3D} from 'threepipe'
  234. // Create a viewer
  235. const viewer = new ThreeViewer({canvas: document.getElementById('three-canvas') as HTMLCanvasElement})
  236. // Load an environment map
  237. await viewer.setEnvironmentMap('https://threejs.org/examples/textures/equirectangular/venice_sunset_1k.hdr')
  238. // Load a model
  239. const result = await viewer.load<IObject3D>('https://threejs.org/examples/models/gltf/DamagedHelmet/glTF/DamagedHelmet.gltf', {
  240. autoCenter: true,
  241. autoScale: true,
  242. })
  243. ```
  244. That's it! You should now see a 3D model on your page.
  245. The 3D model can be opened in the [editor](https://threepipe.org/examples/tweakpane-editor/) to view and edit the scene settings, objects, materials, lights, cameras, post-processing, etc. and exported as a GLB file. All settings are automatically serialized and saved in the GLB file, which can be loaded into the viewer. Any plugins used in the editor can be added to the viewer to add the same functionality. The plugin data is automatically loaded(if the plugin is added) when the model is added to the scene.
  246. The viewer initializes with a Scene, Camera, Camera controls(Orbit Controls), several importers, exporters and a default rendering pipeline. Additional functionality can be added with plugins.
  247. Check out the GLTF Load example to see it in action or to check the JS equivalent code: https://threepipe.org/examples/#gltf-load/
  248. Check out the [Plugins](#plugin-system) section below to learn how to add additional functionality to the viewer.
  249. ## License
  250. The core framework([src](https://github.com/repalash/threepipe/tree/master/src), [dist](https://github.com/repalash/threepipe/tree/master/dist), [examples](https://github.com/repalash/threepipe/tree/master/examples) folders) and any [plugins](https://github.com/repalash/threepipe/tree/master/plugins) without a separate license are under the Free [Apache 2.0 license](https://github.com/repalash/threepipe/tree/master/LICENSE).
  251. Some plugins(in the [plugins](https://github.com/repalash/threepipe/tree/master/plugins) folder) might have different licenses. Check the individual plugin documentation and the source folder/files for more details.
  252. ## Status
  253. The project is in `alpha` stage and under active development. Many features will be added but the core API will not change significantly in future releases.
  254. Check out [WebGi](https://webgi.xyz/) for an advanced tailor-made solution for e-commerce, jewelry, automobile, apparel, furniture etc.
  255. ## Documentation
  256. Check the list of all functions, classes and types in the [API Reference Docs](https://threepipe.org/docs/).
  257. ## WebGi
  258. Check out WebGi - Premium Photo-realistic 3D rendering framework and tools for web applications and online commerce along with custom modules and rendering solutions for e-commerce, jewelry, automobile, apparel, furniture and other retail applications.
  259. [Homepage](https://webgi.xyz/) &mdash; [Docs](https://webgi.xyz/docs/)
  260. [![Twitter](https://img.shields.io/twitter/url/https/twitter.com/repalash.svg?style=social&label=Follow%20%40pixotronics)](https://twitter.com/pixotronics)
  261. ## Contributing
  262. Contributions to ThreePipe are welcome and encouraged! Feel free to open issues and pull requests on the GitHub repository.
  263. # Features
  264. ## File Formats
  265. ThreePipe Asset Manager supports the import of the following file formats out of the box:
  266. * **Models**: gltf, glb, obj+mtl, fbx, drc
  267. * **Materials**: mat, pmat, bmat (json based), registered material template slugs
  268. * **Images**: webp, png, jpeg, jpg, svg, ico, avif, hdr, exr
  269. * **Misc**: json, vjson, zip, txt
  270. Plugins can add additional formats:
  271. * Models
  272. * 3dm - Using [Rhino3dmLoadPlugin](#Rhino3dmLoadPlugin)
  273. * ply - Using [PLYLoadPlugin](#PLYLoadPlugin)
  274. * usdz - Using [USDZLoadPlugin](#USDZLoadPlugin)
  275. * stl - Using [STLLoadPlugin](#STLLoadPlugin)
  276. * ktx - Using [KTXLoadPlugin](#KTXLoadPlugin)
  277. * ktx2 - Using [KTX2LoadPlugin](#KTX2LoadPlugin)
  278. Plugins to support more model formats are available in the package [@threepipe/plugins-extra-importers](#threepipeplugins-extra-importers) including .3ds,
  279. .3mf, .collada, .amf, .bvh, .vox, .gcode, .mdd, .pcd, .tilt, .wrl, .mpd, .vtk, .xyz
  280. ## Loading files
  281. ThreePipe uses the [AssetManager](https://threepipe.org/docs/classes/AssetManager.html) to load files.
  282. The AssetManager has support for loading files from URLs, local files and data URLs.
  283. The AssetManager also adds support for loading files from a zip archive. The zip files are automatically unzipped, and the files are loaded from the zip archive.
  284. [viewer.load()](https://threepipe.org/docs/classes/ThreeViewer.html#load) is a high-level wrapper for loading files from the AssetManager.
  285. It automatically adds the loaded object to the scene and returns a promise that resolves to the loaded object,
  286. the materials are also automatically registered to the material manager.
  287. AssetManager internally uses [AssetImporter](https://threepipe.org/docs/classes/AssetImporter.html),
  288. which provides a low-level API
  289. for managing three.js [LoadingManager](https://threejs.org/docs/#api/en/loaders/LoadingManager)
  290. and adding and registering loaders for different file types.
  291. If the purpose is not to add files to the scene then [viewer.assetManager.importer.import()](https://threepipe.org/docs/classes/AssetImporter.html#import) method can be used
  292. to import files from the `AssetImporter`.
  293. viewer.assetManager.loadImported()](https://threepipe.org/docs/classes/AssetManager.html#loadImported)
  294. can then be called to load the imported files after any processing.
  295. The `viewer.load()`, `viewer.assetManager.addAsset()`
  296. and `viewer.assetManager.addAssetSingle()` methods perform combination of `import` and `loadImported`.
  297. ### 3D models
  298. The 3d models are added to `viewer.scene.modelRoot` on `viewer.load` unless some option is specified.
  299. ```typescript
  300. const objectGlb = await viewer.load<IObject3D>('https://example.com/file.glb')
  301. const objectFbx = await viewer.load<IObject3D>('https://example.com/file.fbx')
  302. const objectObj = await viewer.load<IObject3D>('https://example.com/file.obj') // .mtl referenced in obj is automatically loaded
  303. // ... load any 3d model file as an object
  304. ```
  305. Here, we are casting to [IObject3D](https://threepipe.org/docs/interfaces/IObject3D.html) type
  306. to get the proper type and autocomplete for the object.
  307. `IObject3D` inherits [Object3D](https://threejs.org/docs/#api/en/core/Object3D) from three.js and adds some additional properties.
  308. For JavaScript, the type can be omitted.
  309. ```javascript
  310. const objectGlb = await viewer.load('https://example.com/file.glb')
  311. ```
  312. When loading models, several options can be passed to automatically process the model first time, like `autoScale`, `autoCenter`, `addToRoot` etc. Check [AddObjectOptions](https://threepipe.org/docs/interfaces/AddObjectOptions.html) and [ImportAddOptions](https://threepipe.org/docs/interfaces/ImportAddOptions.html) for more details.
  313. ### Materials
  314. The materials downloaded as PMAT/BMAT/JSON etc from threepipe,
  315. webgi or the editor can be loaded
  316. and registered with the [MaterialManager](https://threepipe.org/docs/classes/MaterialManager)
  317. using the `viewer.load` method.
  318. Custom material types can also be registered by plugins(like dmat for diamonds), which can also be loaded automatically using the `viewer.load` method.
  319. ```typescript
  320. const pMaterial = await viewer.load<PhysicalMaterial>('https://example.com/file.pmat')
  321. const bMaterial = await viewer.load<UnlitMaterial>('https://example.com/file.bmat')
  322. // ... load any material file as a material
  323. ```
  324. Casting to [PhysicalMaterial](https://threepipe.org/docs/classes/PhysicalMaterial) or [UnlitMaterial](https://threepipe.org/docs/classes/UnlitMaterial) is optional but recommended to get the proper type and autocomplete for the material.
  325. To assign the material on any object, set it to `object.material`
  326. ```typescript
  327. // find a loaded mesh in the scene
  328. const object = viewer.scene.getObjectByName('objectName');
  329. // assign the material
  330. object.material = pMaterial;
  331. ```
  332. To copy the properties without changing the material reference, use `material.copy()` or `material.setValues()` methods.
  333. ```typescript
  334. object.material.copy(pMaterial);
  335. // or use material manager to apply to multiple materials.
  336. viewer.assetManager.materialManager.applyMaterial(pMaterial, 'METAL') // apply props to all materials/objects with the name METAL
  337. ```
  338. TODO: add examples for material load and copy
  339. ### Images/Textures
  340. Images can be loaded using the `viewer.load` method.
  341. There is built-in support for loading all image formats supported by the browser (webp, png, jpeg, jpg, svg, ico, avif) and hdr, exr, hdr.png formats for all browsers.
  342. More formats like ktx2, ktx, etc. can be added using plugins.
  343. ```typescript
  344. const texture = await viewer.load<ITexture>('https://example.com/file.png')
  345. // ... load any image file as a texture
  346. ```
  347. Casting to [ITexture](https://threepipe.org/docs/interfaces/ITexture.html) is optional
  348. but recommended to get the proper type and autocomplete for the texture.
  349. It inherits from three.js [Texture](https://threejs.org/docs/#api/en/textures/Texture) and adds some additional properties.
  350. To assign the texture on any material, set it to `material.map`
  351. ```typescript
  352. // find a loaded mesh in the scene
  353. const object = viewer.scene.getObjectByName('objectName');
  354. const material = object.material as PhysicalMaterial;
  355. // assign the texture
  356. material.map = texture;
  357. material.setDirty() // to let the viewer know that the material has changed and needs to re-render the scene. This will also trigger fade effect if FrameFadePlugin is added.
  358. ```
  359. Check out the image load example to see it in action or to check the JS equivalent code: https://threepipe.org/examples/#image-load/
  360. ### Zip files
  361. .zip files are automatically unzipped and the files are sent to re-load recursively when loaded with `viewer.load`.
  362. Any level of zip hierarchy is flattened.
  363. Loading files like .gltf with references to assets inside the zip file,
  364. any relative references are also automatically resolved.
  365. This is supported for file types like gltf, glb, obj,
  366. etc which support references to external files and has `root` set to `true in [IImporter](https://threepipe.org/docs/interfaces/IImporter.html).
  367. ```typescript
  368. const objectGltf = await viewer.load<IObject3D>('https://example.com/model.gltf.zip')
  369. ```
  370. If we know that the zip file contains a single gltf with all the assets, we can cast the result to [IObject3D](https://threepipe.org/docs/interfaces/IObject3D.html) type.
  371. To load multiple assets from zip files like multiple textures or materials, use `viewer.assetManager.addAsset` method which returns a promise of array of loaded assets.
  372. ```typescript
  373. const textures = await viewer.assetManager.addAsset<ITexture[]>('https://example.com/textures.zip')
  374. const materials = await viewer.assetManager.addAsset<IMaterial[]>('https://example.com/materials.zip')
  375. ```
  376. The auto import of zip contents can be disabled to get the files and blobs in the zip
  377. ```typescript
  378. const zip = await viewer.load<any>('https://example.com/file.zip', {autoImportZipContents: false})
  379. ```
  380. TODO - add example for loading zip files.
  381. ### txt, json files
  382. Text and JSON files can be loaded using the `viewer.load` method and return strings and objects respectively.
  383. ```typescript
  384. const text = await viewer.load<string>('https://example.com/file.txt')
  385. const json = await viewer.load<any>('https://example.com/file.json')
  386. ```
  387. ### Data URLs
  388. Data URLs can be loaded using the `viewer.load` method. The correct mime-type is required to be set in the data URL for finding the correct importer.
  389. ```typescript
  390. const dataUrl = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUA' // ... some data url
  391. const texture = await viewer.load<ITexture>(dataUrl)
  392. ```
  393. ### Local files, File and Blob
  394. Local files can be loaded using the `viewer.load` method by passing a [IAsset](https://threepipe.org/docs/interfaces/IAsset) object with [File](https://developer.mozilla.org/en-US/docs/Web/API/File) or [Blob](https://developer.mozilla.org/en-US/docs/Web/API/Blob) object.
  395. ```typescript
  396. const file: File|Blob = fileObject // create a new file, blob or get from input element
  397. const text = await viewer.load<IObject>({
  398. // a path/name is required to determine the proper importer by extension. `file.name` can also be used if available
  399. path: 'file.glb',
  400. file
  401. })
  402. ```
  403. The same can be done for any file type.
  404. To load a `Map` of files(like when multiple files are dragged and dropped on the webpage) with internal references to other files, use `viewer.assetManager.importer.importFiles` method. Check the source for [DropzonePlugin](#dropzoneplugin) for an example.
  405. ### Background, Environment maps
  406. The background and environment maps can be set using the `viewer.setBackgroundMap` and `viewer.setEnvironmentMap` methods respectively. These accept both loaded textures from `viewer.load` and direct URLs. Files can be of any image format including hdr, exr.
  407. ```typescript
  408. await viewer.setEnvironmentMap('https://example.com/file.hdr')
  409. await viewer.setBackgroundMap('https://example.com/file.png')
  410. ```
  411. The same texture can be set to both by setting `setBackground` or `setEnvironment` to true in the options:
  412. ```typescript
  413. await viewer.setEnvironmentMap('https://example.com/file.hdr', {setBackground: true})
  414. ```
  415. Check the HDR Load example to see it in action: https://threepipe.org/examples/#hdr-load/
  416. ### SVG strings
  417. SVG strings can be converted to data urls using the [svgUrl](https://repalash.com/ts-browser-helpers/functions/svgUrl.html) string template function
  418. ```typescript
  419. const svgDataUrl = svgUrl`<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> ... </svg>`;
  420. const texture = await viewer.load<ITexture>(dataUrl)
  421. ```
  422. ### Custom file types
  423. Custom file importers/loaders can be registered to the `AssetImporter` using the `addImporter` method.
  424. ```typescript
  425. class CustomLoader extends FileLoader implements ILoader{
  426. constructor(manager?: LoadingManager) {
  427. super(manager);
  428. }
  429. load(url: string, onLoad: (data: any) => void, onProgress?: (event: ProgressEvent) => void, onError?: (event: ErrorEvent) => void): Mesh {
  430. this.setResponseType('json')
  431. return super.load(url, (json: any)=>{
  432. const mat = new PhysicalMaterial(json)
  433. onLoad?.(mat)
  434. }, onProgress, onError)
  435. }
  436. }
  437. viewer.assetManager.importer.addImporter(new Importer(CustomLoader, ['ext'], ['mime/type'], false))
  438. // load the file
  439. const mat = await viewer.load<PhysicalMaterial>('https://example.com/file.ext')
  440. ```
  441. ## Exporting files
  442. Threepipe has support for exporting various asset type with AssetManager,
  443. as well as support to export viewer and plugin configuration, arbitrary objects etc using the [serialization](#serialization) system.
  444. [viewer.export()](https://threepipe.org/docs/classes/ThreeViewer.html#export) is a high-level wrapper for exporting scene objects, materials, textures, render targets, viewer/scene configuration and plugin configurations.
  445. AssetManager internally uses [AssetExporter](https://threepipe.org/docs/classes/AssetExporter.html) to export files.
  446. AssetExporter includes some basic exporters for glb, exr, textures,
  447. and materials and a system to register exporters for different file types with plugins or custom exporters.
  448. ### Exporting 3D models
  449. Export the root scene as glb
  450. ```typescript
  451. const blob = await viewer.exportScene({
  452. viewerConfig: true, // default = true. export all viewer and plugin configuration. if false only the model root object is exported.
  453. })
  454. // download the file
  455. downloadBlob(blob, 'scene.glb')
  456. ```
  457. Export a single object from the scene as glb
  458. ```typescript
  459. const object = viewer.scene.getObjectByName('objectName');
  460. const glb: Blob = await viewer.export(object, {
  461. exportExt: 'glb', // default = glb for models
  462. embedUrlImages: true, // default = false. embed images in glb even when url is available.
  463. })
  464. // download the file
  465. downloadBlob(glb, 'object.glb')
  466. ```
  467. Check the example [glb-export](https://threepipe.org/examples/#glb-export/) to see a demo.
  468. ### Exporting Materials
  469. Export a material
  470. ```typescript
  471. const material = viewer.assetManager.materialManager.findMaterialsByName('materialName')[0];
  472. // or
  473. // const material = viewer.scene.getObjectByName('objectName').material;
  474. const blob = await viewer.export(material)
  475. // download the file
  476. downloadBlob(blob, 'material.' + blob.ext)
  477. ```
  478. Check the example [pmat-material-export](https://threepipe.org/examples/#pmat-material-export/) to see a demo.
  479. ### Exporting Canvas Images
  480. Canvas Screenshot/snapshot can be exported as png, jpeg or webp(if supported by the browser)
  481. ```typescript
  482. const blob = await viewer.getScreenshotBlob({mimeType: 'image/' + type, quality: 0.85})
  483. // or to get data url:
  484. // const dataUrl = await viewer.getScreenshotDataUrl({mimeType: 'image/' + type, quality: 0.85})
  485. // download the file
  486. downloadBlob(blob, 'screenshot.' + blob.ext)
  487. ```
  488. Check the example [image-snapshot-export](https://threepipe.org/examples/#image-snapshot-export/) to see a demo.
  489. ### Exporting Textures
  490. Textures can be exported to JSON using `viewer.export` or `AssetExporter`
  491. ```typescript
  492. const texture = await viewer.load('https://example.com/file.jpeg')
  493. const blob = await viewer.export(texture)
  494. downloadBlob(blob, texture.name + '.' + blob.ext)
  495. ```
  496. Render target textures can be exported with `viewer.renderManager.exportRenderTarget` or `viewer.export`,
  497. read about [Exporting Render Targets](#exporting-render-targets) below.
  498. TODO: add examples for texture export
  499. Textures and Uint8 Data Textures can be exported as a data url or copied to a new canvas
  500. ```typescript
  501. // get a base64 data url
  502. const dataUrl = textureToDataUrl(texture, 4096, false, 'image/png') // texture or data texture, max-size, flipY, mimeType
  503. // or copy to a new canvas
  504. const canvas = textureToCanvas(texture, 4096) // texture or data texture, max-size
  505. ```
  506. Data Textures of type Half float and Float can be exported with `viewer.export`
  507. ```typescript
  508. const dataTex = await viewer.load('https://example.com/file.hdr')
  509. const blob = await viewer.export(dataTexture, {exportExt: 'exr'})
  510. ```
  511. Check the example [hdr-to-exr](https://threepipe.org/examples/#hdr-to-exr/) to see a demo of HDR to EXR conversion.
  512. TODO: add support to export unsigned byte textures as png, jpeg, webp
  513. ### Exporting Images/Textures
  514. Exporting Textures as Images with image of types ImageBitmap, HTMLImageElement,
  515. HTMLOrSVGImageElement, CanvasImageSource, HTMLCanvasElement,
  516. OffscreenCanvas can be exported to png data urls with [imageBitmapToBase64](https://repalash.com/ts-browser-helpers/functions/imageBitmapToBase64.html) function.
  517. ```typescript
  518. const texture = await viewer.load('https://example.com/file.jpeg')
  519. const dataUrl = await imageBitmapToBase64(texture.image, 'image/png', 0.85);
  520. ```
  521. TODO: add support for texture export as images in AssetExporter
  522. ### Exporting Render Targets
  523. Unsigned byte render targets can be exported as png, jpeg or webp(if supported by the browser)
  524. ```typescript
  525. const depthPlugin = viewer.addPluginSync(DepthBufferPlugin, UnsignedByteType)
  526. // wait for the first render
  527. const blob = await viewer.export(depthPlugin.target!, {exportExt: 'png'})
  528. if (blob) downloadBlob(blob, target.texture.name + '.' + blob.ext)
  529. ```
  530. Half float and float render targets can be exported as exr
  531. ```typescript
  532. const depthPlugin = viewer.addPluginSync(DepthBufferPlugin, HalfFloatType)
  533. // wait for the first render
  534. const blob = await viewer.export(depthPlugin.target!, {exportExt: 'exr'})
  535. if (blob) downloadBlob(blob, target.texture.name + '.' + blob.ext)
  536. ```
  537. Note: `exportExt` is determined automatically if not specified.
  538. ## Render pipeline
  539. Threepipe includes a [RenderManager](https://threepipe.org/docs/classes/RenderManager.html) for managing the composition pipeline, and provides helpers for rendering and render target management.
  540. The RenderManager includes a [EffectComposer](https://threejs.org/docs/#api/en/postprocessing/EffectComposer) from three.js for rendering passes and a [WebGLRenderer](https://threejs.org/docs/#api/en/renderers/WebGLRenderer) for rendering,
  541. but the pass management and sorting is managed by the RenderManager itself.
  542. The RenderManager inherits from [RenderTargetManager](https://threepipe.org/docs/classes/RenderTargetManager.html)
  543. which provides utilities for creating, tracking and destroying dedicated and temporary render targets.
  544. ### Render Targets
  545. Render targets can be created
  546. using the `viewer.renderManager.createTarget` and `viewer.renderManager.createTargetCustom` methods.
  547. These can then be disposed using the `viewer.renderManager.disposeTarget` method when not needed anymore.
  548. Or to create temp targets for one time use `viewer.renderManager.getTempTarget` and `viewer.renderManager.releaseTempTarget` methods.
  549. can be used.
  550. All created render targets are tracked in the RenderManager,
  551. and are resized and disposed automatically when needed along with the viewer.
  552. ```typescript
  553. const newTarget = viewer.renderManager.createTarget({sizeMultiplier: 1})
  554. // or
  555. const newTarget2 = viewer.renderManager.createTarget({size: {
  556. width: 1024,
  557. height: 1024,
  558. },
  559. type: HalfFloatType
  560. })
  561. // or clone an existing target
  562. const newTarget3 = viewer.renderManager.composerTarget.clone()
  563. // for multi-sample render target
  564. const newTarget4 = viewer.renderManager.createTarget({sizeMultiplier: 1, samples: 4})
  565. // or create a custom target
  566. const newTarget5 = viewer.renderManager.createTargetCustom(
  567. {width: 1024, height: 1024},
  568. {type: HalfFloatType},
  569. WebGLCubeRenderTarget
  570. )
  571. // dispose targets
  572. viewer.renderManager.disposeTarget(newTarget)
  573. viewer.renderManager.disposeTarget(newTarget2)
  574. viewer.renderManager.disposeTarget(newTarget3)
  575. viewer.renderManager.disposeTarget(newTarget4)
  576. viewer.renderManager.disposeTarget(newTarget5)
  577. // get a temporary target
  578. const tempTarget = viewer.renderManager.getTempTarget({sizeMultiplier: 1})
  579. // release the temporary target
  580. viewer.renderManager.releaseTempTarget(tempTarget)
  581. ```
  582. Note: Render targets created with a sizeMultiplier are automatically resized when the canvas is resized.
  583. ### Passes
  584. By default, the render pipeline includes 2 passes -
  585. [RenderPass](https://threejs.org/docs/#api/en/postprocessing/RenderPass) for rendering the scene hierarchy and [ScreenPass](https://threejs.org/docs/#api/en/postprocessing/ShaderPass)
  586. for rendering the final output on the canvas.
  587. More passes can be added and removed from the pipeline
  588. using the [registerPass](https://threepipe.org/docs/classes/RenderManager.html#registerPass) and [unregisterPass](https://threepipe.org/docs/classes/RenderManager.html#unregisterPass) methods.
  589. The pipeline passes need
  590. to follow the interface of [IPipelinePass](https://threepipe.org/docs/interfaces/IPipelinePass.html) and [IPipelinePassPlugin](https://threepipe.org/docs/interfaces/IPipelinePassPlugin.html).
  591. Which adds some important parameters over the three.js Pass,
  592. like pass id and support for defining where the pass should be added in the pipeline and it's dependants.
  593. ```typescript
  594. const pass = new GBufferRenderPass('customPass', viewer.renderManager.createTarget({sizeMultiplier: 1}))
  595. pass.before = ['render'] // Add the pass before the render pass
  596. pass.after = [] // Add the pass after these passes (none in this case)
  597. pass.required = ['render'] // render pass is required to be in the pipeline for this
  598. viewer.renderManager.registerPass(pass)
  599. ```
  600. Note:
  601. See [PipelinePassPlugin](https://threepipe.org/docs/classes/PipelinePassPlugin.html) for an abstract plugin
  602. that provides the boilerplate to create a plugin that registers a custom pass in the pipeline.
  603. Check [NormalBufferPlugin](https://threepipe.org/docs/classes/NormalBufferPlugin.html) for an example of that.
  604. Note: All effects in post-processing or material extension need not be a separate pass in the pipeline.
  605. Most effects can be achieved with either extending the scene object material shaders or the Screen Pass material shader
  606. using [Material extension](#material-extension) system
  607. ## Material Extension
  608. Threepipe includes a Material extension system along with a material manager.
  609. The material manager is used to register materials and material extensions.
  610. The material extensions are used to extend any material in the scene,
  611. or any plugin/pass with additional uniforms, defines, shader snippets and provides hooks.
  612. The material extensions are automatically applied to all materials in the scene that are compatible,
  613. when the extension is registered or when the material is added to the scene.
  614. Threepipe includes several built-in materials like
  615. [PhysicalMaterial](https://threepipe.org/docs/classes/PhysicalMaterial.html),
  616. [UnlitMaterial](https://threepipe.org/docs/classes/UnlitMaterial.html),
  617. [ExtendedShaderMaterial](https://threepipe.org/docs/classes/ExtendedShaderMaterial.html), [LegacyPhongMaterial](https://threepipe.org/docs/classes/LegacyPhongMaterial.html),
  618. that include support for extending the material.
  619. Any three.js material can be made extendable,
  620. check the `ShaderPass2` class for a simple example that adds support for material extension to three.js ShaderPass.
  621. The material extensions must follow the [MaterialExtension](https://threepipe.org/docs/interfaces/MaterialExtension.html) interface.
  622. Many plugins create their own material extensions either for the scene materials or shader passes(like the screen pass).
  623. Some plugins like `DepthBufferPlugin` also provides helper material extensions for other custom plugins
  624. to fetch value in the depth buffer.
  625. A sample material extension
  626. ```typescript
  627. const extension: MaterialExtension = {
  628. shaderExtender: (shader)=> {
  629. // change the shader properties like shader.fragmentShader, etc
  630. },
  631. parsFragmentSnippet: ` // add some code before the main function in the fragment shader
  632. uniform sampler2D tTexture;
  633. uniform float opacity;
  634. `,
  635. extraUniforms: {
  636. tTexture: ()=>({value: getTexture()}),
  637. opacity: {value: 1}
  638. // add additional uniforms, these can be IUniform or functions that return IUniform
  639. },
  640. extraDefines: {
  641. ['DEPTH_PACKING']: BasicDepthPacking,
  642. ['SOME_DEFINE']: ()=>"1",
  643. // add additional defines, these can be values or functions that return values
  644. },
  645. priority: 100, // priority when using multiple extensions on the same material
  646. isCompatible: (material) => material.isMeshBasicMaterial, // check if the material is compatible with this extension,
  647. computeCacheKey: (material) => material.uuid, // a custom cache key for the material extension. Shader is recompiled when this is changed
  648. onObjectRender: (object: Object3D, material: IMaterial) => {
  649. // called when some object is rendererd which has a material with this extension.
  650. },
  651. // uiConfig
  652. // check more properties and hooks in the MaterialExtension interface
  653. }
  654. // The extension can be registered to all the materials using the MaterialManager
  655. viewer.assetManager.materialManager.registerMaterialExtension(extension)
  656. // or register it on a single material (like the Screen Pass)
  657. viewer.renderManager.screenPass.material.registerMaterialExtensions([extension])
  658. ```
  659. ## UI Configuration
  660. Most of the classes and plugins in Threepipe include [uiconfig.js](https://repalash.com/uiconfig.js/) support
  661. and can be used to create configuration UIs, 3d configurators and even full-editors.
  662. The UIs are automatically generated based on the configuration object under `.uiConfig` property on all objects.
  663. These are of type [UiObjectConfig](https://repalash.com/uiconfig.js/interfaces/UiObjectConfig.html).
  664. In some classes, the ui configs are also generated using typescript decorators.
  665. The `uiConfig` is also added to all three.js objects and materials when they are added to the scene.
  666. The UIs can be generated at runtime using any of the UI plugins like [TweakpaneUIPlugin](#threepipeplugin-tweakpane), [BlueprintJsUiPlugin](#threepipeplugin-blueprintjs)
  667. An example showing how to create a UI for a material
  668. ```typescript
  669. const ui = viewer.addPluginSync(TweakpaneUiPlugin)
  670. const object = viewer.scene.getObjectByName('objectName');
  671. const material = object.material as PhysicalMaterial;
  672. ui.appendChild(material.uiConfig)
  673. ```
  674. See it in action: https://threepipe.org/examples/#material-uiconfig/
  675. Check more examples showing [Viewer UI](https://threepipe.org/examples/#viewer-uiconfig/),
  676. [Scene UI](https://threepipe.org/examples/#scene-uiconfig/),
  677. [Object UI](https://threepipe.org/examples/#object-uiconfig/), [Camera UI](https://threepipe.org/examples/#camera-uiconfig/)
  678. [TweakpaneEditorPlugin](#threepipeplugin-tweakpane-editor) further uses the Tweakpane configuration panel along with various plugins to create an 3d editor.
  679. Custom UI configuration can be created to generate custom UI for the editor or tweaking.
  680. This can be done by using typescript decorators or defining the UI in javascript as a [UiObjectConfig](https://repalash.com/uiconfig.js/interfaces/UiObjectConfig.html) object.
  681. Here is a sample of extending the orbit controls class with decorators to automatically generate UI.
  682. ```typescript
  683. @uiPanelContainer('Orbit Controls')
  684. export class OrbitControlsWithUi extends OrbitControls implements IUiConfigContainer {
  685. // for autocomplete
  686. uiConfig?: UiObjectConfig<void, 'panel'>
  687. @uiToggle() enabled = true
  688. @uiToggle() dollyZoom = false
  689. @uiToggle() enableDamping = true
  690. @uiInput() dampingFactor = 0.08
  691. @uiToggle() autoRotate = false
  692. @uiInput() autoRotateSpeed = 2.0
  693. @uiToggle() enableZoom = true
  694. @uiInput() zoomSpeed = 0.15
  695. @uiInput() maxZoomSpeed = 0.20
  696. @uiToggle() enableRotate = true
  697. @uiInput() rotateSpeed = 2.0
  698. @uiToggle() enablePan = true
  699. @uiInput() panSpeed = 1.0
  700. @uiInput() autoPushTarget = false
  701. @uiInput() autoPullTarget = false
  702. @uiInput() minDistance = 0.35
  703. @uiInput() maxDistance = 1000
  704. @uiInput() minZoom = 0.01
  705. @uiInput() maxZoom = 1000
  706. @uiInput() minPolarAngle = 0
  707. @uiInput() maxPolarAngle = Math.PI
  708. @uiInput() minAzimuthAngle = -10000 // should be -Infinity but this breaks the UI
  709. @uiInput() maxAzimuthAngle = 10000
  710. }
  711. ```
  712. Check out the full source code:
  713. [./src/three/controls/OrbitControls3.ts](./src/three/controls/OrbitControls3.ts) for proper implementation
  714. See it in action: https://threepipe.org/examples/#camera-uiconfig/ Open the Camera UI and click on the Orbit Controls panel.
  715. There are many available decorators like `uiToggle`, `uiSlider`, `uiInput`, `uiNumber`, `uiColor`, `uiImage`.
  716. Check the complete list in the [uiconfig.js documentation](https://repalash.com/uiconfig.js/).
  717. The UI configuration can also be created using json objects in both typescript and javascript
  718. ```javascript
  719. const viewer = new ThreeViewer({...})
  720. const ui = viewer.addPluginSync(TweakpaneUiPlugin)
  721. const state = {
  722. position: new Vector3(),
  723. scale: 1,
  724. }
  725. ui.appendChild({
  726. type: 'folder',
  727. label: 'Custom UI',
  728. children: [
  729. {
  730. type: 'vec3',
  731. label: 'Position',
  732. property: [state, 'position']
  733. },
  734. {
  735. type: 'slider',
  736. label: ()=>'Scale', // everything can be a function as well.
  737. property: [state, 'scale'],
  738. bounds: [1, 2],
  739. stepSize: 0.1,
  740. }
  741. ]
  742. })
  743. ```
  744. TODO: create example/codepen for this
  745. ## Serialization
  746. Easy serialization of all threepipe and most three.js objects are supported out of the box using the Asset Manager.
  747. Fine control over serialization is also supported
  748. using the [ThreeSerialization](https://threepipe.org/docs/classes/ThreeSerialization.html) class
  749. Call `ThreeSerialization.serialize` on any object to serialize it.
  750. and `ThreeSerialization.deserialize` to deserialize the serialized object.
  751. This is done by performing a nested serialization of all the properties of the object.
  752. It's possible to implement custom serializers for custom types and classes and is done for three.js primitives,
  753. objects and plugins in threepipe
  754. To make a custom data class that is serializable,
  755. mark it using `@serializable` decorator and any properties using `@serialize` decorator.
  756. ```typescript
  757. @serializable('DataClass')
  758. class DataClass{
  759. @serialize() prop1 = 1
  760. @serialize() prop2 = 'string'
  761. @serialize() prop3 = new Vector3()
  762. @serialize() prop4 = new PhysicalMaterial()
  763. @serialize() prop4 = {
  764. prop1: 1,
  765. prop2: 'string',
  766. prop3: new Vector3(),
  767. prop4: new PhysicalMaterial(),
  768. }
  769. }
  770. const data = new DataClass()
  771. const serialized = ThreeSerialization.serialize(data)
  772. const deserialized = ThreeSerialization.deserialize(serialized)
  773. ```
  774. The classes without a `@serializable` decorator are serialized as plain objects.
  775. These can still include `@serialize` decorator to mark the properties are serializable
  776. but these classes cannot be deserialized into a new instance of the class.
  777. The ThreeViewer and plugins are an example of these.
  778. When deserialized they need an object to deserialize into.
  779. This ensures there is always just one instance.
  780. With this, the serialization system works like `toJSON` and `fromJSON` methods in three.js.
  781. Check the [plugin system](#plugin-system) below for more details on how to mark properties as serializable for plugins.
  782. ```typescript
  783. class CustomClass{
  784. @serialize() prop1 = 1
  785. @serialize() prop2 = 'string'
  786. @serialize() prop3 = new Vector3()
  787. @serialize() prop4 = new PhysicalMaterial()
  788. }
  789. const obj = new DataClass()
  790. const serialized = ThreeSerialization.serialize(data)
  791. // now to deserialize we need to pass in the object to deserialize into
  792. ThreeSerialization.deserialize(serialized, obj)
  793. ```
  794. ## Plugin System
  795. Threepipe includes a plugin system for adding additional features to the viewer in a modular way.
  796. The plugins can be added synchronously or asynchronously using `viewer.addPluginSync` and `viewer.addPlugin` methods respectively.
  797. It is recommended to create custom plugins for reusable features,
  798. as they provide built-in features for ui configuration,
  799. serialization, integration with editors etc and are easy to manage and tree-shake in the code.
  800. Check out the list of plugins in the [Plugin List](#threepipe-plugins) section below.
  801. To create new plugins,
  802. simply implement the `IViewerPlugin` interface or extend the [AViewerPluginSync](https://threepipe.org/docs/classes/AViewerPluginSync.html) or [AViewerPluginAsync](https://threepipe.org/docs/classes/AViewerPluginAsync.html) classes.
  803. The only difference is that in async the `onAdded` and `onRemove` functions are async
  804. Here is a sample plugin
  805. ```typescript
  806. @uiFolder("Sample Plugin") // This creates a folder in the Ui. (Supported by TweakpaneUiPlugin)
  807. export class SamplePlugin extends AViewerPluginSync<"sample-1" | "sample-2"> {
  808. // These are the list of events that this plugin can dispatch.
  809. static readonly PluginType = "SamplePlugin"; // This is required for serialization and handling plugins. Also used in viewer.getPluginByType()
  810. @uiToggle() // This creates a checkbox in the Ui. (Supported by TweakpaneUiPlugin)
  811. @serialize() // Adds this property to the list of serializable. This is also used when serializing to glb in AssetExporter.
  812. enabled = true;
  813. // A plugin can have custom properties.
  814. @uiSlider("Some Number", [0, 100], 1) // Adds a slider to the Ui, with custom bounds and step size (Supported by TweakpaneUiPlugin)
  815. @serialize("someNumber")
  816. @onChange(SamplePlugin.prototype._updateParams) // this function will be called whenevr this value changes.
  817. val1 = 0;
  818. // A plugin can have custom properties.
  819. @uiInput("Some Text") // Adds a slider to the Ui, with custom bounds and step size (Supported by TweakpaneUiPlugin)
  820. @onChange(SamplePlugin.prototype._updateParams) // this function will be called whenevr this value changes.
  821. @serialize()
  822. val2 = "Hello";
  823. @uiButton("Print Counters") // Adds a button to the Ui. (Supported by TweakpaneUiPlugin)
  824. public printValues = () => {
  825. console.log(this.val1, this.val2);
  826. this.dispatchEvent({ type: "sample-1", detail: { sample: this.val1 } }); // This will dispatch an event.
  827. }
  828. constructor() {
  829. super();
  830. this._updateParams = this._updateParams.bind(this);
  831. }
  832. private _updateParams() {
  833. console.log("Parameters updated.");
  834. this.dispatchEvent({ type: "sample-2" }); // This will dispatch an event.
  835. }
  836. onAdded(v: ThreeViewer): void {
  837. super.onAdded(v);
  838. // Do some initialization here.
  839. this.val1 = 0;
  840. this.val2 = "Hello";
  841. v.addEventListener("preRender", this._preRender);
  842. v.addEventListener("postRender", this._postRender);
  843. v.addEventListener("preFrame", this._preFrame);
  844. v.addEventListener("postFrame", this._postFrame);
  845. this._viewer!.scene.addEventListener("addSceneObject", this._objectAdded); // this._viewer can also be used while this plugin is attached.
  846. }
  847. onRemove(v: ThreeViewer): void {
  848. // remove dispose objects
  849. v.removeEventListener("preRender", this._preRender);
  850. v.removeEventListener("postRender", this._postRender);
  851. v.removeEventListener("preFrame", this._preFrame);
  852. v.removeEventListener("postFrame", this._postFrame);
  853. this._viewer!.scene.removeEventListener("addSceneObject", this._objectAdded); // this._viewer can also be used while this plugin is attached.
  854. super.onRemove(v);
  855. }
  856. private _objectAdded = (ev: IEvent<any>) => {
  857. console.log("A new object, texture or material is added to the scene.", ev.object);
  858. };
  859. private _preFrame = (ev: IEvent<any>) => {
  860. // This function will be called before each frame. This is called even if the viewer is not dirty, so it's a good place to do viewer.setDirty()
  861. };
  862. private _preRender = (ev: IEvent<any>) => {
  863. // This is called before each frame is rendered, only when the viewer is dirty.
  864. };
  865. // postFrame and postRender work the same way as preFrame and preRender.
  866. }
  867. ```
  868. Notes:
  869. * All plugins that are present in the dependencies array when the plugin is added to the viewer, are created and attached to the viewer in `super.onAdded`
  870. * Custom events can be dispatched with `this.dispatchEvent`, and subscribed to with `plugin.addEventListener`. The event type must be described in the class signature for typescript autocomplete to work.
  871. * Event listeners and other hooks can be added and removed in `onAdded` and `onRemove` functions for the viewer and other plugins.
  872. * To the viewer render the next frame, `viewer.setDirty()` can be called, or set `this.dirty = true` in preFrame and reset in postFrame to stop the rendering. (Note that rendering may continue if some other plugin sets the viewer dirty like `ProgressivePlugin` or any of the animation plugins). Check `isConverged` in `ProgressivePlugin` to check if its the final frame.
  873. * All Plugins which inherit from AViewerPlugin support serialisation. Create property `serializeWithViewer = false` to disable serialisation with the viewer in config and glb or `toJSON: any = undefined` to disable serialisation entirely
  874. * `plugin.toJSON()` and `plugin.fromJSON()` or `ThreeSerialization` can be used to serialize and deserialize plugins. `viewer.exportPluginConfig` and `viewer.importPluginConfig` also exist for this.
  875. * @serialize('label') decorator can be used to mark any public/private variable as serializable. label (optional) corresponds to the key in JSON.
  876. * @serialize supports instances of ITexture, IMaterial, all primitive types, simple JS objects, three.js math classes(Vector2, Vector3, Matrix3...), and some more.
  877. * uiDecorators can be used to mark properties and functions that will be shown in the Ui. The Ui shows up automatically when TweakpaneUiPlugin/BlueprintJsUiPlugin is added to the viewer. Plugins have special features in the UI for download preset and saving state.
  878. Check various plugins in the source code for more examples.
  879. # Viewer API
  880. [ThreeViewer](https://threepipe.org/docs/classes/ThreeViewer.html) - is the main entry point to 3d rendering on the canvas.
  881. - `.renderManager`: [ViewerRenderManager](https://threepipe.org/docs/classes/ViewerRenderManager.html) & [RenderManager](https://threepipe.org/docs/classes/RenderManager.html) & [RenderTargetManager](https://threepipe.org/docs/classes/RenderTargetManager.html) - Render manager for managing the rendering and composition pipeline, and provides helpers for rendering and render target management
  882. - `.renderer`: [IWebGLRenderer](https://threepipe.org/docs/interfaces/IWebGLRenderer.html) - for rendering. Instance of three.js [WebGLRenderer](https://threejs.org/docs/#api/en/renderers/WebGLRenderer)
  883. - `.composer`: [EffectComposer2](https://threepipe.org/docs/classes/EffectComposer2.html) - for rendering passes. Instance of three.js [EffectComposer](https://threejs.org/docs/#api/en/postprocessing/EffectComposer)
  884. - `.context`: [WebGLRenderingContext](https://developer.mozilla.org/en-US/docs/Web/API/WebGLRenderingContext) - WebGL rendering context
  885. - `.renderPass`: [ExtendedRenderPass](https://threepipe.org/docs/classes/ExtendedRenderPass.html) - Render pass for rendering the scene. Instance of three.js [RenderPass](https://threejs.org/docs/#api/en/postprocessing/RenderPass) with extra features
  886. - `.screenPass`: [ScreenPass](https://threepipe.org/docs/classes/ScreenPass.html) - Screen pass for rendering the final output. Instance of three.js [ShaderPass](https://threejs.org/docs/#api/en/postprocessing/ShaderPass) with extra features.
  887. - `.scene`: [RootScene](https://threepipe.org/docs/classes/RootScene.html) - Main scene used for rendering. Instance of three.js [Scene](https://threejs.org/docs/#api/en/scenes/Scene)
  888. - `.mainCamera`: [PerspectiveCamera2](https://threepipe.org/docs/classes/PerspectiveCamera2.html) - Main camera currently being used for rendering. Instance of three.js [PerspectiveCamera](https://threejs.org/docs/#api/en/cameras/PerspectiveCamera)
  889. - `.assetManager`: [AssetManager](https://threepipe.org/docs/classes/AssetManager.html) - Asset manager for loading, managing and exporting assets
  890. - `.importer`: [AssetImporter](https://threepipe.org/docs/classes/AssetImporter.html) - for importing assets
  891. - `.exporter`: [AssetExporter](https://threepipe.org/docs/classes/AssetExporter.html) - for exporting assets
  892. - `.materialManager`: [MaterialManager](https://threepipe.org/docs/classes/MaterialManager.html) - for managing materials and material extensions
  893. - `.plugins`: `Record`<`string`, [IViewerPlugin](https://threepipe.org/docs/interfaces/IViewerPlugin.html)> - Plugins added to the viewer
  894. - `.uiConfig`: [UiObjectConfig](https://repalash.com/uiconfig.js/interfaces/UiObjectConfig.html) - UI confguration for the viewer. Used to automatically generate UIs for the viewer and plugins.
  895. ## ThreeViewer
  896. Source Code: [src/viewer/ThreeViewer.ts](./src/viewer/ThreeViewer.ts)
  897. API Reference: [ThreeViewer](https://threepipe.org/docs/classes/ThreeViewer.html)
  898. `ThreeViewer` is the main entry point to the viewer. It provides all the API for managing the scene, camera, rendering, plugins, etc.
  899. It is initialized with either a canvas element or a `HTMLElement` for the container.
  900. The canvas element is used for rendering, and the options are used to configure the viewer.
  901. If the canvas element is not provided, a new canvas element is created and appended to the container.
  902. More options can be passed in the constructor to configure various built-in plugins and rendering features in the viewer.
  903. ### Constructor
  904. ```typescript
  905. import {ThreeViewer, CameraViewPlugin} from 'threepipe'
  906. // Create a viewer. All options except canvas/container are optional
  907. const viewer = new ThreeViewer({
  908. canvas: document.getElementById('mcanvas') as HTMLCanvasElement,
  909. // or a container like:
  910. // container: document.getElementById('mcontainer'),
  911. // container: document.body,
  912. // Set the render scale to render at device resolution and clamp to max 2.
  913. renderScale: 'auto',
  914. // or Set the render scale to render at device resolution
  915. // renderScale: window.devicePixelRatio,
  916. // modify the screen shader: See ScreenPass and ScreenPass.glsl for more details
  917. screenShader: `diffuseColor = diffuseColor * 2.0;`,
  918. // Add TonemapPlugin
  919. tonemap: true,
  920. // Use MSAA(anti-aliasing)
  921. msaa: false,
  922. // Use Uint8 RGBM HDR Render Pipeline. Provides better performance with post-processing. RenderManager Uses Half-float if set to false.
  923. rgbm: true,
  924. // Use rendered gbuffer as depth-prepass / z-prepass.
  925. zPrepass: false,
  926. // Options for AssetManager
  927. assetManager: {
  928. // Use a custom CacheStorage
  929. storage: caches.open('threepipe-assetmanager'),
  930. },
  931. // Use DropzonePlugin to add support for file drag and drop
  932. // Enable and set properties
  933. dropzone: {
  934. // Set allowed extensions
  935. allowedExtensions: ['png', 'glb', 'gltf'],
  936. // Automatically add downloaded assets
  937. autoAdd: true
  938. // autoImport: true,
  939. // domElement: document.body,
  940. // addOptions: { ... }
  941. // importOptions: { ... }
  942. },
  943. // By default its false
  944. // dropzone: false,
  945. // To Enable without options
  946. // dropzone: true
  947. // Add some plugins after viewer creation.
  948. plugins: [CameraViewPlugin, new CustomPlugin()],
  949. // Shorthand to load files immediately after viewer initialization
  950. load: {
  951. src: 'https://example.com/file.glb',
  952. environment: 'https://example.com/file.hdr',
  953. background: 'https://example.com/file.png',
  954. },
  955. onLoad: (viewer) => {
  956. // Called when all the files are loaded
  957. },
  958. })
  959. ```
  960. Check the interface [ThreeViewerOptions](https://threepipe.org/docs/interfaces/ThreeViewerOptions.html) for all the options.
  961. To dispose off the viewer and all its resources call [`viewer.dispose()`](https://threepipe.org/docs/classes/ThreeViewer.html#dispose) method.
  962. To dispose only the scene objects and not the complete viewer, use `viewer.scene.disposeSceneModels()`
  963. ### Plugin Functions
  964. ```typescript
  965. import {ThreeViewer, TonemapPlugin, DepthBufferPlugin, NormalBufferPlugin} from 'threepipe'
  966. const viewer = new ThreeViewer({...})
  967. // Add a plugin
  968. const plugin = viewer.addPluginSync(new TonemapPlugin())
  969. // plugins can be added with just the class also
  970. const plugin2 = viewer.addPluginSync(TonemapPlugin)
  971. // Add multiple plugins at once
  972. viewer.addPluginsSync([
  973. TonemapPlugin,
  974. new NormalBufferPlugin(),
  975. DepthBufferPlugin,
  976. // ...
  977. ])
  978. // Get a plugin
  979. const plugin3 = viewer.getPlugin(TonemapPlugin)
  980. // Get or add a plugin, when not sure if the plugin is already added
  981. const plugin4 = viewer.getOrAddPluginSync(TonemapPlugin)
  982. // Remove a plugin
  983. viewer.removePluginSync(TonemapPlugin)
  984. ```
  985. Note: all sync functions above have async counterparts like `addPlugin`, `getOrAddPlugin`,
  986. `removePlugin` that are used for async plugins.
  987. There are no async plugins built-in to threepipe yet.
  988. ### Import/Export Functions
  989. ```typescript
  990. import {ThreeViewer} from 'threepipe'
  991. const viewer = new ThreeViewer({...})
  992. // Load a 3d model
  993. const object = await viewer.load<IObject3D>('https://example.com/file.glb')
  994. // Load a material
  995. const material = await viewer.load<PhysicalMaterial>('https://example.com/file.pmat')
  996. // Load an image
  997. const texture = await viewer.load<ITexture>('https://example.com/file.png')
  998. // Import a model without adding to the scene
  999. const imported = await viewer.import('https://example.com/file.glb')
  1000. // Export the complete scene with viewer configuraion
  1001. const exportedScene = await viewer.exportScene({})
  1002. // Export an object
  1003. const exported = await viewer.export(object)
  1004. // Export a material
  1005. const exportedMaterial = await viewer.export(material)
  1006. // Export a texture
  1007. const exportedTexture = await viewer.export(texture)
  1008. // Export viewer and plugins configurations
  1009. const exportedConfig = await viewer.export(viewer)
  1010. // Export plugin configuration
  1011. const exportedPlugin = await viewer.exportPlugin(viewer.getPlugin(PluginClass))
  1012. // Set Background Image
  1013. await viewer.setBackgroundMap('https://example.com/file.png')
  1014. // Set Environment Map
  1015. await viewer.setEnvironmentMap('https://example.com/file.hdr')
  1016. // Add an imported object or a created three.js object to the scene
  1017. viewer.addSceneObject(imported)
  1018. ```
  1019. [`viewer.load`](https://threepipe.org/docs/classes/ThreeViewer.html#load) - Loads a single asset by path or [IAsset](https://threepipe.org/docs/interfaces/IAsset.html) object, and adds to the scene if its 3d object or loads it if it's a configuration It is the same as [AssetManager.addAssetSingle](https://threepipe.org/docs/classes/AssetManager.html#addAssetSingle). Use [AssetManager.addAsset](https://threepipe.org/docs/classes/AssetManager.html#addAsset) to load multiple assets from the same path like in case of zip bundles.
  1020. [`viewer.import`](https://threepipe.org/docs/classes/ThreeViewer.html#import) - Load a single asset but does not add to the scene or load the configuration. It is the same as [AssetManager.importer.importSingle](https://threepipe.org/docs/classes/AssetImporter.html#importSingle). Use [AssetManager.importer.import](https://threepipe.org/docs/classes/AssetImporter.html#import) to import multiple assets from the same path like in case of zip bundles.
  1021. [`viewer.export`](https://threepipe.org/docs/classes/ThreeViewer.html#export) - Exports an object, material, texture, render target or plugin configuration and returns a Blob. It is similar to [AssetManager.exporter.exportObject](https://threepipe.org/docs/classes/AssetExporter.html#exportObject) but adds support for exporting plugin and self(viewer) configs.
  1022. [`viewer.exportScene`](https://threepipe.org/docs/classes/ThreeViewer.html#exportScene) - Exports the scene model root and all configurations into a bundled `glb` file and returns a blob.
  1023. [`viewer.exportPlugin`](https://threepipe.org/docs/classes/ThreeViewer.html#exportPlugin) - Exports a plugin configuration and returns a blob.
  1024. [`viewer.setBackgroundMap`](https://threepipe.org/docs/classes/ThreeViewer.html#setBackgroundMap) - Sets the background map to the given texture or url. Also sets it as environment map if `setEnvironment` is `true` in the options.
  1025. [`viewer.setEnvironmentMap`](https://threepipe.org/docs/classes/ThreeViewer.html#setEnvironmentMap) - Sets the environment map to the given texture or url. Also sets it as background if `setBackground` is `true` in the options.
  1026. [`viewer.addSceneObject`](https://threepipe.org/docs/classes/ThreeViewer.html#addSceneObject) - Adds an imported object or a created three.js object to the scene model root. If an imported scene model root is passed, it will be loaded with viewer configuration, unless `importConfig` is `false` in the options.
  1027. ### Frame/Rendering Events
  1028. ```typescript
  1029. import {ThreeViewer} from 'threepipe'
  1030. const viewer = new ThreeViewer({...})
  1031. // Add a callback to be called before every frame, irrespective of whether enything is being rendered that frame
  1032. viewer.addEventListener('preFrame', (ev)=>{
  1033. console.log(ev);
  1034. // change something
  1035. viewer.setDirty() // let the viewer know to re-render the scene from this frame
  1036. })
  1037. // Add a callback to be called after every frame, irrespective of whether enything was rendered that frame
  1038. viewer.addEventListener('postFrame', (ev)=>{
  1039. console.log(ev);
  1040. // change something
  1041. viewer.setDirty() // let the viewer know to re-render the scene from next frame
  1042. })
  1043. // Add a callback to be called before every render, only if something is being rendered that frame
  1044. viewer.addEventListener('preRender', (ev)=>{
  1045. // canvas is about to be rendered, or re-rendered for progressive rendering
  1046. console.log(ev, viewer.renderManager.frameCount);
  1047. })
  1048. // Add a callback to be called after every render, only if something was rendered that frame
  1049. viewer.addEventListener('postRender', (ev)=>{
  1050. // canvas is rendered, or re-rendered for progressive rendering
  1051. console.log(ev);
  1052. })
  1053. // Listen to viewer.setDirty() calls
  1054. viewer.addEventListener('update', (ev)=>{
  1055. // viewer.setDirty() was called by some plugin or code
  1056. console.log(ev);
  1057. })
  1058. // to remove an event listener, first keep a reference to the callback
  1059. const callback = (ev)=>{ return }
  1060. viewer.addEventListener('preFrame', callback)
  1061. // then remove it
  1062. viewer.removeEventListener('preFrame', callback)
  1063. // Add a callback to be called only once for an event
  1064. viewer.doOnce('postFrame', () => viewer.canvas.toDataURL('image/png'))
  1065. // Enable/disable rendering in the viewer
  1066. viewer.renderEnabled = false
  1067. // do something with the canvas or load assets
  1068. await viewer.load('https://example.com/file.glb')
  1069. await viewer.load('https://example.com/file1.glb')
  1070. await viewer.load('https://example.com/file2.glb')
  1071. viewer.renderEnabled = true // all the assets will be rendered together in the next frame
  1072. ```
  1073. Check the [IViewerEvent](https://threepipe.org/docs/interfaces/IViewerEvent.html) interface for all the event types.
  1074. [`viewer.addEventListener`](https://threepipe.org/docs/classes/ThreeViewer.html#addEventListener) - Adds a callback to be called on the given event. The callback is called with an [IViewerEvent](https://threepipe.org/docs/interfaces/IViewerEvent.html) object.
  1075. [`viewer.removeEventListener`](https://threepipe.org/docs/classes/ThreeViewer.html#removeEventListener) - Removes a callback from the given event.
  1076. [`viewer.doOnce`](https://threepipe.org/docs/classes/ThreeViewer.html#doOnce) - Adds a callback to be called only once for the given event. The listener will be added and automatically removed after the first call.
  1077. ### Utility Functions
  1078. ```typescript
  1079. import {ThreeViewer} from 'threepipe'
  1080. const viewer = new ThreeViewer({...})
  1081. // Set the final render size directly and fit in container based on mode.
  1082. viewer.setRenderSize({width: 800, height: 600}, 'cover')
  1083. // Set size of the canvas
  1084. viewer.setSize({width: 800, height: 600})
  1085. // Set the render scale
  1086. viewer.renderManager.renderScale = Math.min(window.devicePixelRatio, 2)
  1087. // Traverse scene objects
  1088. viewer.traverseSceneObjects((object) => {
  1089. console.log(object)
  1090. // do something with object
  1091. })
  1092. // If the size is set by css or manually by javascript use `resize` to update the viewer
  1093. viewer.resize()
  1094. // Trigger re-render with `setDirty` when something changes and viewer is not notified internally
  1095. viewer.setDirty()
  1096. // Get snapshot of the canvas as a blob
  1097. const blob = await viewer.getScreenshotBlob({mimeTye: 'image/png', quality: 90})
  1098. // Get snapshot of the canvas as a data url
  1099. const dataUrl = await viewer.getScreenshotDataUrl({mimeTye: 'image/jpeg', quality: 85})
  1100. // Dispose viewer and all resources
  1101. viewer.canvas.remove() // canvas needs to be removed separately from the DOM
  1102. viewer.dispose()
  1103. ```
  1104. [`viewer.setRenderSize`](https://threepipe.org/docs/classes/ThreeViewer.html#setRenderSize) - Sets the rendering resolution and fits the canvas in container based on the mode. The modes are `cover`, `contain`, `fill`, `scale-down` and `none`. The canvas size and render scale is calculated automatically to match the render render.
  1105. [`viewer.setSize`](https://threepipe.org/docs/classes/ThreeViewer.html#setSize) - Sets the size of the canvas and updates the renderer and the camera. If no width/height is passed, canvas is set to 100% of the container.
  1106. [`viewer.traverseSceneObjects`](https://threepipe.org/docs/classes/ThreeViewer.html#traverseSceneObjects) - Loop through all the objects in the scene model root hierarchy and calls the callback function with each object.
  1107. [`viewer.resize`](https://threepipe.org/docs/classes/ThreeViewer.html#resize) - Mark that the canvas is resized. If the size is changed, the renderer and all render targets are resized.
  1108. [`viewer.setDirty`](https://threepipe.org/docs/classes/ThreeViewer.html#setDirty) - Triggers re-render on next `requestAnimationFrame` call.
  1109. [`viewer.getScreenshotBlob`](https://threepipe.org/docs/classes/ThreeViewer.html#getScreenshotBlob) - Returns a blob of the canvas screenshot. The blob can be used to download the screenshot or upload to a server.
  1110. [`viewer.getScreenshotDataUrl`](https://threepipe.org/docs/classes/ThreeViewer.html#getScreenshotDataUrl) - Returns a data url of the canvas screenshot. The data url can be used to display the screenshot in an image element.
  1111. [`viewer.dispose`](https://threepipe.org/docs/classes/ThreeViewer.html#dispose) - Disposes the viewer and all its resources. Use this to dispose the viewer when it is no longer needed. Note: the canvas element is not removed from the DOM and needs to be removed separately.
  1112. ## RenderManager
  1113. Source Code: [src/viewer/ViewerRenderManager.ts](./src/viewer/ViewerRenderManager.ts), [src/rendering/RenderManager.ts](./src/rendering/RenderManager.ts), [src/rendering/RenderTargetManager.ts](./src/rendering/RenderTargetManager.ts)
  1114. API Reference: [ViewerRenderManager](https://threepipe.org/docs/classes/ViewerRenderManager.html), [RenderManager](https://threepipe.org/docs/classes/RenderManager.html), [RenderTargetManager](https://threepipe.org/docs/classes/RenderTargetManager.html)
  1115. It manages the rendering, composition/postprocessing of the scene and provides helpers for rendering and render target management.
  1116. ```typescript
  1117. const viewer = new ThreeViewer({...})
  1118. const renderManager = viewer.renderManager
  1119. // Get the effect composer
  1120. const composer = renderManager.composer
  1121. // Get the three.js webgl renderer
  1122. const renderer = renderManager.renderer
  1123. // Get the main Render Pass in the pipeline
  1124. const renderPass = renderManager.renderPass
  1125. // Get the main Screen Pass in the pipeline
  1126. const screenPass = renderManager.screenPass
  1127. // Set the render scale
  1128. renderManager.renderScale = Math.min(window.devicePixelRatio, 2)
  1129. // Register a custom composer pass
  1130. const customPass: IPipelinePass = new CustomPass()
  1131. renderManager.registerPass(customPass)
  1132. // Unregister a custom composer pass
  1133. renderManager.unregisterPass(customPass)
  1134. // The pipeline is automatically created and sorted based on dependencies in pipeline pass.
  1135. // To check the built pipeline
  1136. console.log(renderManager.pipeline)
  1137. // Set a custom render pipeline
  1138. renderManager.autoBuildPipeline = false
  1139. renderManager.pipeline = ['depth', 'render', 'screen']
  1140. // Check the total frames rendererd
  1141. console.log(renderManager.totalFrameCount)
  1142. // Get the current frame count in progressive rendering
  1143. console.log(renderManager.frameCount)
  1144. // Force reset shadows when some object is moved
  1145. renderManager.resetShadows()
  1146. // Render Target Management
  1147. // Get the main composer target
  1148. const composerTarget = renderManager.composerTarget
  1149. // clone the target to get a copy of the target with all the default options
  1150. const clonedTarget = composeTarget.clone()
  1151. // Create a render target, same size as the canvas. The target are automatically resized when the canvas is resized
  1152. const renderTarget = renderManager.createTarget({
  1153. sizeMultiplier: 1, // size multiplier from the canvas. 0.5 will be half width and height of the canvas
  1154. type: UnsignedByteType,
  1155. // ... // See CreateRenderTargetOptions for all options
  1156. })
  1157. // Create a render target of custom size
  1158. const renderTarget2 = renderManager.createTarget({
  1159. size: {
  1160. width: 1024,
  1161. height: 1024,
  1162. },
  1163. type: HalfFloatType,
  1164. // ...
  1165. })
  1166. // Dispose the render target
  1167. renderManager.disposeTarget(renderTarget)
  1168. // Create and release temporary targets for in-pass rendering.
  1169. const tempTarget = renderManager.getTempTarget({
  1170. sizeMultiplier: 0.5,
  1171. type: HalfFloatType,
  1172. // ...
  1173. })
  1174. // do something
  1175. renderManager.releaseTempTarget(tempTarget)
  1176. // Set how many temporary targets can remain in memory for a specific set of options
  1177. renderManager.maxTempPerKey = 10 // default = 5
  1178. // Copy/Blit a texture to the canvas or another render target with standard or a custom material
  1179. renderManager.blit(destination, {source: sourceTexture})
  1180. // Clear color of the canvas
  1181. renderManager.clearColor({r: 0, g: 0, b: 0, a: 1, depth: true, viewport: new Vector4(...)})
  1182. // Clear of a render target
  1183. renderManager.clearColor(renderTarget, {r: 0, g: 0, b: 0, a: 1, target: renderTarget})
  1184. // Export a render target to a blob. The type is automatically picked from exr to png based on the render target
  1185. const blob = renderManager.exportRenderTarget(renderTarget, 'auto')
  1186. // Export a render target to png/jpeg data url. This will clamp any floating point targets to fit in png/jpeg
  1187. const dataUrl = renderManager.renderTargetToDataUrl(renderTarget, 'image/png')
  1188. // Read render target pixels to array buffer. Returns Uint8Array|Uint16Array|Float32Array based on the render target type
  1189. const buffer = renderManager.renderTargetToBuffer(renderTarget)
  1190. ```
  1191. [`renderManager.composer`](https://threepipe.org/docs/classes/ViewerRenderManager.html#composer) - The three.js [EffectComposer](https://threejs.org/docs/#api/en/postprocessing/EffectComposer) used for rendering the pipeline.
  1192. [`renderManager.renderer`](https://threepipe.org/docs/classes/ViewerRenderManager.html#renderer) - The three.js [WebGLRenderer](https://threejs.org/docs/#api/en/renderers/WebGLRenderer) used for rendering
  1193. [`renderManager.context`](https://threepipe.org/docs/classes/ViewerRenderManager.html#context) - Access the WebGL rendering context for the canvas.
  1194. [`renderManager.renderPass`](https://threepipe.org/docs/classes/ViewerRenderManager.html#renderPass) - The main render pass used in the render pipeline. Instance of three.js [RenderPass](https://threejs.org/docs/#api/en/postprocessing/RenderPass) with extra features like z prepass, rgbm rendering, blurred transmission, msaa and other optimizations.
  1195. [`renderManager.screenPass`](https://threepipe.org/docs/classes/ViewerRenderManager.html#screenPass) - The main screen pass used in the render pipeline. Instance of three.js [ShaderPass](https://threejs.org/docs/#api/en/postprocessing/ShaderPass) with extra features like material extension, custom fragment, overriding read buffer, re-render to screen on change, etc
  1196. [`renderManager.renderScale`](https://threepipe.org/docs/classes/RenderManager.html#renderScale) - Sets the render scale. All targets are scaled by this factor. This is equivalent to calling `EffectComposer.setPixelRatio` and `WebGLRenderer.setPixelRatio` in three.js.
  1197. [`renderManager.resetShadows`](https://threepipe.org/docs/classes/RenderManager.html#resetShadows) - Resets all shadow maps in the scene. This is useful when some object is moved and the shadows need to be updated. This is automatically called when `scene.setDirty` or any `object.setDirty` is called, and during animation with plugins.
  1198. ### Rendering Pipeline
  1199. [`renderManager.registerPass`](https://threepipe.org/docs/classes/RenderManager.html#registerPass) - Registers a custom composer pass to the render pipeline. See [IPipelinePass](https://threepipe.org/docs/interfaces/IPipelinePass.html) interface.
  1200. [`renderManager.unregisterPass`](https://threepipe.org/docs/classes/RenderManager.html#unregisterPass) - Unregisters a custom composer pass from the render pipeline.
  1201. [`renderManager.pipeline`](https://threepipe.org/docs/classes/RenderManager.html#pipeline) - The render pipeline array. The array is automatically sorted based on dependencies in the pipeline passes.
  1202. [`renderManager.autoBuildPipeline`](https://threepipe.org/docs/classes/RenderManager.html#autoBuildPipeline) - If `true`, the pipeline is automatically created and sorted based on dependencies in pipeline pass. If `false`, the pipeline is built only once and is not changed after that. The default value is `true`.
  1203. [`renderManager.totalFrameCount`](https://threepipe.org/docs/classes/RenderManager.html#totalFrameCount) - The total frames rendered since the render manager was created.
  1204. [`renderManager.frameCount`](https://threepipe.org/docs/classes/RenderManager.html#frameCount) - The current frame count in progressive rendering. This is useful for progressive rendering effects like progressive shadows, gi, denoising, baking, anti-aliasing, and many other effects.
  1205. ### Render Targets management
  1206. [`renderManager.composerTarget`](https://threepipe.org/docs/classes/RenderManager.html#composerTarget), [`renderManager.composerTarget1`](https://threepipe.org/docs/classes/RenderManager.html#composerTarget1) - The main targets used in [EffectComposer2](https://threepipe.org/docs/classes/EffectComposer2)
  1207. [`renderManager.createTarget`](https://threepipe.org/docs/classes/RenderTargetManager.html#createTarget) - Creates a render target with the given options. The render target is automatically resized when the canvas is resized if `sizeMultiplier` is used. See [CreateRenderTargetOptions](https://threepipe.org/docs/interfaces/CreateRenderTargetOptions.html) for options
  1208. [`renderManager.disposeTarget`](https://threepipe.org/docs/classes/RenderTargetManager.html#disposeTarget) - Disposes a render target and removes it from the render target manager.
  1209. [`renderManager.getTempTarget`](https://threepipe.org/docs/classes/RenderTargetManager.html#getTempTarget) - Gets a temporary render target with the given options. The render target is automatically resized when the canvas is resized if `sizeMultiplier` is used. See [CreateRenderTargetOptions](https://threepipe.org/docs/interfaces/CreateRenderTargetOptions.html) for options
  1210. [`renderManager.releaseTempTarget`](https://threepipe.org/docs/classes/RenderTargetManager.html#releaseTempTarget) - Releases a temporary render target and adds it back to the render target manager.
  1211. [`renderManager.maxTempPerKey`](https://threepipe.org/docs/classes/RenderTargetManager.html#maxTempPerKey) - Sets how many temporary targets can remain in memory for a specific set of options. The default value is `5`.
  1212. ### Helpers
  1213. [`renderManager.blit`](https://threepipe.org/docs/classes/RenderManager.html#blit) - Blits a texture to the canvas or another render target with standard or a custom material. See [RendererBlitOptions](https://threepipe.org/docs/interfaces/RendererBlitOptions.html) for options.
  1214. [`renderManager.clearColor`](https://threepipe.org/docs/classes/RenderManager.html#clearColor) - Clears the color of the canvas or a render target.
  1215. [`renderManager.exportRenderTarget`](https://threepipe.org/docs/classes/RenderManager.html#exportRenderTarget) - Exports a render target to a blob. The type is automatically picked from exr to png based on the render target.
  1216. [`renderManager.renderTargetToDataUrl`](https://threepipe.org/docs/classes/RenderManager.html#renderTargetToDataUrl) - Exports a render target to png/jpeg data url string. This will clamp any floating point targets to fit in png/jpeg. See [RenderTargetToDataUrlOptions](https://threepipe.org/docs/interfaces/RenderTargetToDataUrlOptions.html) for options.
  1217. [`renderManager.renderTargetToBuffer`](https://threepipe.org/docs/classes/RenderManager.html#renderTargetToBuffer) - Reads render target pixels to a Uint8Array|Uint16Array|Float32Array array buffer.
  1218. ## RootScene
  1219. Source Code: [src/core/object/RootScene.ts](./src/core/object/RootScene.ts)
  1220. API Reference: [RootScene](https://threepipe.org/docs/classes/RootScene.html)
  1221. RootScene is the main scene that is rendered in the canvas.
  1222. It is an instance of three.js [Scene](https://threejs.org/docs/#api/en/scenes/Scene) with extra features including separation between model root and others,
  1223. backgroundColor, background map and background intensity,
  1224. environment map rotation and intensity, fixed env map direction patch, event bubbling in the scene hierarchy, scene config serialization, main camera management,
  1225. automatic active near far management based on scene bounds, disposing complete scene hierarchy, etc
  1226. ```typescript
  1227. const viewer = new ThreeViewer({...})
  1228. const scene = viewer.scene
  1229. // List oll loaded objects in the model root
  1230. console.log(scene.modelRoot.children)
  1231. // Set the background color
  1232. scene.setBackgroundColor('#ffffff')
  1233. // or
  1234. // scene.backgroundColor = new Color('#ffffff')
  1235. // or
  1236. // scene.backgroundColor.set('#ffffff')
  1237. // scene.onBackgroundChange() // this must be called when not using a setter or set function.
  1238. // Set a texture as background (or use viewer.setBackgroundMap). When both color and texture are set, they are multiplied
  1239. scene.background = customTexture
  1240. // Set the background same as the environment map
  1241. scene.background = 'environment' // background is automatically changed when the environment changes.
  1242. // or
  1243. // scene.background = scene.environment
  1244. // Set the background intensity
  1245. scene.backgroundIntensity = 2
  1246. // Set a texture as environment map (or use viewer.setEnvironmentMap)
  1247. scene.environment = customTexture
  1248. // Set the environment intensity
  1249. scene.envMapIntensity = 2
  1250. // Set the environment map rotation
  1251. scene.environment.rotation = Math.PI / 2
  1252. // Set Fixed env direction (rotate environment according the the camera)
  1253. scene.fixedEnvMapDirection = true
  1254. // Get the main camera used for rendering
  1255. const camera: PerspectiveCamera2 = scene.mainCamera
  1256. // Set camera props
  1257. camera.position.set(0, 0, 10)
  1258. camera.target.set(0, 0, 0)
  1259. camera.setDirty() // this needs to be called to notify the viewer to re-render the scene
  1260. // Traverse the model root hierarchy (or just use viewer.traverseSceneObjects)
  1261. scene.modelRoot.traverse((object) => {
  1262. console.log(object)
  1263. // do something with object
  1264. })
  1265. // Access the default camera (same as mainCamera if not changed explicitly)
  1266. const defaultCamera: ICamera = scene.defaultCamera
  1267. // Dispose all assets in the modelRoot
  1268. scene.disposeSceneModels()
  1269. // Remove all objects from the modelRoot
  1270. scene.clearSceneModels()
  1271. // Dispose the scene and all its resources and children
  1272. scene.dispose()
  1273. // Get bounds of the scene model root
  1274. const bounds = scene.getBounds(true, true) // true for precise bounds and ignore invisible
  1275. // Add an object to the scene or its model root depending on the options (or just use viewer.addSceneObject)
  1276. scene.addObject(object, {addToRoot: false}) // adds to the scene directly when addToRoot is true
  1277. // Load an imported model root from the asset importer
  1278. scene.loadModelRoot(object)
  1279. // notify that something has changed in the scene for re-render
  1280. scene.setDirty()
  1281. // notify that some object has changed in the scene for scene refresh(like shadow refresh, ground etc) and re-render
  1282. scene.refreshScene()
  1283. // or
  1284. scene.setDirty({refreshScene: true})
  1285. // set geometryChanged: false to prevent shadow recompute
  1286. scene.refreshScene({geometryChanged: false})
  1287. // refresh active near far. (in most cases this is done automatically and need not be called)
  1288. scene.refreshActiveNearFar()
  1289. ```
  1290. [`scene.modelRoot`](https://threepipe.org/docs/classes/RootScene.html#modelRoot) - The root object. All the objects loaded in the viewer are added to this object. And this is exported when exporting the gltf. Everything else like meta or UI objects can be added outside this.
  1291. [`scene.backgroundColor`](https://threepipe.org/docs/classes/RootScene.html#backgroundColor) - The background color of the scene. Can be a `Color | null`. This is not the same as `scene.background`. When both backgroundColor and background are set, they are multiplied.
  1292. [`scene.background`](https://threepipe.org/docs/classes/RootScene.html#background) - The background of the scene. This is the same as `scene.background` in three.js. This can be a texture or a color or null, but it's preferred to use `scene.backgroundColor` for color, and this for texture, then both can be used together.
  1293. [`scene.setBackgroundColor`](https://threepipe.org/docs/classes/RootScene.html#setBackgroundColor) - Set the background color from a string, number or color. Same as setting `backgroundColor` to a new color value.
  1294. [`scene.backgroundIntensity`](https://threepipe.org/docs/classes/RootScene.html#backgroundIntensity) - The background intensity of the scene. This is the same as `scene.backgroundIntensity` in three.js.
  1295. [`scene.environment`](https://threepipe.org/docs/classes/RootScene.html#environment) - The environment map of the scene. This is the same as `scene.environment` in three.js.
  1296. `scene.environment.rotation` - The rotation of the environment map around the y-axis.
  1297. [`scene.envMapIntensity`](https://threepipe.org/docs/classes/RootScene.html#envMapIntensity) - The environment intensity of the scene.
  1298. [`scene.fixedEnvMapDirection`](https://threepipe.org/docs/classes/RootScene.html#fixedEnvMapDirection) - If `true`, the environment map is rotated according to the camera. This is the same as `scene.fixedEnvMapDirection` in three.js.
  1299. [`scene.mainCamera`](https://threepipe.org/docs/classes/RootScene.html#mainCamera) - The main camera used for rendering. This is the same as `scene.mainCamera` in three.js.
  1300. [`scene.defaultCamera`](https://threepipe.org/docs/classes/RootScene.html#defaultCamera) - The default camera used for rendering. This is the same as `scene.defaultCamera` in three.js.
  1301. [`scene.disposeSceneModels`](https://threepipe.org/docs/classes/RootScene.html#disposeSceneModels) - Disposes all assets in the modelRoot.
  1302. [`scene.clearSceneModels`](https://threepipe.org/docs/classes/RootScene.html#clearSceneModels) - Removes all objects from the modelRoot.
  1303. [`scene.dispose`](https://threepipe.org/docs/classes/RootScene.html#dispose) - Disposes the scene and all its resources and children.
  1304. [`scene.getBounds`](https://threepipe.org/docs/classes/RootScene.html#getBounds) - Gets the bounds of the scene model root. Returns an instance of three.js [Box3](https://threejs.org/docs/#api/en/math/Box3) with min and max bounds according to parameters.
  1305. [`scene.addObject`](https://threepipe.org/docs/classes/RootScene.html#addObject) - Adds an object to the scene or its model root depending on the options. If `addToRoot` is `true`, the object is added to the model root, else it is added to the scene directly.
  1306. [`scene.setDirty`](https://threepipe.org/docs/classes/RootScene.html#setDirty) - Notifies that something has changed in the scene for re-render.
  1307. [`scene.refreshScene`](https://threepipe.org/docs/classes/RootScene.html#refreshScene) - Notifies that some object has changed in the scene for scene refresh(like shadow refresh, ground etc) and re-render. Slower than `setDirty`, as it refreshes shadows, updates bounds, etc.
  1308. [`scene.refreshActiveNearFar`](https://threepipe.org/docs/classes/RootScene.html#refreshActiveNearFar) - Refreshes active near far. (in most cases this is done automatically and need not be called)
  1309. [`scene.loadModelRoot`](https://threepipe.org/docs/classes/RootScene.html#loadModelRoot) - Loads an imported model root from the asset importer. This is used internally and in most cases, you don't need to call this.
  1310. ### Scene Events
  1311. RootScene dispatches many events that are useful when writing app logic or plugins
  1312. `'sceneUpdate'` - Listen to `refreshScene` called in RootScene. When some object changes.
  1313. `'addSceneObject'` - When a new object is added to the scene
  1314. `'mainCameraChange'` - When the main camera is changed to some other camera.
  1315. `'mainCameraUpdate'` - When some properties in the current main camera has changed.
  1316. `'environmentChanged'` - When the environment map changes
  1317. `'backgroundChanged'` - When the background map or color changes
  1318. `'materialUpdate`' - When a material in the scene has updated. (setDirty called on the material)
  1319. `'objectUpdate`' - When a object in the scene has updated. (setDirty called on the object)
  1320. `'textureUpdate`' - When a texture in the scene has updated. (setDirty called on the texture)
  1321. `'cameraUpdate`' - When a camera in the scene has updated.
  1322. (setDirty called on the camera)
  1323. `'geometryUpdate`' - When a geometry in the scene has updated.
  1324. (setDirty called on the geometry)
  1325. `'geometryChanged`' - When a geometry is changed on any mesh
  1326. `'materialChanged'` - When a material is changed on any mesh
  1327. Check [IObject3DEventTypes](https://threepipe.org/docs/interfaces/IObject3DEventTypes.html) and[ISceneEventTypes](https://threepipe.org/docs/interfaces/ISceneEventTypes.html) for more information.
  1328. ## ICamera
  1329. Source Code: [src/core/camera/PerspectiveCamera2.ts](./src/core/camera/PerspectiveCamera2.ts), [src/core/ICamera.ts](./src/core/ICamera.ts)
  1330. API Reference: [PerspectiveCamera2](https://threepipe.org/docs/classes/PerspectiveCamera2.html), [ICamera](https://threepipe.org/docs/interfaces/ICamera.html)
  1331. ICamera is an interface for a camera that extends the three.js [Camera](https://threejs.org/docs/#api/en/cameras/Camera).
  1332. PerspectiveCamera2 implements the interface,
  1333. extending from three.js [PerspectiveCamera](https://threejs.org/docs/#api/en/cameras/PerspectiveCamera) with extra features like target, automatic aspect management, automatic near far management(from RootScene), camera control attachment and hooks(like OrbitControls) and the ability to set as the main camera in the root scene.
  1334. ```typescript
  1335. import {OrbitControls3} from './OrbitControls3'
  1336. const viewer = new ThreeViewer({...})
  1337. const camera: PerspectiveCamera2 = viewer.scene.mainCamera
  1338. // Set the camera position
  1339. camera.position.set(0, 0, 10)
  1340. // Set the camera target (where the camera looks at)
  1341. camera.target.set(0, 0, 0)
  1342. // Set the camera fov
  1343. camera.fov = 45
  1344. // Set the camera aspect ratio
  1345. camera.autoAspect = false // disable automatic aspect management based on the canvas size
  1346. camera.aspect = 1
  1347. // Set camera near far bounds.
  1348. // Near, Far plane will be calculated automatically within these limits
  1349. // Try changing these values when encountering z-fighting issues or far-plane clipping
  1350. camera.minNearPlane = 0.5 // min near plane
  1351. camera.maxFarPlane = 10 // max far plane
  1352. // Set a custom camera near far
  1353. camera.autoNearFar = false // disable automatic near far management based on the scene bounds
  1354. camera.minNearPlane = 0.1 // near plane
  1355. camera.maxFarPlane = 1000 // far plane
  1356. // this needs to be called to notify the viewer to re-render the scene
  1357. // in most cases this is done internally. But calling this does not have much impact
  1358. camera.setDirty()
  1359. // Check if user can interact with the camera. Also checks if its the main camera.
  1360. console.log(camera.canUserInteract)
  1361. // Get the camera controls (orbit controls for the default camera)
  1362. const controls: OrbitControls3 = camera.controls
  1363. // Disable controls
  1364. controls.enabled = false
  1365. // Change the controls mode
  1366. camera.controlsMode = 'none' // this will remove the current controls.
  1367. // Register a custom camera controls
  1368. camera.setControlsCtor('customOrbit', (camera, domElement) => new CustomOrbitControls(camera, domElement))
  1369. // Set the camera controls
  1370. camera.controlsMode = 'customOrbit' // this will initialize the controls with the customOrbit constructor and set it on the camera
  1371. // Disable interactions to the camera. (eg when animating)
  1372. camera.setInteractions(false, 'animation')
  1373. // Enable interactions back
  1374. camera.setInteractions(true, 'animation') // this will enable interactions when all the keys have been set to true(which were set to false earlier)
  1375. // Force refresh aspect ratio (this is done automatically with a ResizeObserver on the canvas in the viewer)
  1376. camera.refreshAspect()
  1377. // Set the camera as the main camera
  1378. camera.activateMain()
  1379. // Deactivate the camera as the main camera
  1380. camera.deactivateMain()
  1381. ```
  1382. [`camera.target`](https://threepipe.org/docs/classes/PerspectiveCamera2.html#target) - The target of the camera. This is the same as `controls.target` in three.js. The target is always in world-space coordinates, as opposed to position, rotation, and scale which are always relative to their parent.
  1383. [`camera.autoAspect`](https://threepipe.org/docs/classes/PerspectiveCamera2.html#autoAspect) - If `true`, the aspect ratio is automatically calculated based on the canvas size.
  1384. [`camera.aspect`](https://threepipe.org/docs/classes/PerspectiveCamera2.html#aspect) - The aspect ratio of the camera. This is the same as `camera.aspect` in three.js. This is only used when `camera.autoAspect` is `false`.
  1385. [`camera.minNearPlane`](https://threepipe.org/docs/classes/PerspectiveCamera2.html#minNearPlane) - The minimum near plane of the camera. This is the same as `camera.near` in three.js when `camera.autoNearFar` is `false`, otherwise it is the minimum near plane distance from the camera allowed when computing automatically
  1386. [`camera.maxFarPlane`](https://threepipe.org/docs/classes/PerspectiveCamera2.html#maxFarPlane) - The maximum far plane of the camera. This is the same as `camera.far` in three.js when `camera.autoNearFar` is `false`, otherwise it is the maximum far plane distance from the camera allowed when computing automatically
  1387. [`camera.autoNearFar`](https://threepipe.org/docs/classes/PerspectiveCamera2.html#autoNearFar) - If `true` (default), the near and far planes are automatically calculated based on the scene bounds.
  1388. [`camera.setDirty`](https://threepipe.org/docs/classes/PerspectiveCamera2.html#setDirty) - Notifies that something has changed in the camera for re-render.
  1389. [`camera.canUserInteract`](https://threepipe.org/docs/classes/PerspectiveCamera2.html#canUserInteract) - Checks if user can interact with the camera. Also checks if it's the main camera.
  1390. [`camera.controls`](https://threepipe.org/docs/classes/PerspectiveCamera2.html#controls) - Get the current camera controls set on the camera. This can be changed by changing `controlsMode`
  1391. [`camera.controlsMode`](https://threepipe.org/docs/classes/PerspectiveCamera2.html#controlsMode) - Get or set the current controls that are attached to the camera. More modes can be registered with `setControlsCtor`. Default for the default camera is `orbit` and `none` for any new cameras.
  1392. [`camera.setControlsCtor`](https://threepipe.org/docs/classes/PerspectiveCamera2.html#setControlsCtor) - Register a custom camera controls constructor. The controls can be set by setting `controlsMode` to the key/name of the controls.
  1393. [`camera.setInteractions`](https://threepipe.org/docs/classes/PerspectiveCamera2.html#setInteractions) - If `true`, the camera can be interacted with. This is useful when animating the camera or using the window scroll or programmatically automating the viewer. Using this multiple plugins can disable interactions and it will be enabled again when all of them enable it back.
  1394. [`camera.refreshAspect`](https://threepipe.org/docs/classes/PerspectiveCamera2.html#refreshAspect) - Force refresh aspect ratio (this is done automatically with a ResizeObserver on the canvas in the viewer or when `viewer.resize()` is called)
  1395. [`camera.activateMain`](https://threepipe.org/docs/classes/PerspectiveCamera2.html#activateMain) - Set the camera as the main camera. This is the same as doing `scene.mainCamera = camera`. The camera needs to be in the scene hierarchy for this to work.
  1396. [`camera.deactivateMain`](https://threepipe.org/docs/classes/PerspectiveCamera2.html#deactivateMain) - Deactivate the camera as the main camera.
  1397. See also [CameraViewPlugin](#cameraviewplugin) for camera focus animation.
  1398. Note: The constructor signature of `PerspectiveCamera2` is different `PerspectiveCamera`(from three.js), since it requires the canvas and the controlsMode during creation.
  1399. Because of this `PerspectiveCamera0` is provided with the same signature as `PerspectiveCamera` for compatibility, in case the controls functionality is not required.
  1400. ## AssetManager
  1401. Source Code: [src/assetmanager/AssetManager.ts](./src/assetmanager/AssetManager.ts)
  1402. API Reference: [AssetManager](https://threepipe.org/docs/classes/AssetManager.html)
  1403. `AssetManager` is a class that manages the loading and exporting of assets and provides helpers for caching assets. It is used internally in the viewer and can be used to load assets outside the viewer. It provides a modular framework for adding more asset loaders and exporters.
  1404. ```typescript
  1405. const viewer = new ThreeViewer({...})
  1406. const assetManager = viewer.assetManager
  1407. // Add an asset or an asset bundle
  1408. const assets = await assetManager.addAsset('https://example.com/model.zip')
  1409. // or
  1410. const assets1 = await assetManager.addAsset({
  1411. path: 'https://example.com/model.zip',
  1412. file: blob,
  1413. })
  1414. // Get the storage used in the asset manager for caching
  1415. const storage: Cache | Storage = assetManager.storage
  1416. // Get the importer. Provides low level functions to import assets
  1417. const importer = assetManager.importer
  1418. // import a file by asset or url
  1419. const file = await importer.import('https://example.com/model.gltf')
  1420. // Import a Map<string, File> from drag drop
  1421. const res = await importer.importFiles(mapOfFiles, {})
  1422. // Register a custom path that maps to a File object. Useful when some file types have path references to other files.
  1423. importer.registerFile('/myFile.png', file) // this returns the three.js loader for that kind of file.
  1424. // Unregister the path
  1425. importer.unregisterFile('/myFile.png')
  1426. // Unregister all files and clear the loader cache(memory, not storage)
  1427. importer.clearCache()
  1428. // Add custom importers (check extra load plugins for more examples)
  1429. importer.addImporter(new Importer(class extends PLYLoader implements ILoader {
  1430. transform(res: BufferGeometry, _: AnyOptions): Mesh | undefined {
  1431. return res ? new Mesh(res, new PhysicalMaterial({color: new Color(1, 1, 1)})) : undefined
  1432. }
  1433. }, ['ply'], ['text/plain+ply'], false))
  1434. // Get the exporter. Provides low level functions to export assets
  1435. const exporter = assetManager.exporter
  1436. // Export any IObject3D, IMaterial, ITexture, IRenderTarget
  1437. const exported = exporter.exportObject(obj, options)
  1438. // Add a custom exporter
  1439. exporter.addExporter({
  1440. ext: ['gltf', 'glb'], // file extensions
  1441. extensions: [], // extensions for the exporter
  1442. ctor: (assetExporter, iexporter) => {
  1443. return new GLTFExporter2()
  1444. }
  1445. })
  1446. // Material Manager
  1447. const materialManager = assetManager.materialManager
  1448. // Create a material of type
  1449. const mat1 = materialManager.create('physical')
  1450. const mat2 = materialManager.create('unlit')
  1451. // find or create a material by uuid
  1452. const mat3 = materialManager.findOrCreate('00000000-0000-0000-0000-000000000000', {color: '#ffffff'})
  1453. // find a material creation template
  1454. const template = materialManager.findTemplate('physical')
  1455. // Get all materials
  1456. const materials = materialManager.getAllMaterials()
  1457. // Get all materials of type
  1458. const materials2 = materialManager.getMaterialsOfType(PhysicalMaterial.TypeSlug)
  1459. // register a custom material to the manager for tracking and extensions
  1460. // Note all materials created in threepipe internally are registered automatically on creation or when added to any scene object.
  1461. materialManager.registerMaterial(customMat)
  1462. // unregister
  1463. materialManager.unregisterMaterial(customMat)
  1464. // clear all material references
  1465. materialManager.clearMaterials()
  1466. // Register a custom material template
  1467. materialManager.registerTemplate({
  1468. generator: (params: any) => new PhysicalMaterial(params),
  1469. name: 'custom',
  1470. materialType: PhysicalMaterial.TYPE,
  1471. params: {
  1472. color: '#ffffff',
  1473. roughness: 0.5,
  1474. metalness: 0.5,
  1475. },
  1476. })
  1477. const mat4 = materialManager.create('custom')
  1478. // convert a standard three.js material to threepipe material
  1479. const mat5 = materialManager.convertToIMaterial(new ShadowMaterial(), {materialTemplate: 'test'})
  1480. // register a custom material extension for all materials in the viewer
  1481. materialManager.registerMaterialExtension(customExtension)
  1482. // unregister
  1483. materialManager.unregisterMaterialExtension(customExtension)
  1484. // remove all extensions
  1485. materialManager.clearExtensions()
  1486. // Apply a material properties to other material(s) in the scene by name or uuid
  1487. materialManager.applyMaterial(goldMaterial, 'METAL') // this will copy the properties from goldMaterial to all the materials(or objects) in the viewer with the name METAL.
  1488. // export a material as JSON. Note: use AssetExporter instead to export all the embedded assets and properties properly.
  1489. const blob = materialManager.exportMaterial(mat)
  1490. // dispose manager and all materials.
  1491. materialManager.dispose()
  1492. ```
  1493. [`assetManager.addAsset`](https://threepipe.org/docs/classes/AssetManager.html#addAsset) - Add an asset or an asset bundle. Returns a promise that resolves to an array of asset objects. An asset can contain multiple objects, hence an array is returned. Use shorthand `viewer.load(path)` to load a single asset from a single file.
  1494. [`assetManager.storage`](https://threepipe.org/docs/classes/AssetManager.html#storage) - Get the storage used in the asset manager for caching. This is the storage that can be passed in the `ThreeViewer` contructor options.
  1495. [`assetManager.importer`](https://threepipe.org/docs/classes/AssetManager.html#importer) - Get the importer. Provides low-level functions to import assets. This is an instance of [AssetImporter](https://threepipe.org/docs/classes/AssetImporter.html).
  1496. [`assetManager.exporter`](https://threepipe.org/docs/classes/AssetManager.html#exporter) - Get the exporter. Provides low-level functions to export assets. This is an instance of [AssetExporter](https://threepipe.org/docs/classes/AssetExporter.html).
  1497. ### AssetImporter
  1498. [`importer.import`](https://threepipe.org/docs/classes/AssetImporter.html#import) - Import a file by asset or url. Returns a promise that resolves to a [File](https://threepipe.org/docs/classes/File.html) object.
  1499. [`importer.importFiles`](https://threepipe.org/docs/classes/AssetImporter.html#importFiles) - Import a Map<string, File> from drag and drop. Returns a promise that resolves to a Map<string, any[]> of imported object arrays.
  1500. [`importer.registerFile`](https://threepipe.org/docs/classes/AssetImporter.html#registerFile) - Register a custom path that maps to a File object. Useful when some file types have path references to other files. Like when importing a .zip with a .gltf file that references a .bin file, or when loading remote files from custom local cache implementation.
  1501. [`importer.unregisterFile`](https://threepipe.org/docs/classes/AssetImporter.html#unregisterFile) - Unregister the path.
  1502. [`importer.clearCache`](https://threepipe.org/docs/classes/AssetImporter.html#clearCache) - Unregister all the registered files and clear the loader cache(memory cache, not cache-storage).
  1503. [`importer.addImporter`](https://threepipe.org/docs/classes/AssetImporter.html#addImporter) - Add custom importers (check extra load plugins for more examples). This allows to pass a class to a ILoader, that is used to import assets. Loaders are only created when a file is being loaded of that type. And they remain in the loader cache until `clearCache` or `clearLoaderCache` is called.
  1504. ### AssetExporter
  1505. [`exporter.exportObject`](https://threepipe.org/docs/classes/AssetExporter.html#exportObject) - Export any IObject3D, IMaterial, ITexture, IRenderTarget. Returns a promise that resolves to an exported object. Use `viewer.export` or `AssetExporterPlugin`, which provide more features and shortcuts to export viewer, scene and plugins as well.
  1506. [`exporter.addExporter`](https://threepipe.org/docs/classes/AssetExporter.html#addExporter) - Add a custom exporter for a custom file type.
  1507. ### MaterialManager
  1508. [`materialManager.create`](https://threepipe.org/docs/classes/MaterialManager.html#create) - Create a new material of a given type and with passed properties. Returns an implementation of [IMaterial](https://threepipe.org/docs/interfaces/IMaterial.html).
  1509. [`materialManager.findOrCreate`](https://threepipe.org/docs/classes/MaterialManager.html#findOrCreate) - Find or create a material by uuid. Returns an instance of [IMaterial](https://threepipe.org/docs/interfaces/IMaterial.html). If a material with the uuid exists, it is returned, else a new material is created with the passed properties.
  1510. [`materialManager.findTemplate`](https://threepipe.org/docs/classes/MaterialManager.html#findTemplate) - Find a material creation template. Returns an instance of [IMaterialTemplate](https://threepipe.org/docs/interfaces/IMaterialTemplate.html). Material templates are used to create materials of a given type with default properties.
  1511. [`materialManager.getAllMaterials`](https://threepipe.org/docs/classes/MaterialManager.html#getAllMaterials) - Get all materials registered with the manager.
  1512. [`materialManager.getMaterialsOfType`](https://threepipe.org/docs/classes/MaterialManager.html#getMaterialsOfType) - Get all materials of a specific type. Pass in the typeslug from the class like `pmat` or `dmat` to identify the material.
  1513. [`materialManager.registerMaterial`](https://threepipe.org/docs/classes/MaterialManager.html#registerMaterial) - Register a new material to the manager for tracking and extensions. Note: all materials created in threepipe internally or any that are set to any object in the scene are registered automatically on creation or when used
  1514. [`materialManager.unregisterMaterial`](https://threepipe.org/docs/classes/MaterialManager.html#unregisterMaterial) - Unregister a material from the manager.
  1515. [`materialManager.clearMaterials`](https://threepipe.org/docs/classes/MaterialManager.html#clearMaterials) - Clear all registered material references.
  1516. [`materialManager.registerTemplate`](https://threepipe.org/docs/classes/MaterialManager.html#registerTemplate) - Register a custom material template. Requires an instance of [IMaterialTemplate](https://threepipe.org/docs/interfaces/IMaterialTemplate.html). Material templates are used to create materials of a given type with default properties.
  1517. [`materialManager.convertToIMaterial`](https://threepipe.org/docs/classes/MaterialManager.html#convertToIMaterial) - Convert/upgrade a standard three.js material to threepipe material, by making it conform to [IMaterial](https://threepipe.org/docs/interfaces/IMaterial.html).
  1518. [`materialManager.registerMaterialExtension`](https://threepipe.org/docs/classes/MaterialManager.html#registerMaterialExtension) - Register a custom material extension for all materials in the viewer. Requires an instance of [IMaterialExtension](https://threepipe.org/docs/interfaces/IMaterialExtension.html). Material extensions are used to add custom properties, methods, uniforms, defines, shader patches etc to predefined materials. The extensions are added to the material when the mateiral or extension is registered to the manager.
  1519. [`materialManager.unregisterMaterialExtension`](https://threepipe.org/docs/classes/MaterialManager.html#unregisterMaterialExtension) - Unregister a material extension from the manager.
  1520. [`materialManager.clearExtensions`](https://threepipe.org/docs/classes/MaterialManager.html#clearExtensions) - Remove all material extensions from the manager.
  1521. [`materialManager.applyMaterial`](https://threepipe.org/docs/classes/MaterialManager.html#applyMaterial) - Apply a material properties to other material(s) in the scene by name or uuid. This is useful when you want to change the properties of all materials with a given name or uuid. This can also be a regex, in that case a regex.match will be performed on the material/object name.
  1522. [`materialManager.exportMaterial`](https://threepipe.org/docs/classes/MaterialManager.html#exportMaterial) - Export a material as JSON. Note: use `viewer.export` or `AssetExporter` instead to export all the embedded assets properly.
  1523. [`materialManager.dispose`](https://threepipe.org/docs/classes/MaterialManager.html#dispose) - Dispose manager and all materials.
  1524. ## Other classes and interfaces
  1525. Threepipe provides various interfaces and classes for for three.js objects with upgraded features like UI events, serialization, etc.
  1526. These can be used while developing new apps to get better developer experience and features.
  1527. When standard three.js instances are added to the scene, they are automatically upgraded automatically at runtime to make them work with the rest of the framework.
  1528. Some important interfaces:
  1529. * [IObject3D](https://threepipe.org/docs/interfaces/IObject3D.html) - Interface for an extended version of three.js [Object3D](https://threejs.org/docs/#api/en/core/Object3D).
  1530. * [ILight](https://threepipe.org/docs/interfaces/ILight.html) - Interface for an extended version of three.js [Light](https://threejs.org/docs/#api/en/lights/Light).
  1531. * [ICamera](https://threepipe.org/docs/interfaces/ICamera.html) - Interface for an extended version of three.js [Camera](https://threejs.org/docs/#api/en/cameras/Camera).
  1532. * [IMaterial](https://threepipe.org/docs/interfaces/IMaterial.html) - Interface for an extended version of three.js [Material](https://threejs.org/docs/#api/en/materials/Material).
  1533. * [ITexture](https://threepipe.org/docs/interfaces/ITexture.html) - Interface for an extended version of three.js [Texture](https://threejs.org/docs/#api/en/textures/Texture).
  1534. * [IRenderTarget](https://threepipe.org/docs/interfaces/IRenderTarget.html) - Interface for an extended version of three.js [WebGLRenderTarget](https://threejs.org/docs/#api/en/renderers/WebGLRenderTarget).
  1535. * [IGeometry](https://threepipe.org/docs/interfaces/IGeometry.html) - Interface for an extended version of three.js [BufferGeometry](https://threejs.org/docs/#api/en/core/BufferGeometry).
  1536. * [IScene](https://threepipe.org/docs/interfaces/IScene.html) - Interface for an extended version of three.js [Scene](https://threejs.org/docs/#api/en/scenes/Scene).
  1537. * [IRenderManager](https://threepipe.org/docs/interfaces/IRenderManager.html) - Interface for rendering and render target manager.
  1538. Some important classes
  1539. * [Mesh2](https://threepipe.org/docs/classes/Mesh2.html) - Extends three.js [Mesh](https://threejs.org/docs/#api/en/objects/Mesh) and implements [IObject3D](https://threepipe.org/docs/interfaces/IObject3D.html).
  1540. * [PerspectiveCamera2](https://threepipe.org/docs/classes/PerspectiveCamera2.html) - Extends three.js [PerspectiveCamera](https://threejs.org/docs/#api/en/cameras/PerspectiveCamera) and implements [ICamera](https://threepipe.org/docs/interfaces/ICamera.html). (different constructor than PerspectiveCamera)
  1541. * [PerspectiveCamera0](https://threepipe.org/docs/classes/PerspectiveCamera0.html) - Extends three.js [PerspectiveCamera](https://threejs.org/docs/#api/en/cameras/PerspectiveCamera) and implements [ICamera](https://threepipe.org/docs/interfaces/ICamera.html). (same constructor than PerspectiveCamera)
  1542. * [BufferGeometry2](https://threepipe.org/docs/classes/BufferGeometry2.html) - Extends three.js [BufferGeometry](https://threejs.org/docs/#api/en/core/BufferGeometry) and implements [IGeometry](https://threepipe.org/docs/interfaces/IGeometry.html).
  1543. * [RootScene](https://threepipe.org/docs/classes/RootScene.html) - Extends three.js [Scene](https://threejs.org/docs/#api/en/scenes/Scene) and implements [IScene](https://threepipe.org/docs/interfaces/IScene.html).
  1544. * [RenderManager](https://threepipe.org/docs/classes/RenderManager.html) - Implements [IRenderManager](https://threepipe.org/docs/interfaces/IRenderManager.html).
  1545. * [PhysicalMaterial](https://threepipe.org/docs/classes/PhysicalMaterial.html) - Extends three.js [MeshPhysicalMaterial](https://threejs.org/docs/#api/en/materials/MeshPhysicalMaterial) and implements [IMaterial](https://threepipe.org/docs/interfaces/IMaterial.html).
  1546. * [UnlitMaterial](https://threepipe.org/docs/classes/UnlitMaterial.html) - Extends three.js [MeshBasicMaterial](https://threejs.org/docs/#api/en/materials/MeshBasicMaterial) and implements [IMaterial](https://threepipe.org/docs/interfaces/IMaterial.html).
  1547. * [LineMaterial2](https://threepipe.org/docs/classes/LineMaterial2.html) - Extends three.js [LineMaterial](https://threejs.org/docs/#api/en/materials/LineMaterial) and implements [IMaterial](https://threepipe.org/docs/interfaces/IMaterial.html).
  1548. * [UnlitLineMaterial](https://threepipe.org/docs/classes/UnlitLineMaterial.html) - Extends three.js [LineBasicMaterial](https://threejs.org/docs/#api/en/materials/LineBasicMaterial) and implements [IMaterial](https://threepipe.org/docs/interfaces/IMaterial.html).
  1549. * [DirectionalLight2](https://threepipe.org/docs/classes/DirectionalLight2.html) - Extends three.js [DirectionalLight](https://threejs.org/docs/#api/en/lights/DirectionalLight) and implements [ILight](https://threepipe.org/docs/interfaces/ILight.html).
  1550. * [SpotLight2](https://threepipe.org/docs/classes/SpotLight2.html) - Extends three.js [SpotLight](https://threejs.org/docs/#api/en/lights/SpotLight) and implements [ILight](https://threepipe.org/docs/interfaces/ILight.html).
  1551. * [PointLight2](https://threepipe.org/docs/classes/PointLight2.html) - Extends three.js [PointLight](https://threejs.org/docs/#api/en/lights/PointLight) and implements [ILight](https://threepipe.org/docs/interfaces/ILight.html).
  1552. * [HemisphereLight2](https://threepipe.org/docs/classes/HemisphereLight2.html) - Extends three.js [HemisphereLight](https://threejs.org/docs/#api/en/lights/HemisphereLight) and implements [ILight](https://threepipe.org/docs/interfaces/ILight.html).
  1553. * [AmbientLight2](https://threepipe.org/docs/classes/AmbientLight2.html) - Extends three.js [AmbientLight](https://threejs.org/docs/#api/en/lights/AmbientLight) and implements [ILight](https://threepipe.org/docs/interfaces/ILight.html).
  1554. * [RectAreaLight2](https://threepipe.org/docs/classes/RectAreaLight2.html) - Extends three.js [RectAreaLight](https://threejs.org/docs/#api/en/lights/RectAreaLight) and implements [ILight](https://threepipe.org/docs/interfaces/ILight.html).
  1555. # Threepipe Plugins
  1556. ThreePipe has a simple plugin system that allows you to easily add new features to the viewer. Plugins can be added to the viewer using the `addPlugin` and `addPluginSync` methods. The plugin system is designed to be modular and extensible. Plugins can be added to the viewer at any time and can be removed using the `removePlugin` and `removePluginSync` methods.
  1557. ## TonemapPlugin
  1558. [//]: # (todo: image)
  1559. [Example](https://threepipe.org/examples/#tonemap-plugin/) &mdash;
  1560. [Source Code](./src/plugins/postprocessing/TonemapPlugin.ts) &mdash;
  1561. [API Reference](https://threepipe.org/docs/classes/TonemapPlugin.html)
  1562. TonemapPlugin adds a post-processing material extension to the ScreenPass in render manager
  1563. that applies tonemapping to the color. The tonemapping operator can be changed
  1564. by setting the `toneMapping` property of the plugin. The default tonemapping operator is `ACESFilmicToneMapping`.
  1565. Other Tonemapping properties can be like `exposure`, `contrast` and `saturation`
  1566. TonemapPlugin is added by default in ThreeViewer unless `tonemap` is set to `false` in the options.
  1567. ## DropzonePlugin
  1568. [//]: # (todo: image)
  1569. [Example](https://threepipe.org/examples/#dropzone-plugin/) &mdash;
  1570. [Source Code](./src/plugins/interaction/DropzonePlugin.ts) &mdash;
  1571. [API Reference](https://threepipe.org/docs/classes/DropzonePlugin.html)
  1572. DropzonePlugin adds support for drag and drop of local files to automatically import, process and load them into the viewer.
  1573. DropzonePlugin can be added by default in ThreeViewer
  1574. by setting the `dropzone` property to `true` or an object of `DropzonePluginOptions` in the options.
  1575. ```typescript
  1576. import {DropzonePlugin, ThreeViewer} from 'threepipe'
  1577. const viewer = new ThreeViewer({
  1578. canvas: document.getElementById('mcanvas') as HTMLCanvasElement,
  1579. dropzone: true, // just set to true to enable drag drop functionatility in the viewer
  1580. })
  1581. ```
  1582. To set custom options,
  1583. pass an object of [DropzonePluginOptions](https://threepipe.org/docs/interfaces/DropzonePluginOptions.html) type to the `dropzone` property.
  1584. ```typescript
  1585. import {DropzonePlugin, ThreeViewer} from 'threepipe'
  1586. const viewer = new ThreeViewer({
  1587. canvas: document.getElementById('mcanvas') as HTMLCanvasElement,
  1588. dropzone: { // this can also be set to true and configured by getting a reference to the DropzonePlugin
  1589. allowedExtensions: ['gltf', 'glb', 'hdr', 'png', 'jpg', 'json', 'fbx', 'obj', 'bin', 'exr'], // only allow these file types. If undefined, all files are allowed.
  1590. addOptions: {
  1591. disposeSceneObjects: true, // auto dispose of old scene objects
  1592. autoSetEnvironment: true, // when hdr is dropped
  1593. autoSetBackground: true, // when any image is dropped
  1594. autoCenter: true, // auto center the object
  1595. autoScale: true, // auto scale according to radius
  1596. autoScaleRadius: 2,
  1597. license: 'Imported from dropzone', // Any license to set on imported objects
  1598. importConfig: true, // import config from file
  1599. },
  1600. // check more options in the DropzonePluginOptions interface
  1601. },
  1602. })
  1603. ```
  1604. ## ProgressivePlugin
  1605. [//]: # (todo: image)
  1606. [Example](https://threepipe.org/examples/#progressive-plugin/) &mdash;
  1607. [Source Code](./src/plugins/pipeline/ProgressivePlugin.ts) &mdash;
  1608. [API Reference](https://threepipe.org/docs/classes/ProgressivePlugin.html)
  1609. Progressive Plugin adds a post-render pass to blend the last frame with the current frame.
  1610. This is used as a dependency in other plugins for progressive rendering effect which is useful for progressive shadows, gi, denoising, baking, anti-aliasing, and many other effects. The helper function `convergedPromise` returns a new promise that can be used to wait for the progressive rendering to converge.
  1611. ## SSAAPlugin
  1612. [//]: # (todo: image)
  1613. [Example](https://threepipe.org/examples/#ssaa-plugin/) &mdash;
  1614. [Source Code](./src/plugins/pipeline/SSAAPlugin.ts) &mdash;
  1615. [API Reference](https://threepipe.org/docs/classes/SSAAPlugin.html)
  1616. SSAA Plugin adds support for [Super Sampling Anti-Aliasing](https://en.wikipedia.org/wiki/Supersampling) to the viewer. Simply add the plugin to the viewer to use it.
  1617. It jitters the camera view offset over multiple frames, which are then blended by the [ProgressivePlugin](#progressiveplugin) to create a higher quality image. This is useful for reducing aliasing artifacts in the scene.
  1618. By default, the pipeline only renders once per request animation frame. So we don't get any anti-aliasing while moving. For that, either use the TAA(Temporal Anti-aliasing) plugin or for the case of simple scenes - render multiple times per frame which can be done by setting `plugin.rendersPerFrame` or `viewer.rendersPerFrame`. Check out the [example](https://threepipe.org/examples/#ssaa-plugin/) to see the effect on frame rate.
  1619. ```typescript
  1620. const ssaa = viewer.addPluginSync(new SSAAPlugin())
  1621. ssaa.enabled = true // toggle jittering(if you want to set custom view offset)
  1622. ssaa.rendersPerFrame = 4 // render 4 times per frame (max 32 is useful)
  1623. ```
  1624. ## DepthBufferPlugin
  1625. [//]: # (todo: image)
  1626. [Example](https://threepipe.org/examples/#depth-buffer-plugin/) &mdash;
  1627. [Source Code](./src/plugins/pipeline/DepthBufferPlugin.ts) &mdash;
  1628. [API Reference](https://threepipe.org/docs/classes/DepthBufferPlugin.html)
  1629. Depth Buffer Plugin adds a pre-render pass to the render manager and renders a depth buffer to a target. The render target can be accessed by other plugins throughout the rendering pipeline to create effects like depth of field, SSAO, SSR, etc.
  1630. ```typescript
  1631. import {ThreeViewer, DepthBufferPlugin} from 'threepipe'
  1632. const viewer = new ThreeViewer({...})
  1633. const depthPlugin = viewer.addPluginSync(new DepthBufferPlugin(HalfFloatType))
  1634. const depthTarget = depthPlugin.target;
  1635. // Use the depth target by accesing `depthTarget.texture`.
  1636. ```
  1637. The depth values are based on camera near far values, which are controlled automatically by the viewer. To manually specify near, far values and limits, it can be set in the camera userData. Check the [example](https://threepipe.org/examples/#depth-buffer-plugin/) for more details.
  1638. ## NormalBufferPlugin
  1639. [//]: # (todo: image)
  1640. [Example](https://threepipe.org/examples/#normal-buffer-plugin/) &mdash;
  1641. [Source Code](./src/plugins/pipeline/NormalBufferPlugin.ts) &mdash;
  1642. [API Reference](https://threepipe.org/docs/classes/NormalBufferPlugin.html)
  1643. Normal Buffer Plugin adds a pre-render pass to the render manager and renders a normal buffer to a target. The render target can be accessed by other plugins throughout the rendering pipeline to create effects like SSAO, SSR, etc.
  1644. Note: Use [`GBufferPlugin`](#GBufferPlugin) if using both `DepthBufferPlugin` and `NormalBufferPlugin` to render both depth and normal buffers in a single pass.
  1645. ```typescript
  1646. import {ThreeViewer, NormalBufferPlugin} from 'threepipe'
  1647. const viewer = new ThreeViewer({...})
  1648. const normalPlugin = viewer.addPluginSync(new NormalBufferPlugin())
  1649. const normalTarget = normalPlugin.target;
  1650. // Use the normal target by accessing `normalTarget.texture`.
  1651. ```
  1652. ## GBufferPlugin
  1653. [//]: # (todo: image)
  1654. [Example](https://threepipe.org/examples/#gbuffer-plugin/) &mdash;
  1655. [Source Code](./src/plugins/pipeline/GBufferPlugin.ts) &mdash;
  1656. [API Reference](https://threepipe.org/docs/classes/GBufferPlugin.html)
  1657. GBuffer Plugin adds a pre-render pass to the render manager and renders depth+normals to a target and some customizable flags to another. The multiple render target and textures can be accessed by other plugins throughout the rendering pipeline to create effects like SSAO, SSR, etc.
  1658. ```typescript
  1659. import {ThreeViewer, GBufferPlugin} from 'threepipe'
  1660. const viewer = new ThreeViewer({...})
  1661. const gBufferPlugin = viewer.addPluginSync(new GBufferPlugin())
  1662. const gBuffer = gBufferPlugin.target;
  1663. const normalDepth = gBufferPlugin.normalDepthTexture;
  1664. const gBufferFlags = gBufferPlugin.flagsTexture;
  1665. ```
  1666. ## SSAOPlugin
  1667. [//]: # (todo: image)
  1668. [Example](https://threepipe.org/examples/#ssao-plugin/) &mdash;
  1669. [Source Code](./src/plugins/pipeline/SSAOPlugin.ts) &mdash;
  1670. [API Reference](https://threepipe.org/docs/classes/SSAOPlugin.html)
  1671. SSAO Plugin adds support for [Screen Space Ambient Occlusion](https://en.wikipedia.org/wiki/Screen_space_ambient_occlusion) to the viewer. Simply add the plugin to the viewer to use it.
  1672. This is done by adding a pre-render pass to the render manager which renders SSAO to a custom render target. SSAOPlugin depends on [GBufferPlugin](#gbufferplugin), and is automatically added if not already.
  1673. This render target is then used by all PhysicalMaterial(s) in the scene during the main RenderPass to get the AO data. SSAO can also be disabled from the UI of the material.
  1674. Note: Use with [ProgressivePlugin](#progressiveplugin) and `TemporalAAPlugin` for best results.
  1675. ```typescript
  1676. import {ThreeViewer, SSAOPlugin} from 'threepipe'
  1677. const viewer = new ThreeViewer({...})
  1678. const ssaoPlugin = viewer.addPluginSync(new SSAOPlugin())
  1679. // get the buffer.
  1680. console.log(ssaoPlugin.target);
  1681. // disable ssao for a material in the scene
  1682. material.userData.ssaoDisabled = true
  1683. ```
  1684. > In the target/buffer - The ssao data is in the `r` channel to remain compatible with ORM. `gba` contains the depth in vec3(xyz) format.
  1685. > Note that its `ssaoDisabled`, so setting it to `true` will disable the effect.
  1686. ## CanvasSnapshotPlugin
  1687. [//]: # (todo: image)
  1688. [Example](https://threepipe.org/examples/#canvas-snapshot-plugin/) &mdash;
  1689. [Source Code](./src/plugins/export/CanvasSnapshotPlugin.ts) &mdash;
  1690. [API Reference](https://threepipe.org/docs/classes/CanvasSnapshotPlugin.html)
  1691. Canvas Snapshot Plugin adds support for taking snapshots of the canvas and exporting them as images and data urls. It includes options to take snapshot of a region, mime type, quality render scale and scaling the output image. Check out the interface [CanvasSnapshotOptions](https://threepipe.org/docs/interfaces/CanvasSnapshotOptions.html) for more details.
  1692. ```typescript
  1693. import {ThreeViewer, CanvasSnapshotPlugin} from 'threepipe'
  1694. const viewer = new ThreeViewer({...})
  1695. const snapshotPlugin = viewer.addPluginSync(new CanvasSnapshotPlugin())
  1696. // download a snapshot.
  1697. await snapshotPlugin.downloadSnapshot('image.webp', { // all parameters are optional
  1698. scale: 1, // scale the final image
  1699. timeout: 0, // wait before taking the snapshot, in ms
  1700. quality: 0.9, // quality of the image (0-1) only for jpeg and webp
  1701. displayPixelRatio: 2, // render scale
  1702. mimeType: 'image/webp', // mime type of the image
  1703. waitForProgressive: true, // wait for progressive rendering to finish (ProgressivePlugin). true by default
  1704. rect: { // region to take snapshot. eg. crop center of the canvas
  1705. height: viewer.canvas.clientHeight / 2,
  1706. width: viewer.canvas.clientWidth / 2,
  1707. x: viewer.canvas.clientWidth / 4,
  1708. y: viewer.canvas.clientHeight / 4,
  1709. },
  1710. })
  1711. // get data url (string)
  1712. const dataUrl = await snapshotPlugin.getDataUrl({ // all parameters are optional
  1713. displayPixelRatio: 2, // render scale
  1714. mimeType: 'image/webp', // mime type of the image
  1715. })
  1716. // get File
  1717. const file = await snapshotPlugin.getFile('file.jpeg', { // all parameters are optional
  1718. mimeType: 'image/jpeg', // mime type of the image
  1719. })
  1720. ```
  1721. ## PickingPlugin
  1722. [//]: # (todo: image)
  1723. [Example](https://threepipe.org/examples/#picking-plugin/) &mdash;
  1724. [Source Code](./src/plugins/interaction/PickingPlugin.ts) &mdash;
  1725. [API Reference](https://threepipe.org/docs/classes/PickingPlugin.html)
  1726. Picking Plugin adds support for selecting and hovering over objects in the viewer with user interactions and selection widgets.
  1727. When the plugin is added to the viewer, it starts listening to the mouse move and click events over the canvas.
  1728. When an object is clicked, it is selected,
  1729. and if a UI plugin is added, the uiconfig for the selected object is populated in the interface.
  1730. The events `selectedObjectChanged`, `hoverObjectChanged`, and `hitObject` can be listened to on the plugin.
  1731. Picking plugin internally uses [ObjectPicker](https://threepipe.org/docs/classes/ObjectPicker.html),
  1732. check out the documentation or source code for more information.
  1733. ```typescript
  1734. import {ThreeViewer, PickingPlugin} from 'threepipe'
  1735. const viewer = new ThreeViewer({...})
  1736. const pickingPlugin = viewer.addPluginSync(new PickingPlugin())
  1737. // Hovering events are also supported, but since its computationally expensive for large scenes it is disabled by default.
  1738. pickingPlugin.hoverEnabled = true
  1739. pickingPlugin.addEventListener('hitObject', (e)=>{
  1740. // This is fired when the user clicks on the canvas.
  1741. // The selected object hasn't been changed yet, and we have the option to change it or disable selection at this point.
  1742. // e.intersects.selectedObject contains the object that the user clicked on.
  1743. console.log('Hit: ', e.intersects.selectedObject)
  1744. // It can be changed here
  1745. // e.intersects.selectedObject = e.intersects.selectedObject.parent // select the parent
  1746. // e.intersects.selectedObject = null // unselect
  1747. // Check other properties on the event like intersects, mouse position, normal etc.
  1748. console.log(e)
  1749. })
  1750. pickingPlugin.addEventListener('selectedObjectChanged', (e)=>{
  1751. // This is fired when the selected object is changed.
  1752. // e.object contains the new selected object. It can be null if nothing is selected.
  1753. console.log('Selected: ', e.object)
  1754. })
  1755. // Objects can be programmatically selected and unselected
  1756. // to select
  1757. pickingPlugin.setSelectedObject(object)
  1758. // get the selected object
  1759. console.log(pickingPlugin.getSelectedObject())
  1760. // to unselect
  1761. pickingPlugin.setSelectedObject(null)
  1762. // Select object with camera animation to the object
  1763. pickingPlugin.setSelectedObject(object, true)
  1764. pickingPlugin.addEventListener('hoverObjectChanged', (e)=>{
  1765. // This is fired when the hovered object is changed.
  1766. // e.object contains the new hovered object.
  1767. console.log('Hovering: ', e.object)
  1768. })
  1769. ```
  1770. ## FullScreenPlugin
  1771. [//]: # (todo: image)
  1772. [Example](https://threepipe.org/examples/#fullscreen-plugin/) &mdash;
  1773. [Source Code](./src/plugins/interaction/FullScreenPlugin.ts) &mdash;
  1774. [API Reference](https://threepipe.org/docs/classes/FullScreenPlugin.html)
  1775. A simple plugin that provides functions to enter, exit and toggle full screen mode and check if the viewer is in full screen mode. Either the canvas or the whole container can be set to full screen.
  1776. ```typescript
  1777. import {ThreeViewer, FullScreenPlugin} from 'threepipe'
  1778. const viewer = new ThreeViewer({...})
  1779. const fullscreen = viewer.addPluginSync(new FullScreenPlugin())
  1780. // enter full screen
  1781. await fullscreen.enter(viewer.container) // viewer.canvas is used if no element is passed
  1782. // exit full screen
  1783. await fullscreen.exit()
  1784. // toggle
  1785. await fullscreen.toggle(viewer.container)
  1786. // check if full screen
  1787. console.log(fullScreenPlugin.isFullScreen())
  1788. ```
  1789. ## AssetExporterPlugin
  1790. [//]: # (todo: image)
  1791. [Example](https://threepipe.org/examples/#asset-exporter-plugin/) &mdash;
  1792. [Source Code](./src/plugins/export/AssetExporterPlugin.ts) &mdash;
  1793. [API Reference](https://threepipe.org/docs/classes/AssetExporterPlugin.html)
  1794. Asset Exporter Plugin provides options and methods to export the scene, object GLB or Viewer Config.
  1795. All the functionality is available in the viewer(and `AssetExporter`) directly, this plugin only provides a ui-config and maintains state of the options which is saved as plugin configuration along with glb/vjson file
  1796. ```typescript
  1797. import {ThreeViewer, AssetExporterPlugin} from 'threepipe'
  1798. const viewer = new ThreeViewer({...})
  1799. const assetExporter = viewer.addPluginSync(new AssetExporterPlugin())
  1800. // check the existing options
  1801. console.log(assetExporter.exportOptions)
  1802. // enable/disable viewer config/json embedding in glb
  1803. assetExporter.viewerConfig = true
  1804. // set encryption
  1805. assetExporter.encrypt = true
  1806. assetExporter.encryptKey = 'superstrongpassword' // comment this to get prompted for a key during export.
  1807. // export scene as blob
  1808. const blob = assetExporter.exportScene()
  1809. // or export and download directly
  1810. assetExporter.downloadSceneGlb()
  1811. // export a specific object
  1812. const object = viewer.scene.getObjectByName('objectName')
  1813. const blob2 = assetExporter.exportObject(object, true) // true to also download
  1814. ```
  1815. Note: when downloading the model through the plugin, it uses viewer.export, which downloads the files by default, but uploads it to remote destinations when overloaded using `FileTransferPlugin`.
  1816. ## LoadingScreenPlugin
  1817. [//]: # (todo: image)
  1818. [Example](https://threepipe.org/examples/#loading-screen-plugin/) &mdash;
  1819. [Source Code](./src/plugins/interaction/LoadingScreenPlugin.ts) &mdash;
  1820. [API Reference](https://threepipe.org/docs/classes/LoadingScreenPlugin.html)
  1821. Loading Screen Plugin adds configurable overlay with a logo, loading text, spinner and the list of loading items. It also provides options to minimize and maximize the loading popup when there is no objects in the scene.
  1822. The overlay is automatically added to the viewer container and shown when any files are loading. Behaviour can be configured to change how its shown and hidden, and can even be triggered programmatically.
  1823. ```typescript
  1824. import {ThreeViewer, LoadingScreenPlugin} from 'threepipe'
  1825. const viewer = new ThreeViewer({...})
  1826. const loadingScreen = viewer.addPluginSync(new LoadingScreenPlugin())
  1827. loadingScreen.loadingTextHeader = 'Loading Helmet 3D Model'
  1828. loadingScreen.errorTextHeader = 'Error Loading Helmet 3D Model'
  1829. loadingScreen.showFileNames = true
  1830. loadingScreen.showProcessStates = true
  1831. loadingScreen.showProgress = true
  1832. loadingScreen.backgroundOpacity = 0.4 // 0-1
  1833. loadingScreen.backgroundBlur = 28 // px
  1834. ```
  1835. See also the base class [AAssetManagerProcessStatePlugin](https://threepipe.org/docs/classes/AAssetManagerProcessStatePlugin.html) to write a custom loading plugin.
  1836. ## InteractionPromptPlugin
  1837. [//]: # (todo: image)
  1838. [Example](https://threepipe.org/examples/#interaction-prompt-plugin/) &mdash;
  1839. [Source Code](./src/plugins/interaction/InteractionPromptPlugin.ts) &mdash;
  1840. [API Reference](https://threepipe.org/docs/classes/InteractionPromptPlugin.html)
  1841. Interaction Prompt Plugin adds a hand pointer icon over the canvas that moves to prompt the user to interact with the 3d scene. To use, simply add the plugin to the viewer.
  1842. The default pointer icon from [google/model-viewer](https://github.com/google/model-viewer) and can be configured with the `pointerIcon` property.
  1843. The pointer is automatically shown when some object is in the scene and the camera is not moving.
  1844. The animation starts after a delay and stops on user interaction. It then restarts after a delay after the user stops interacting
  1845. The plugin provides several options and functions to configure the automatic behaviour or trigger the animation manually.
  1846. ```typescript
  1847. import {ThreeViewer, InteractionPromptPlugin} from 'threepipe'
  1848. const viewer = new ThreeViewer({...})
  1849. const interactionPrompt = viewer.addPluginSync(new InteractionPromptPlugin())
  1850. // change duration
  1851. interactionPrompt.animationDuration = 3000
  1852. // change animation distance in pixels
  1853. interactionPrompt.animationDistance = 100
  1854. // disable auto start when the camera stops
  1855. interactionPrompt.autoStart = false
  1856. interactionPrompt.autoStop = false
  1857. // manually start and stop
  1858. interactionPrompt.startAnimation()
  1859. // ...
  1860. interactionPrompt.stopAnimation()
  1861. ```
  1862. Note - The pointer is automatically shown/hidden when animation is started/stopped.
  1863. ## TransformControlsPlugin
  1864. [//]: # (todo: image)
  1865. [Example](https://threepipe.org/examples/#transform-controls-plugin/) &mdash;
  1866. [Source Code](./src/plugins/interaction/TransformControlsPlugin.ts) &mdash;
  1867. [API Reference](https://threepipe.org/docs/classes/TransformControlsPlugin.html)
  1868. Transform Controls Plugin adds support for moving, rotating and scaling objects in the viewer with interactive widgets.
  1869. Under the hood, TransformControlsPlugin uses [TransformControls2](https://threepipe.org/docs/classes/TransformControls2) to provide the interactive controls, it is a extended version of three.js [TransformControls](https://threejs.org/docs/#examples/en/controls/TransformControls).
  1870. When the plugin is added to the viewer, it interfaces with the [PickingPlugin](#pickingplugin) and shows the control gizmos when an object is selected and hides them when the object is unselected.
  1871. If the `PickingPlugin` is not added to the viewer before the `TransformControlsPlugin`, it is added automatically with the plugin.
  1872. ```typescript
  1873. import {ThreeViewer, TransformControlsPlugin} from 'threepipe'
  1874. const viewer = new ThreeViewer({...})
  1875. const transfromControlsPlugin = viewer.addPluginSync(new TransformControlsPlugin())
  1876. // Get the underlying transform controls
  1877. console.log(transfromControlsPlugin.transformControls)
  1878. ```
  1879. ## ContactShadowGroundPlugin
  1880. [//]: # (todo: image)
  1881. [Example](https://threepipe.org/examples/#contact-shadow-ground-plugin/) &mdash;
  1882. [Source Code](./src/plugins/extras/ContactShadowGroundPlugin.ts) &mdash;
  1883. [API Reference](https://threepipe.org/docs/classes/ContactShadowGroundPlugin.html)
  1884. Contact Shadow Ground Plugin adds a ground plane with three.js contact shadows to the viewer scene.
  1885. The plane is added to the scene root at runtime and not saved with scene export. Instead the plugin settings are saved with the scene.
  1886. It inherits from the base class [BaseGroundPlugin](https://threepipe.org/docs/classes/BaseGroundPlugin.html) which provides generic ground plane functionality. Check the source code for more details. With the property `autoAdjustTransform`, the ground plane is automatically adjusted based on the bounding box of the scene.
  1887. ```typescript
  1888. import {ThreeViewer, ContactShadowGroundPlugin} from 'threepipe'
  1889. const viewer = new ThreeViewer({...})
  1890. viewer.addPluginSync(new ContactShadowGroundPlugin())
  1891. ```
  1892. ## GLTFAnimationPlugin
  1893. [//]: # (todo: image)
  1894. [Example](https://threepipe.org/examples/#gltf-animation-plugin/) &mdash;
  1895. [Source Code](./src/plugins/animation/GLTFAnimationPlugin.ts) &mdash;
  1896. [API Reference](https://threepipe.org/docs/classes/GLTFAnimationPlugin.html)
  1897. Manages playback of GLTF animations.
  1898. The GLTF animations can be created in any 3d software that supports GLTF export like Blender.
  1899. If animations from multiple files are loaded, they will be merged in a single root object and played together.
  1900. The time playback is managed automatically, but can be controlled manually by setting {@link autoIncrementTime} to false and using {@link setTime} to set the time.
  1901. This plugin is made for playing, pausing, stopping, all the animations at once, while it is possible to play individual animations, it is not recommended.
  1902. To play individual animations, with custom choreography, use the {@link GLTFAnimationPlugin.animations} property to get reference to the animation clips and actions. Create your own mixers and control the animation playback like in three.js
  1903. ## PopmotionPlugin
  1904. [//]: # (todo: image)
  1905. [Example](https://threepipe.org/examples/#popmotion-plugin/) &mdash;
  1906. [Source Code](./src/plugins/animation/PopmotionPlugin.ts) &mdash;
  1907. [API Reference](https://threepipe.org/docs/classes/PopmotionPlugin.html)
  1908. Provides animation/tweening capabilities to the viewer using the [popmotion.io](https://popmotion.io/) library.
  1909. Overrides the driver in popmotion to sync with the viewer and provide ways to store and stop animations.
  1910. ```typescript
  1911. import {PopmotionPlugin, ThreeViewer} from 'threepipe'
  1912. const viewer = new ThreeViewer({...})
  1913. const cube = viewer.scene.getObjectByName('cube');
  1914. const popmotion = viewer.addPluginSync(new PopmotionPlugin())
  1915. // Move the object cube 1 unit up.
  1916. const anim = popmotion.animateTarget(cube, 'position', {
  1917. to: cube.position.clone().add(new Vector3(0,1,0)),
  1918. duration: 500, // ms
  1919. onComplete: () => isMovedUp = true,
  1920. onStop: () => throw(new Error('Animation stopped')),
  1921. })
  1922. // Alternatively, set the property directly in onUpdate.
  1923. const anim1 = popmotion.animate({
  1924. from: cube.position.y,
  1925. to: cube.position.y + 1,
  1926. duration: 500, // ms
  1927. onUpdate: (v) => {
  1928. cube.position.setY(v)
  1929. cube.setDirty()
  1930. },
  1931. onComplete: () => isMovedUp = true,
  1932. onStop: () => throw(new Error('Animation stopped')),
  1933. onEnd: () => console.log('Animation ended'), // This runs after both onComplete and onStop
  1934. })
  1935. // await for animation. This promise will reject only if an exception is thrown in onStop or onComplete. onStop rejects if throwOnStop is true
  1936. await anim.promise.catch((e)=>{
  1937. console.log(e, 'animation stopped before completion')
  1938. });
  1939. // or stop the animation
  1940. // anim.stop()
  1941. // Animate the color
  1942. await popmotion.animateAsync({ // Also await for the animation.
  1943. from: '#' + cube.material.color.getHexString(),
  1944. to: '#' + new Color().setHSL(Math.random(), 1, 0.5).getHexString(),
  1945. duration: 1000, // 1s
  1946. onUpdate: (v) => {
  1947. cube.material.color.set(v)
  1948. cube.material.setDirty()
  1949. },
  1950. })
  1951. ```
  1952. Note: The animation is started when the animate or animateAsync function is called.
  1953. ## CameraViewPlugin
  1954. [//]: # (todo: image)
  1955. [Example](https://threepipe.org/examples/#camera-view-plugin/) &mdash;
  1956. [Source Code](./src/plugins/animation/CameraViewPlugin.ts) &mdash;
  1957. [API Reference](https://threepipe.org/docs/classes/CameraViewPlugin.html)
  1958. CameraViewPlugin adds support to save and load camera views, which can then be animated to.
  1959. It uses PopmotionPlugin internally to animate any camera to a saved view or to loop through all the saved views.
  1960. It also provides a UI to manage the views.
  1961. ```typescript
  1962. import {CameraViewPlugin, ThreeViewer, CameraView, Vector3, Quaternion, EasingFunctions, timeout} from 'threepipe'
  1963. const viewer = new ThreeViewer({...})
  1964. const cameraViewPlugin = viewer.addPluginSync(new CameraViewPlugin())
  1965. const intialView = cameraViewPlugin.getView()
  1966. // or = viewer.scene.mainCamera.getView()
  1967. // create a new view
  1968. const view = new CameraView(
  1969. 'My View', // name
  1970. new Vector3(0, 0, 10), // position
  1971. new Vector3(0, 0, 0), // target
  1972. new Quaternion(0, 0, 0, 1), // quaternion rotation
  1973. 1 // zoom
  1974. )
  1975. // or clone a view
  1976. const view2 = intialView.clone()
  1977. view2.position.add(new Vector3(0, 5, 0)) // move up 5 units
  1978. // animate the main camera to a view
  1979. await cameraViewPlugin.animateToView(
  1980. view,
  1981. 2000, // in ms, = 2sec
  1982. EasingFunctions.easeInOut,
  1983. ).catch(()=>console.log('Animation stopped'))
  1984. // stop any/all animations
  1985. cameraViewPlugin.stopAllAnimations()
  1986. // add views to the plugin
  1987. cameraViewPlugin.addView(view)
  1988. cameraViewPlugin.addView(view2)
  1989. cameraViewPlugin.addView(intialView)
  1990. cameraViewPlugin.addCurrentView() // adds the current view of the main camera
  1991. // loop through all the views once
  1992. cameraViewPlugin.animDuration = 2000 // default duration
  1993. cameraViewPlugin.animEase = EasingFunctions.easeInOutSine // default easing
  1994. await cameraViewPlugin.animateAllViews()
  1995. // loop through all the views forever
  1996. cameraViewPlugin.viewLooping = true
  1997. await timeout(10000) // wait for some time
  1998. // stop looping
  1999. cameraViewPlugin.viewLooping = false
  2000. ```
  2001. ## RenderTargetPreviewPlugin
  2002. [//]: # (todo: image)
  2003. [Example](https://threepipe.org/examples/#render-target-preview/) &mdash;
  2004. [Source Code](./src/plugins/ui/RenderTargetPreviewPlugin.ts) &mdash;
  2005. [API Reference](https://threepipe.org/docs/classes/RenderTargetPreviewPlugin.html)
  2006. RenderTargetPreviewPlugin is a useful development and debugging plugin that renders any registered render-target to the screen in small collapsable panels.
  2007. ```typescript
  2008. import {ThreeViewer, RenderTargetPreviewPlugin, NormalBufferPlugin} from 'threepipe'
  2009. const viewer = new ThreeViewer({...})
  2010. const normalPlugin = viewer.addPluginSync(new NormalBufferPlugin(HalfFloatType))
  2011. const previewPlugin = viewer.addPluginSync(new RenderTargetPreviewPlugin())
  2012. // Show the normal buffer in a panel
  2013. previewPlugin.addTarget(()=>normalPlugin.target, 'normal', false, false)
  2014. ```
  2015. ## GeometryUVPreviewPlugin
  2016. [//]: # (todo: image)
  2017. [Example](https://threepipe.org/examples/#geometry-uv-preview/) &mdash;
  2018. [Source Code](./src/plugins/ui/GeometryUVPreviewPlugin.ts) &mdash;
  2019. [API Reference](https://threepipe.org/docs/classes/GeometryUVPreviewPlugin.html)
  2020. GeometryUVPreviewPlugin is a useful development and debugging plugin
  2021. that adds a panel to the viewer to show the UVs of a geometry.
  2022. ```typescript
  2023. import {ThreeViewer, GeometryUVPreviewPlugin, SphereGeometry} from 'threepipe'
  2024. const viewer = new ThreeViewer({...})
  2025. const previewPlugin = viewer.addPluginSync(new GeometryUVPreviewPlugin())
  2026. const geometry = new SphereGeometry(1, 32, 32)
  2027. // Show the normal buffer in a panel
  2028. previewPlugin.addGeometry(geometry, 'sphere')
  2029. ```
  2030. ## FrameFadePlugin
  2031. [//]: # (todo: image)
  2032. [Example](https://threepipe.org/examples/#frame-fade-plugin/) &mdash;
  2033. [Source Code](./src/plugins/pipeline/FrameFadePlugin.ts) &mdash;
  2034. [API Reference](https://threepipe.org/docs/classes/FrameFadePlugin.html)
  2035. FrameFadePlugin adds a post-render pass to the render manager and blends the last frame with the current frame over time. This is useful for creating smooth transitions between frames for example when changing the camera position, material, object properties, etc to avoid a sudden jump.
  2036. ```typescript
  2037. import {ThreeViewer, FrameFadePlugin} from 'threepipe'
  2038. const viewer = new ThreeViewer({...})
  2039. const fadePlugin = viewer.addPluginSync(new FrameFadePlugin())
  2040. // Make some changes in the scene (any visual change that needs to be faded)
  2041. // Start transition and wait for it to finish
  2042. await fadePlugin.startTransition(400) // duration in ms
  2043. ```
  2044. To stop a transition, call `fadePlugin.stopTransition()`. This will immediately set the current frame to the last frame and stop the transition. The transition is also automatically stopped when the camera is moved or some pointer event occurs on the canvas.
  2045. The plugin automatically tracks `setDirty()` function calls in objects, materials and the scene. It can be triggerred by calling `setDirty` on any material or object in the scene. Check the [example](https://threepipe.org/examples/#frame-fade-plugin/) for a demo. This can be disabled by options in the plugin.
  2046. ## VignettePlugin
  2047. [//]: # (todo: image)
  2048. [Example](https://threepipe.org/examples/#vignette-plugin/) &mdash;
  2049. [Source Code](./src/plugins/postprocessing/VignettePlugin.ts) &mdash;
  2050. [API Reference](https://threepipe.org/docs/classes/VignettePlugin.html)
  2051. VignettePlugin adds a post-processing material extension to the ScreenPass in render manager
  2052. that applies a vignette effect to the final render. The parameters `power` and `color` can be changed to customize the effect.
  2053. ```typescript
  2054. import {ThreeViewer, VignettePlugin} from 'threepipe'
  2055. const viewer = new ThreeViewer({...})
  2056. const vignettePlugin = viewer.addPluginSync(VignettePlugin)
  2057. // Change the vignette color
  2058. vignettePlugin.power = 1
  2059. vignettePlugin.color = new Color(0.5, 0, 0)
  2060. // or
  2061. // vignettePlugin.color.set('#ff0000'); vignettePlugin.setDirty() // Call setDirty to tell the plugin that color has changed
  2062. ```
  2063. ## ChromaticAberrationPlugin
  2064. [//]: # (todo: image)
  2065. [Example](https://threepipe.org/examples/#chromatic-aberration-plugin/) &mdash;
  2066. [Source Code](./src/plugins/postprocessing/ChromaticAberrationPlugin.ts) &mdash;
  2067. [API Reference](https://threepipe.org/docs/classes/ChromaticAberrationPlugin.html)
  2068. ChromaticAberrationPlugin adds a post-processing material extension to the ScreenPass in render manager
  2069. that applies a chromatic-aberration effect to the final render. The parameter `intensity` can be changed to customize the effect.
  2070. ```typescript
  2071. import {ThreeViewer, ChromaticAberrationPlugin} from 'threepipe'
  2072. const viewer = new ThreeViewer({...})
  2073. const chromaticAberrationPlugin = viewer.addPluginSync(ChromaticAberrationPlugin)
  2074. // Change the chromaticAberration color
  2075. chromaticAberrationPlugin.intensity = 0.5
  2076. ```
  2077. ## FilmicGrainPlugin
  2078. [//]: # (todo: image)
  2079. [Example](https://threepipe.org/examples/#filmic-grain-plugin/) &mdash;
  2080. [Source Code](./src/plugins/postprocessing/FilmicGrainPlugin.ts) &mdash;
  2081. [API Reference](https://threepipe.org/docs/classes/FilmicGrainPlugin.html)
  2082. FilmicGrainPlugin adds a post-processing material extension to the ScreenPass in render manager
  2083. that applies a filmic-grain effect to the final render. The parameters `power` and `color` can be changed to customize the effect.
  2084. ```typescript
  2085. import {ThreeViewer, FilmicGrainPlugin} from 'threepipe'
  2086. const viewer = new ThreeViewer({...})
  2087. const filmicGrainPlugin = viewer.addPluginSync(FilmicGrainPlugin)
  2088. // Change the filmicGrain color
  2089. filmicGrainPlugin.intensity = 10
  2090. filmicGrainPlugin.multiply = false
  2091. ```
  2092. ## NoiseBumpMaterialPlugin
  2093. [//]: # (todo: image)
  2094. [Example](https://threepipe.org/examples/#noise-bump-material-plugin/) &mdash;
  2095. [Source Code](./src/plugins/material/NoiseBumpMaterialPlugin.ts) &mdash;
  2096. [API Reference](https://threepipe.org/docs/classes/NoiseBumpMaterialPlugin.html)
  2097. NoiseBumpMaterialPlugin adds a material extension to PhysicalMaterial to add support for sparkle bump / noise bump by creating procedural bump map from noise to simulate sparkle flakes.
  2098. It uses voronoise function from blender along with several additions to generate the noise for the generation.
  2099. It also adds a UI to the material to edit the settings.
  2100. It uses `WEBGI_materials_noise_bump` glTF extension to save the settings in glTF/glb files.
  2101. ```typescript
  2102. import {ThreeViewer, NoiseBumpMaterialPlugin} from 'threepipe'
  2103. const viewer = new ThreeViewer({...})
  2104. const noiseBump = viewer.addPluginSync(NoiseBumpMaterialPlugin)
  2105. // Add noise bump to a material
  2106. NoiseBumpMaterialPlugin.AddNoiseBumpMaterial(material, {
  2107. flakeScale: 300,
  2108. })
  2109. // Change properties with code or use the UI
  2110. material.userData._noiseBumpMat!.bumpNoiseParams = [1, 1]
  2111. material.setDirty()
  2112. // Disable
  2113. material.userData._noiseBumpMat!.hasBump = false
  2114. material.setDirty()
  2115. ```
  2116. ## CustomBumpMapPlugin
  2117. [//]: # (todo: image)
  2118. [Example](https://threepipe.org/examples/#custom-bump-map-plugin/) &mdash;
  2119. [Source Code](./src/plugins/material/CustomBumpMapPlugin.ts) &mdash;
  2120. [API Reference](https://threepipe.org/docs/classes/CustomBumpMapPlugin.html)
  2121. CustomBumpMapPlugin adds a material extension to PhysicalMaterial to support custom bump maps.
  2122. A Custom bump map is similar to the built-in bump map, but allows using an extra bump map and scale to give a combined effect.
  2123. This plugin also has support for bicubic filtering of the custom bump map and is enabled by default.
  2124. It also adds a UI to the material to edit the settings.
  2125. It uses `WEBGI_materials_custom_bump_map` glTF extension to save the settings in glTF/glb files.
  2126. ```typescript
  2127. import {ThreeViewer, CustomBumpMapPlugin} from 'threepipe'
  2128. const viewer = new ThreeViewer({...})
  2129. const customBump = viewer.addPluginSync(CustomBumpMapPlugin)
  2130. // Add noise bump to a material
  2131. customBump.enableCustomBump(material, bumpMap, 0.2)
  2132. // Change properties with code or use the UI
  2133. material.userData._customBumpMat = texture
  2134. material.setDirty()
  2135. // Disable
  2136. material.userData._hasCustomBump = false
  2137. // or
  2138. material.userData._customBumpMat = null
  2139. material.setDirty()
  2140. ```
  2141. ## ClearcoatTintPlugin
  2142. [//]: # (todo: image)
  2143. [Example](https://threepipe.org/examples/#clearcoat-tint-plugin/) &mdash;
  2144. [Source Code](./src/plugins/material/ClearcoatTintPlugin.ts) &mdash;
  2145. [API Reference](https://threepipe.org/docs/classes/ClearcoatTintPlugin.html)
  2146. ClearcoatTintPlugin adds a material extension to PhysicalMaterial which adds tint and thickness to the built-in clearcoat properties.
  2147. It also adds a UI to the material to edit the settings.
  2148. It uses `WEBGI_materials_clearcoat_tint` glTF extension to save the settings in glTF/glb files.
  2149. ```typescript
  2150. import {ThreeViewer, ClearcoatTintPlugin} from 'threepipe'
  2151. const viewer = new ThreeViewer({...})
  2152. const clearcoatTint = viewer.addPluginSync(ClearcoatTintPlugin)
  2153. material.clearcoat = 1
  2154. // add initial properties
  2155. ClearcoatTintPlugin.AddClearcoatTint(material, {
  2156. tintColor: '#ff0000',
  2157. thickness: 1,
  2158. })
  2159. // Change properties with code or use the UI
  2160. material.userData._clearcoatTint!.tintColor = '#ff0000'
  2161. material.setDirty()
  2162. // Disable
  2163. material.userData._clearcoatTint.enableTint = false
  2164. material.setDirty()
  2165. ```
  2166. ## FragmentClippingExtensionPlugin
  2167. [//]: # (todo: image)
  2168. [Example](https://threepipe.org/examples/#fragment-clipping-extension-plugin/) &mdash;
  2169. [Source Code](./src/plugins/material/FragmentClippingExtensionPlugin.ts) &mdash;
  2170. [API Reference](https://threepipe.org/docs/classes/FragmentClippingExtensionPlugin.html)
  2171. FragmentClippingExtensionPlugin adds a material extension to PhysicalMaterial to add support for fragment clipping.
  2172. Fragment clipping allows to clip fragments of the material in screen space or world space based on a circle, rectangle, plane, sphere, etc.
  2173. It uses fixed SDFs with params defined by the user for clipping.
  2174. It also adds a UI to the material to edit the settings.
  2175. It uses `WEBGI_materials_fragment_clipping_extension` glTF extension to save the settings in glTF/glb files.
  2176. ```typescript
  2177. import {ThreeViewer, FragmentClippingExtensionPlugin} from 'threepipe'
  2178. const viewer = new ThreeViewer({...})
  2179. const fragmentClipping = viewer.addPluginSync(FragmentClippingExtensionPlugin)
  2180. // add initial properties
  2181. FragmentClippingExtensionPlugin.AddFragmentClipping(material, {
  2182. clipPosition: new Vector4(0.5, 0.5, 0, 0),
  2183. clipParams: new Vector4(0.1, 0.05, 0, 1),
  2184. })
  2185. // Change properties with code or use the UI
  2186. material.userData._fragmentClipping!.clipPosition.set(0, 0, 0, 0)
  2187. material.setDirty()
  2188. // Disable
  2189. material.userData._clearcoatTint.clipEnabled = false
  2190. material.setDirty()
  2191. ```
  2192. ## ParallaxMappingPlugin
  2193. [//]: # (todo: image)
  2194. [Example](https://threepipe.org/examples/#parallax-mapping-plugin/) &mdash;
  2195. [Source Code](./src/plugins/material/ParallaxMappingPlugin.ts) &mdash;
  2196. [API Reference](https://threepipe.org/docs/classes/ParallaxMappingPlugin.html)
  2197. `ParallaxMappingPlugin` adds a material extension to PhysicalMaterial to add support for [parallax relief mapping](https://en.wikipedia.org/wiki/Relief_mapping_(computer_graphics)). The idea is to walk along a ray that has entered the bumpmap's volume, finding the intersection point of the ray with the bumpmap. [Steep parallax mapping](https://en.wikipedia.org/wiki/Parallax_mapping) and [parallax occlusion mapping](https://en.wikipedia.org/wiki/Parallax_occlusion_mapping) are other common names for these techniques.
  2198. To use the plugin, add the plugin to the viewer and use the `bumpMap` in `PhysicalMaterial` normally. The max height is determined by the `bumpScale` in the material. This is assumed to be in world scale.
  2199. ```typescript
  2200. import {ThreeViewer, ParallaxMappingPlugin} from 'threepipe'
  2201. const viewer = new ThreeViewer({...})
  2202. const parallaxMapping = viewer.addPluginSync(ParallaxMappingPlugin)
  2203. // load or create an object
  2204. // set the bump map
  2205. object.material.bumpMap = await viewer.load<ITexture>(bumps[0]) || null
  2206. // set the bump scale
  2207. object.material.bumpScale = 0.1
  2208. // setDirty to notify the viewer to update.
  2209. object.material.setDirty()
  2210. ```
  2211. ### References and related links:
  2212. - WebGL implementation by Rabbid76 - [github.com/Rabbid76/graphics-snippets](https://github.com/Rabbid76/graphics-snippets/blob/master/html/technique/parallax_005_parallax_relief_mapping_derivative_tbn.html)
  2213. - Lesson on Parallax Occlusion Mapping in GLSL - [http://sunandblackcat.com/tipFullView.php?topicid=28](https://web.archive.org/web/20190128023901/http://sunandblackcat.com/tipFullView.php?topicid=28)
  2214. - Learn OpenGL - https://learnopengl.com/Advanced-Lighting/Parallax-Mapping
  2215. ## HDRiGroundPlugin
  2216. [//]: # (todo: image)
  2217. [Example](https://threepipe.org/examples/#hdri-ground-plugin/) &mdash;
  2218. [Source Code](./src/plugins/extras/HDRiGroundPlugin.ts) &mdash;
  2219. [API Reference](https://threepipe.org/docs/classes/HDRiGroundPlugin.html)
  2220. HDRiGroundPlugin patches the background shader in the renderer to add support for ground projected environment map/skybox. Works simply by setting the background same as the environemnt and enabling the plugin.
  2221. The world radius, tripod height, and origin position(center offset) can be set in the plugin.
  2222. The plugin is disabled by default when added. Set `.enabled` to enable it or pass `true` in the constructor.
  2223. If the background is not the same as the environment when enabled, the user will be prompted for this, unless `promptOnBackgroundMismatch` is set to `false` in the plugin.
  2224. ```typescript
  2225. import {ThreeViewer, HDRiGrounPlugin} from 'threepipe'
  2226. const viewer = new ThreeViewer({...})
  2227. const hdriGround = viewer.addPluginSync(new HDRiGrounPlugin())
  2228. // Load an hdr environment map
  2229. await viewer.setEnvironmentMap('https://threejs.org/examples/textures/equirectangular/venice_sunset_1k.hdr')
  2230. // set background to environment
  2231. viewer.scene.background = 'environment'
  2232. // or
  2233. // viewer.scene.background = viewer.scene.environemnt
  2234. // enable the plugin
  2235. hdriGround.enabled = true
  2236. ```
  2237. Check the [example](https://threepipe.org/examples/#hdri-ground-plugin/) for a demo.
  2238. ## VirtualCamerasPlugin
  2239. [//]: # (todo: image)
  2240. [Example](https://threepipe.org/examples/#virtual-cameras-plugin/) &mdash;
  2241. [Source Code](./src/plugins/rendering/VirtualCamerasPlugin.ts) &mdash;
  2242. [API Reference](https://threepipe.org/docs/classes/VirtualCamerasPlugin.html)
  2243. VirtualCamerasPlugin adds support for rendering to multiple virtual cameras in the viewer. These cameras are rendered in preRender callback just before the main camera is rendered. The virtual cameras can be added to the plugin and removed from it.
  2244. The feed to the virtual camera is rendered to a Render Target texture which can be accessed and re-rendered in the scene or used in other plugins.
  2245. ```typescript
  2246. import {ThreeViewer, VirtualCamerasPlugin} from 'threepipe'
  2247. const viewer = new ThreeViewer({...})
  2248. const virtualCameras = viewer.addPluginSync(new VirtualCamerasPlugin())
  2249. const camera = new PerspectiveCamera2('orbit', viewer.canvas, false, 45, 1)
  2250. camera.name = name
  2251. camera.position.set(0, 5, 0)
  2252. camera.target.set(0, 0.25, 0)
  2253. camera.userData.autoLookAtTarget = true // automatically look at the target (in setDirty)
  2254. camera.setDirty()
  2255. camera.addEventListener('update', ()=>{
  2256. viewer.setDirty() // if the camera is not added to the scene it wont update automatically when camera.setDirty is called(like from the UI)
  2257. })
  2258. const vCam = virtualCameras.addCamera(camera)
  2259. console.log(vCam.target) // target is a WebGLRenderTarget/IRenderTarget
  2260. ```
  2261. Check the [virtual camera](https://threepipe.org/examples/#virtual-camera/) example for using the texture in the scene.
  2262. ## EditorViewWidgetPlugin
  2263. [//]: # (todo: image)
  2264. [Example](https://threepipe.org/examples/#editor-view-widget-plugin/) &mdash;
  2265. [Source Code](./src/plugins/interaction/EditorViewWidgetPlugin.ts) &mdash;
  2266. [API Reference](https://threepipe.org/docs/classes/EditorViewWidgetPlugin.html)
  2267. EditorViewWidgetPlugin adds a ViewHelper in the parent of the viewer canvas to show the current camera view and allow the user to change the camera view to one of the primary world axes.
  2268. Simply add the plugin to the viewer to see the widget.
  2269. ```typescript
  2270. import {ThreeViewer, EditorViewWidgetPlugin} from 'threepipe'
  2271. const viewer = new ThreeViewer({...})
  2272. const plugin = viewer.addPluginSync(new EditorViewWidgetPlugin())
  2273. // to hide the widget
  2274. plugin.enabled = false
  2275. ```
  2276. ## Object3DWidgetsPlugin
  2277. [//]: # (todo: image)
  2278. [Example](https://threepipe.org/examples/#object3d-widgets-plugin/) &mdash;
  2279. [Source Code](./src/plugins/extras/Object3DWidgetsPlugin.ts) &mdash;
  2280. [API Reference](https://threepipe.org/docs/classes/Object3DWidgetsPlugin.html)
  2281. Object3DWidgetsPlugin adds support for light and camera helpers/gizmos in the viewer.
  2282. A helper is automatically created when any supported light or camera is added to the scene.
  2283. Simply add the plugin to the viewer to see the widget.
  2284. Support for additional types of helpers can be added dynamically or by other plugins by pushing a helper constructor to the `Object3DWidgetsPlugin.helpers` array, and calling `Object3DWidgetsPlugin.refresh()`.
  2285. The helper class prototype should implement the `IObject3DHelper` interface. Check `DirectionalLightHelper2` for an example.
  2286. ```typescript
  2287. import {ThreeViewer, Object3DWidgetsPlugin, Object3DGeneratorPlugin} from 'threepipe'
  2288. const viewer = new ThreeViewer({...})
  2289. // Add the plugin to add support
  2290. const plugin = viewer.addPluginSync(new Object3DWidgetsPlugin())
  2291. // Add some lights or cameras to the scene. (This can be done before adding the plugin as well)
  2292. // Using Object3DGeneratorPlugin to create a camera and add it to the scene.
  2293. const generator = viewer.getOrAddPluginSync(Object3DGeneratorPlugin)
  2294. generator.generate('camera-perspective', {
  2295. position: new Vector3(5, 5, 0),
  2296. name: 'My Camera'
  2297. })
  2298. // to hide the widgets
  2299. plugin.enabled = false
  2300. // to add support for a custom helper
  2301. plugin.helpers.push(MyCustomHelper)
  2302. plugin.refresh()
  2303. ```
  2304. ## Object3DGeneratorPlugin
  2305. [//]: # (todo: image)
  2306. [Example](https://threepipe.org/examples/#object3d-generator-plugin/) &mdash;
  2307. [Source Code](./src/plugins/extras/Object3DGeneratorPlugin.ts) &mdash;
  2308. [API Reference](https://threepipe.org/docs/classes/Object3DGeneratorPlugin.html)
  2309. Object3DGeneratorPlugin adds support for creating different types of lights and camera objects in the viewer.
  2310. Call the `generate` method with any type to generate a type of object(like lights, cameras, mesh etc).
  2311. Support for the following types of generators is included in the plugin:
  2312. * camera-perspective - Creates instance of `PerspectiveCamera2`
  2313. * light-directional - Creates instance of `DirectionalLight2`
  2314. * light-ambient - Creates instance of `AmbientLight2`
  2315. * light-point - Creates instance of `PointLight2`
  2316. * light-spot - Creates instance of `SpotLight2`
  2317. * light-hemisphere - Creates instance of `HemisphereLight2`
  2318. * light-rect-area - Creates instance of `RectAreaLight2`
  2319. Additional types of generators can be added dynamically or by other plugins by adding a custom generator function to the `Object3DGeneratorPlugin.generators` object. This is done by [GeometryGeneratorPlugin](#threepipeplugin-geometry-generator) to add various type of primitive objects like plane, sphere, etc
  2320. A custom generator can take in any kind object as parameters and should return an `IObject3D`.
  2321. Sample Usage
  2322. ```typescript
  2323. import {ThreeViewer, Object3DWidgetsPlugin, Object3DGeneratorPlugin, Mesh2} from 'threepipe'
  2324. const viewer = new ThreeViewer({...})
  2325. const generator = viewer.addPluginSync(Object3DGeneratorPlugin)
  2326. generator.generate('camera-perspective', {
  2327. position: new Vector3(5, 5, 0),
  2328. name: 'My Camera'
  2329. })
  2330. const light = generator.generate('light-spot', {
  2331. position: new Vector3(5, 0, 0),
  2332. })
  2333. // to add support for a custom helper
  2334. plugin.generators['custom-object'] = (params)=>{
  2335. const object = new Mesh2(new PlaneGeometry(1,1), new PhysicalMaterial())
  2336. object.name = params.name ?? 'Custom Mesh'
  2337. if(params.position) object.position.copy(params.position)
  2338. return object
  2339. }
  2340. const obj = generator.generate('custom-object', {
  2341. position: new Vector3(5, 0, 0),
  2342. })
  2343. // Add Object3DWidgetsPlugin to see the added lights and cameras.
  2344. viewer.addPluginSync(new Object3DWidgetsPlugin())
  2345. ```
  2346. Check the [example](https://threepipe.org/examples/#object3d-generator-plugin/) for the UI.
  2347. ## DeviceOrientationControlsPlugin
  2348. [//]: # (todo: image)
  2349. [Example](https://threepipe.org/examples/#device-orientation-controls-plugin/) &mdash;
  2350. [Source Code](./src/plugins/interaction/DeviceOrientationControlsPlugin.ts) &mdash;
  2351. [API Reference](https://threepipe.org/docs/classes/DeviceOrientationControlsPlugin.html)
  2352. DeviceOrientationControlsPlugin enables controlling the main camera rotation in the scene with device orientation. This only works on devices which have a gyroscope(but can also be emulated in devtools in chrome).
  2353. After the plugin is added, it adds support for setting `deviceOrientation` as the key in `scene.mainCamera.controlMode`.
  2354. When the controls is started (for the first time), the current camera rotation is and the device orientation is saved and used as reference. To reset the saved device orientation, call `resetView` in the controls.
  2355. Sample Usage
  2356. ```typescript
  2357. import {ThreeViewer, DeviceOrientationControlsPlugin, Mesh2} from 'threepipe'
  2358. const viewer = new ThreeViewer({...})
  2359. viewer.addPluginSync(DeviceOrientationControlsPlugin)
  2360. // after some user action
  2361. viewer.scene.mainCamera.controlsMode = 'deviceOrientation'
  2362. // to reset the saved device orientation
  2363. viewer.scene.mainCamera.controls.resetView()
  2364. // switch back to default orbit controls
  2365. viewer.scene.mainCamera.controlsMode = 'orbit'
  2366. ```
  2367. ## PointerLockControlsPlugin
  2368. [//]: # (todo: image)
  2369. [Example](https://threepipe.org/examples/#pointer-lock-controls-plugin/) &mdash;
  2370. [Source Code](./src/plugins/interaction/PointerLockControlsPlugin.ts) &mdash;
  2371. [API Reference](https://threepipe.org/docs/classes/PointerLockControlsPlugin.html)
  2372. PointerLockControlsPlugin adds support for using PointerLockControls from three.js. It works similar to controls in first person shooter, captures the mouse pointer and uses it to look around with the camera.
  2373. After the plugin is added, it adds support for setting `pointerLock` as the key in `scene.mainCamera.controlMode`.
  2374. Sample Usage
  2375. ```typescript
  2376. import {ThreeViewer, PointerLockControlsPlugin, Mesh2} from 'threepipe'
  2377. const viewer = new ThreeViewer({...})
  2378. viewer.addPluginSync(PointerLockControlsPlugin)
  2379. // after some user action
  2380. viewer.scene.mainCamera.controlsMode = 'pointerLock'
  2381. // listen to lock/unlock events
  2382. viewer.scene.mainCamera.controls?.addEventListener('lock', ()=> console.log('pointer locked'))
  2383. viewer.scene.mainCamera.controls?.addEventListener('unlock', ()=> console.log('pointer unlocked'))
  2384. // switch back to default orbit controls
  2385. viewer.scene.mainCamera.controlsMode = 'orbit'
  2386. ```
  2387. ## ThreeFirstPersonControlsPlugin
  2388. [//]: # (todo: image)
  2389. [Example](https://threepipe.org/examples/#three-first-person-controls-plugin/) &mdash;
  2390. [Source Code](./src/plugins/interaction/ThreeFirstPersonControlsPlugin.ts) &mdash;
  2391. [API Reference](https://threepipe.org/docs/classes/ThreeFirstPersonControlsPlugin.html)
  2392. ThreeFirstPersonControlsPlugin adds support for using FirstPersonControls from three.js. It works similar to idle look around in first person games, it does not captures the mouse pointer.
  2393. After the plugin is added, it adds support for setting `threeFirstPerson` as the key in `scene.mainCamera.controlMode`.
  2394. Sample Usage
  2395. ```typescript
  2396. import {ThreeViewer, ThreeFirstPersonControlsPlugin, Mesh2} from 'threepipe'
  2397. const viewer = new ThreeViewer({...})
  2398. viewer.addPluginSync(ThreeFirstPersonControlsPlugin)
  2399. // after some user action
  2400. viewer.scene.mainCamera.controlsMode = 'threeFirstPerson'
  2401. // switch back to default orbit controls
  2402. viewer.scene.mainCamera.controlsMode = 'orbit'
  2403. ```
  2404. ## GLTFKHRMaterialVariantsPlugin
  2405. [//]: # (todo: image)
  2406. [Example](https://threepipe.org/examples/#gltf-khr-material-variants-plugin/) &mdash;
  2407. [Source Code](./src/plugins/extras/GLTFKHRMaterialVariantsPlugin.ts) &mdash;
  2408. [API Reference](https://threepipe.org/docs/classes/GLTFKHRMaterialVariantsPlugin.html)
  2409. GLTFKHRMaterialVariantsPlugin adds support for importing and exporting glTF models with the `KHR_materials_variants` extension to load the model with different material variants/combinations. It also provides API and UI to change the current material variant.
  2410. The plugin automatically adds support for the extension when added to the viewer.
  2411. The materials are stored in `object.userData._variantMaterials` and are automatically loaded and saved when using the `GLTFLoader`.
  2412. Sample Usage
  2413. ```typescript
  2414. import {ThreeViewer, GLTFKHRMaterialVariantsPlugin, Mesh2} from 'threepipe'
  2415. const viewer = new ThreeViewer({...})
  2416. const variantsPlugin = viewer.addPluginSync(GLTFKHRMaterialVariantsPlugin)
  2417. // load some model
  2418. await viewer.load(model_url)
  2419. // list of all variants in the model (names and objects)
  2420. console.log(variantsPlugin.variants)
  2421. // change the selected variant
  2422. variantsPlugin.selectedVariant = 'beach'
  2423. ```
  2424. ### Links
  2425. - https://www.khronos.org/blog/blender-gltf-i-o-support-for-gltf-pbr-material-extensions
  2426. - https://www.khronos.org/blog/streamlining-3d-commerce-with-material-variant-support-in-gltf-assets
  2427. - https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_variants/README.md
  2428. ## Rhino3dmLoadPlugin
  2429. [Example](https://threepipe.org/examples/#rhino3dm-load/) &mdash;
  2430. [Source Code](./src/plugins/import/Rhino3dmLoadPlugin.ts) &mdash;
  2431. [API Reference](https://threepipe.org/docs/classes/Rhino3dmLoadPlugin.html)
  2432. Adds support for loading .3dm files generated by [Rhino 3D](https://www.rhino3d.com/). This plugin includes some changes with how 3dm files are loaded in three.js. The changes are around loading layer and primitive properties when set as reference in the 3dm files.
  2433. It also adds some helpful options to process the model after load.
  2434. ```typescript
  2435. import {Rhino3dmLoadPlugin} from 'threepipe'
  2436. const rhino3dmPlugin = viewer.addPluginSync(new Rhino3dmLoadPlugin())
  2437. rhino3dmPlugin.importMaterials = true // import materials source from 3dm file
  2438. rhino3dmPlugin.forceLayerMaterials = true // force material source to be layer in 3dm file.
  2439. rhino3dmPlugin.hideLineMesh = true // hide all lines and points in the model.
  2440. rhino3dmPlugin.replaceWithInstancedMesh = true // replace meshes with the same parent, geometry and material with a single instance mesh.
  2441. const mesh = await viewer.load('file.3dm')
  2442. ```
  2443. ## PLYLoadPlugin
  2444. [Example](https://threepipe.org/examples/#ply-load/) &mdash;
  2445. [Source Code](./src/plugins/import/PLYLoadPlugin.ts) &mdash;
  2446. [API Reference](https://threepipe.org/docs/classes/PLYLoadPlugin.html)
  2447. Adds support for loading .ply ([Polygon file format](https://en.wikipedia.org/wiki/PLY_(file_format))) files.
  2448. ```typescript
  2449. import {PLYLoadPlugin} from 'threepipe'
  2450. viewer.addPluginSync(new PLYLoadPlugin())
  2451. const mesh = await viewer.load('file.ply')
  2452. ```
  2453. ## USDZLoadPlugin
  2454. [Example](https://threepipe.org/examples/#usdz-load/) &mdash;
  2455. [Source Code](./src/plugins/import/USDZLoadPlugin.ts) &mdash;
  2456. [API Reference](https://threepipe.org/docs/classes/USDZLoadPlugin.html)
  2457. Adds support for loading .usdz and .usda ([Universal Scene Description](https://graphics.pixar.com/usd/docs/index.html)) files.
  2458. ```typescript
  2459. import {USDZLoadPlugin} from 'threepipe'
  2460. viewer.addPluginSync(new USDZLoadPlugin())
  2461. const mesh = await viewer.load('file.usdz')
  2462. const mesh2 = await viewer.load('file.usda')
  2463. ```
  2464. ## STLLoadPlugin
  2465. [Example](https://threepipe.org/examples/#stl-load/) &mdash;
  2466. [Source Code](./src/plugins/import/STLLoadPlugin.ts) &mdash;
  2467. [API Reference](https://threepipe.org/docs/classes/STLLoadPlugin.html)
  2468. Adds support for loading .stl ([Stereolithography](https://en.wikipedia.org/wiki/STL_(file_format))) files.
  2469. ```typescript
  2470. import {STLLoadPlugin} from 'threepipe'
  2471. viewer.addPluginSync(new STLLoadPlugin())
  2472. const mesh = await viewer.load('file.stl')
  2473. ```
  2474. ## KTX2LoadPlugin
  2475. [Example](https://threepipe.org/examples/#ktx2-load/) &mdash;
  2476. [Source Code](./src/plugins/import/KTX2LoadPlugin.ts) &mdash;
  2477. [API Reference](https://threepipe.org/docs/classes/KTX2LoadPlugin.html)
  2478. Adds support for loading .ktx2 ([Khronos Texture](https://www.khronos.org/opengles/sdk/tools/KTX/file_format_spec/) files with asset manager and embedded in glTF files.
  2479. KTX2LoadPlugin also adds support for exporting loaded .ktx2 files in glTF files with the [KHR_texture_basisu](https://www.khronos.org/registry/KHR/textures/2.0-extensions/KHR_texture_basisu/) extension.
  2480. ```typescript
  2481. import {KTX2LoadPlugin} from 'threepipe'
  2482. viewer.addPluginSync(new KTX2LoadPlugin())
  2483. const texture = await viewer.load('file.ktx2')
  2484. ```
  2485. ## KTXLoadPlugin
  2486. [Example](https://threepipe.org/examples/#ktx-load/) &mdash;
  2487. [Source Code](./src/plugins/import/KTXLoadPlugin.ts) &mdash;
  2488. [API Reference](https://threepipe.org/docs/classes/KTXLoadPlugin.html)
  2489. Adds support for loading .ktx ([Khronos Texture](https://www.khronos.org/opengles/sdk/tools/KTX/file_format_spec/) files.
  2490. Note: This plugin only adds support for loading .ktx file, and not exporting them in the bundled .glb. Use .ktx2 files instead of .ktx files for better compression and performance.
  2491. ```typescript
  2492. import {KTXLoadPlugin} from 'threepipe'
  2493. viewer.addPluginSync(new KTXLoadPlugin())
  2494. const texture = await viewer.load('file.ktx')
  2495. ```
  2496. ## GLTFMeshOptDecodePlugin
  2497. [Example](https://threepipe.org/examples/#gltf-meshopt-compression/) &mdash;
  2498. [Source Code](./src/plugins/import/GLTFMeshOptDecodePlugin.ts) &mdash;
  2499. [API Reference](https://threepipe.org/docs/classes/GLTFMeshOptDecodePlugin.html)
  2500. Loads the MeshOpt Decoder module from [meshoptimizer](https://github.com/zeux/meshoptimizer) library at runtime from a customisable cdn url.
  2501. The loaded module is set in `window.MeshoptDecoder` and then used by `GLTFLoader2` to decode files using [EXT_meshopt_compression](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Vendor/EXT_meshopt_compression/README.md) extension
  2502. ```typescript
  2503. import {GLTFMeshOptDecodePlugin} from 'threepipe'
  2504. const plugin = viewer.addPluginSync(new GLTFMeshOptDecodePlugin())
  2505. // await plugin.initialize() // optional, this happens when loading a gltf file with extension anyway
  2506. const texture = await viewer.load('file.glb')
  2507. ```
  2508. ## SimplifyModifierPlugin
  2509. [Example](https://threepipe.org/examples/#simplify-modifier-plugin/) &mdash;
  2510. [Source Code](./src/plugins/extras/SimplifyModifierPlugin.ts) &mdash;
  2511. [API Reference](https://threepipe.org/docs/classes/SimplifyModifierPlugin.html)
  2512. Boilerplate for implementing a plugin for simplifying geometries.
  2513. This is a base class and cannot be used directly.
  2514. A sample to use it:
  2515. ```typescript
  2516. class SimplifyModifierPluginImpl extends SimplifyModifierPlugin {
  2517. protected _simplify(geometry: IGeometry, count: number) {
  2518. return new SimplifyModifier().modify(geometry, count) as IGeometry
  2519. }
  2520. }
  2521. const plugin = viewer.addPluginSync(new SimplifyModifierPluginImpl())
  2522. const root = await viewer.load('file.glb')
  2523. plugin.simplifyAll(root, {factor: 0.75})
  2524. ```
  2525. Check the [example](https://threepipe.org/examples/#simplify-modifier-plugin/) for full implementation.
  2526. ## MeshOptSimplifyModifierPlugin
  2527. [Example](https://threepipe.org/examples/#meshopt-simplify-modifier-plugin/) &mdash;
  2528. [Source Code](./src/plugins/extras/MeshOptSimplifyModifierPlugin.ts) &mdash;
  2529. [API Reference](https://threepipe.org/docs/classes/MeshOptSimplifyModifierPlugin.html)
  2530. Simplify modifier using [meshoptimizer](https://github.com/zeux/meshoptimizer) library. It Loads the library at runtime from a customisable CDN URL.
  2531. Note: It does not guarantee that the geometry will be simplified to the exact target count.
  2532. ```typescript
  2533. const simplifyModifier = viewer.addPluginSync(new MeshOptSimplifyModifierPlugin())
  2534. const root = await viewer.load('file.glb')
  2535. simplifyModifier.simplifyAll(root, {factor: 0.75})
  2536. ```
  2537. # @threepipe Packages
  2538. Additional plugins can be found in the [plugins](plugins/) directory.
  2539. These add support for integrating with other libraries, adding new features, and other functionality with different licenses.
  2540. ## @threepipe/plugin-tweakpane
  2541. [Tweakpane](https://tweakpane.github.io/docs/) UI plugin for ThreePipe
  2542. [//]: # (todo: image)
  2543. [Example](https://threepipe.org/examples/#tweakpane-ui-plugin/) &mdash;
  2544. [Source Code](./plugins/tweakpane/src/TweakpaneUiPlugin.ts) &mdash;
  2545. [API Reference](https://threepipe.org/plugins/tweakpane/docs/classes/TweakpaneUiPlugin.html)
  2546. NPM: `npm install @threepipe/plugin-tweakpane`
  2547. CDN: https://threepipe.org/plugins/tweakpane/dist/index.mjs
  2548. TweakpaneUiPlugin adds support for using [uiconfig-tweakpane](https://github.com/repalash/uiconfig-tweakpane)
  2549. to create a configuration UI in applications using the [Tweakpane](https://tweakpane.github.io/docs/) library.
  2550. The plugin takes the [uiconfig](https://github.com/repalash/uiconfig.js)
  2551. that's defined in the viewer and all the objects to automatically render a UI in the browser.
  2552. ```typescript
  2553. import {IObject3D, ThreeViewer, TonemapPlugin} from 'threepipe'
  2554. import {TweakpaneUiPlugin} from '@threepipe/plugin-tweakpane'
  2555. const viewer = new ThreeViewer({...})
  2556. // Add the plugin
  2557. const plugin = viewer.addPluginSync(new TweakpaneUiPlugin(true)) // true to show expanded the UI by default
  2558. // Add the UI for the viewer
  2559. plugin.appendChild(viewer.uiConfig)
  2560. // Add UI for some plugins
  2561. plugin.setupPlugins(TonemapPlugin, DropzonePlugin)
  2562. ```
  2563. ## @threepipe/plugin-blueprintjs
  2564. [Blueprint.js](https://blueprintjs.com/) UI plugin for ThreePipe
  2565. [//]: # (todo: image)
  2566. [Example](https://threepipe.org/examples/#blueprintjs-ui-plugin/) &mdash;
  2567. [Source Code](./plugins/blueprintjs/src/BlueprintJsUiPlugin.ts) &mdash;
  2568. [API Reference](https://threepipe.org/plugins/blueprintjs/docs/classes/BlueprintJsUiPlugin.html)
  2569. NPM: `npm install @threepipe/plugin-blueprintjs`
  2570. CDN: https://threepipe.org/plugins/blueprintjs/dist/index.mjs
  2571. BlueprintJsUiPlugin adds support for using [uiconfig-blueprint](https://github.com/repalash/uiconfig-blueprint)
  2572. to create a configuration UI in applications using the [BlueprintJs](https://blueprintjs.com/) library.
  2573. The plugin takes the [uiconfig](https://github.com/repalash/uiconfig.js)
  2574. that's defined in the viewer and all the objects to automatically render a UI in the browser.
  2575. ```typescript
  2576. import {IObject3D, ThreeViewer, TonemapPlugin} from 'threepipe'
  2577. import {BlueprintJsUiPlugin} from '@threepipe/plugin-blueprintjs'
  2578. const viewer = new ThreeViewer({...})
  2579. // Add the plugin
  2580. const plugin = viewer.addPluginSync(new BlueprintJsUiPlugin(true)) // true to show expanded the UI by default
  2581. // Add the UI for the viewer
  2582. plugin.appendChild(viewer.uiConfig)
  2583. // Add UI for some plugins
  2584. plugin.setupPlugins(TonemapPlugin, DropzonePlugin)
  2585. ```
  2586. ## @threepipe/plugin-tweakpane-editor
  2587. Tweakpane Editor Plugin for ThreePipe
  2588. [//]: # (todo: image)
  2589. [Example](https://threepipe.org/examples/#tweakpane-editor/) &mdash;
  2590. [Source Code](./plugins/tweakpane-editor/src/TweakpaneEditorPlugin.ts) &mdash;
  2591. [API Reference](https://threepipe.org/plugins/tweakpane-editor/docs/classes/TweakpaneEditorPlugin.html)
  2592. NPM: `npm install @threepipe/plugin-tweakpane-editor`
  2593. CDN: https://threepipe.org/plugins/tweakpane-editor/dist/index.mjs
  2594. TweakpaneEditorPlugin uses TweakpaneUiPlugin to create an editor for editing viewer,
  2595. plugins, model and material configurations in the browser.
  2596. ```typescript
  2597. import {IObject3D, ThreeViewer, TonemapPlugin} from 'threepipe'
  2598. import {TweakpaneEditorPlugin} from '@threepipe/plugin-tweakpane-editor'
  2599. const viewer = new ThreeViewer({...})
  2600. viewer.addPluginSync(new TweakpaneUiPlugin(true))
  2601. const editor = viewer.addPluginSync(new TweakpaneEditorPlugin())
  2602. // Add some plugins to the viewer
  2603. await viewer.addPlugins([
  2604. new ViewerUiConfigPlugin(),
  2605. // new SceneUiConfigPlugin(), // this is already in ViewerUiPlugin
  2606. new DepthBufferPlugin(HalfFloatType, true, true),
  2607. new NormalBufferPlugin(HalfFloatType, false),
  2608. new RenderTargetPreviewPlugin(false),
  2609. ])
  2610. // Load the plugin UI in the editor and tweakpane ui with categories.
  2611. editor.loadPlugins({
  2612. ['Viewer']: [ViewerUiConfigPlugin, SceneUiConfigPlugin, DropzonePlugin, FullScreenPlugin],
  2613. ['GBuffer']: [DepthBufferPlugin, NormalBufferPlugin],
  2614. ['Post-processing']: [TonemapPlugin],
  2615. ['Debug']: [RenderTargetPreviewPlugin],
  2616. })
  2617. ```
  2618. ## @threepipe/plugin-configurator
  2619. Configurator Plugin implementations with basic UI for Threepipe.
  2620. Includes Material Configurator and Switch Node Configurator Plugins.
  2621. NPM: `npm install @threepipe/plugin-configurator`
  2622. CDN: https://threepipe.org/plugins/dist/configurator/index.mjs
  2623. ### MaterialConfiguratorPlugin
  2624. [//]: # (todo: image)
  2625. [Example](https://threepipe.org/examples/#material-configurator-plugin/) &mdash;
  2626. [Source Code](./plugins/configurator/src/MaterialConfiguratorPlugin.ts) &mdash;
  2627. [API Reference](https://threepipe.org/plugins/configurator/docs/classes/MaterialConfiguratorPlugin.html)
  2628. MaterialConfiguratorPlugin adds a UI to configure and switch between different material variations.
  2629. The variations of materials are mapped to material names or uuids in the scene.
  2630. These variations can be applied to the materials in the scene. (This copies the properties to the same material instances instead of assigning new materials)
  2631. The plugin interfaces with the picking plugin and also provides uiConfig to show and edit the variations.
  2632. This functionality is inherited from [MaterialConfiguratorBasePlugin](https://threepipe.org/docs/classes/MaterialConfiguratorBasePlugin.html).
  2633. Additionally, this plugin adds a simple Grid UI in the DOM over the viewer canvas to show various material variations and allow the user to apply them.
  2634. The UI can also be used in the editor to edit the variations and apply them.
  2635. To use, simply add the plugin in the viewer and configure using the created UI and UI Config. Note that `PickingPlugin` is required to be added before this to allow configurator.
  2636. To create a custom configurator UI, use the `MaterialConfiguratorBasePlugin` directly and call the function `applyVariation`, `getPreview` and `addVariation` to apply and add variations respectively.
  2637. [//]: # (TODO Add Example for custom UI)
  2638. ### SwitchNodePlugin
  2639. [//]: # (todo: image)
  2640. [Example](https://threepipe.org/examples/#switch-node-plugin/) &mdash;
  2641. [Source Code](./plugins/configurator/src/SwitchNodePlugin.ts) &mdash;
  2642. [API Reference](https://threepipe.org/plugins/configurator/docs/classes/SwitchNodePlugin.html)
  2643. SwitchNodePlugin adds a UI to configure and switch between different different object variations within a switch node object.
  2644. This plugin allows you to configure object variations with object names in a file and apply them in the scene.
  2645. Each SwitchNode is a parent object with multiple direct children. Only one child is visible at a time.
  2646. This works by toggling the `visible` property of the children of a parent object.
  2647. The plugin interfaces with the picking plugin and also provides uiConfig to show and edit the variations.
  2648. It also provides a function to create snapshot previews of individual variations. This creates a limited render of the object with the selected child visible.
  2649. To get a proper render, its better to render it offline and set the image as a preview.
  2650. This functionality is inherited from [SwitchNodeBasePlugin](https://threepipe.org/docs/classes/SwitchNodeBasePlugin.html).
  2651. Additionally, this plugin adds a simple Grid UI in the DOM over the viewer canvas to show various material variations and allow the user to apply them.
  2652. The UI can also be used in the editor to edit the variations and apply them.
  2653. To use, simply add the plugin in the viewer and configure using the created UI and UI Config. Note that `PickingPlugin` is required to be added before this to allow configurator.
  2654. To create a custom configurator UI, use the `SwitchNodeBasePlugin` directly and call the function `selectNode`, `getPreview` and `addNode` to apply and add variations respectively.
  2655. [//]: # (TODO Add Example for custom UI)
  2656. ## @threepipe/plugin-gltf-transform
  2657. Exports [GLTFDracoExportPlugin](https://threepipe.org/plugins/gltf-transform/docs/classes/GLTFDracoExportPlugin.html) that extends the default gltf exporter to compress the file after export.
  2658. [Example](https://threepipe.org/examples/#glb-draco-export/) &mdash;
  2659. [Source Code](plugins/gltf-transform/src/index.ts) &mdash;
  2660. [API Reference](https://threepipe.org/plugins/gltf-transform/docs)
  2661. NPM: `npm install @threepipe/plugin-gltf-transform`
  2662. To use, simply add the plugin to the viewer and export using the `viewer.export` or `viewer.exportScene` functions. This also adds UI options to `AssetExporterPlugin` which are used when exporting using the plugin or using `viewer.exportScene`
  2663. The plugin overloads the default gltf exporter in the asset manager with `GLTFDracoExporter`. Using the [gltf-transform](https://gltf-transform.donmccurdy.com/) library, it compresses the exported gltf file using the [khr_draco_mesh_compression](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_draco_mesh_compression/README.md) extension.
  2664. Note - Only `glb` export supported right now.
  2665. Sample Usage:
  2666. ```typescript
  2667. import {ThreeViewer, downloadBlob} from 'threepipe'
  2668. import {GLTFDracoExportPlugin} from '@threepipe/plugin-gltf-transform'
  2669. const viewer = new ThreeViewer({...})
  2670. viewer.addPluginSync(GLTFDracoExportPlugin)
  2671. await viewer.load('file.glb')
  2672. const blob = await viewer.exportScene({
  2673. compress: true, // this must be specified, by default it's false.
  2674. viewerConfig: true, // to export with viewer, scene and plugin settings
  2675. })
  2676. // download the file
  2677. downloadBlob(blob, 'scene.glb')
  2678. ```
  2679. ## @threepipe/plugin-network
  2680. Network/Cloud related plugin implementations for Threepipe.
  2681. Includes `AWSClientPlugin` and `TransfrSharePlugin`.
  2682. NPM: `npm install @threepipe/plugin-network`
  2683. CDN: https://threepipe.org/plugins/dist/network/index.mjs
  2684. ### TransfrSharePlugin
  2685. [//]: # (todo: image)
  2686. [Example](https://threepipe.org/examples/#transfr-share-plugin/) &mdash;
  2687. [Source Code](./plugins/network/src/TransfrSharePlugin.ts) &mdash;
  2688. [API Reference](https://threepipe.org/plugins/network/docs/classes/TransfrSharePlugin.html)
  2689. TransfrSharePlugin provides functionality to export and upload the scene or an object as glb and provide link to share/preview/edit the files.
  2690. It uses the options from the `AssetExporterPlugin` to export the scene or object, and can be configured using it's ui.
  2691. Uses the free service [transfr.one](https://transfr.one/) by default which deletes the files after a certain time, but the url can be changed to a custom backend or a self-hosted version of transfr.
  2692. Note: since the uploaded files are publicly accessible by anyone by default, it is recommended to encrypt the file using the exporter options or use a secure backend.
  2693. ```typescript
  2694. import {ThreeViewer} from 'threepipe'
  2695. import {TransfrSharePlugin} from '@threepipe/plugin-network'
  2696. const viewer = new ThreeViewer({...})
  2697. // Add the plugin
  2698. const sharePlugin = viewer.addPluginSync(new TransfrSharePlugin())
  2699. // when sharing, this query param is set to the model link
  2700. sharePlugin.queryParam = 'm' // this is the default
  2701. // used when clicking/calling Share page link
  2702. sharePlugin.pageUrl = window.location.href // this is the default
  2703. // used when clicking/calling Share viewer link
  2704. sharePlugin.baseUrls.viewer = 'https://threepipe.org/examples/model-viewer/index.html'
  2705. // used when clicking/calling Share editor link
  2706. sharePlugin.baseUrls.editor = 'https://threepipe.org/examples/tweakpane-editor/index.html'
  2707. // set to a custom server
  2708. // sharePlugin.serverUrl = 'https://example.com/'
  2709. // upload and get the link of the 3d model
  2710. const link = await sharePlugin.getLink()
  2711. // or upload and get the share link with a base page. And also copy to clipboard and shows a alert prompt(using viewer.dialog)
  2712. const link2 = await sharePlugin.shareLink('https://example.com/custom_viewer')
  2713. // or get the editor link directly
  2714. const link3 = await sharePlugin.shareEditorLink()
  2715. // to encrypt
  2716. const assetExporterPlugin = viewer.getPlugin(AssetExporterPlugin) // this is a dependency, so automatically added
  2717. assetExporterPlugin.encrypt = true
  2718. // assetExporterPlugin.encryptKey = 'password' // user will be prompted for password when exporting if this is commented
  2719. await sharePlugin.shareViewerLink()
  2720. ```
  2721. ### AWSClientPlugin
  2722. [//]: # (todo: image)
  2723. [Example](https://threepipe.org/examples/#aws-client-plugin/) &mdash;
  2724. [Source Code](./plugins/network/src/AWSClientPlugin.ts) &mdash;
  2725. [API Reference](https://threepipe.org/plugins/network/docs/classes/AWSClientPlugin.html)
  2726. Provides `fetch` function that performs a fetch request with AWS v4 signing.
  2727. This is useful for connecting to AWS services like S3 directly from the client.
  2728. It also interfaces with the `FileTransferPlugin` to directly upload file when exported with the viewer or the plugin.
  2729. Note: Make sure to use keys with limited privileges and correct CORS settings.
  2730. All the keys will be stored in plain text if `serializeSettings` is set to true
  2731. ```typescript
  2732. import {ThreeViewer} from 'threepipe'
  2733. import {AWSClientPlugin} from '@threepipe/plugin-network'
  2734. const viewer = new ThreeViewer({...})
  2735. const awsPlugin = viewer.addPluginSync(new AWSClientPlugin())
  2736. // set parameters and export. This can all be done from the UI also.
  2737. awsPlugin.accessKeyId = '00000000000000000000'
  2738. awsPlugin.accessKeySecret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
  2739. awsPlugin.endpointURL = 'https://s3.amazonaws.com/bucket/'
  2740. awsPlugin.pathPrefix = 'some/path/'
  2741. // or load a json file with the parameters
  2742. // the json file can be creating by entering the data in the UI and clicking the download preset json option.
  2743. await viewer.load('file.json')
  2744. // this will export the scene as glb
  2745. const blob = await viewer.exportScene()
  2746. // for a plugin config
  2747. // blob = await viewer.export(viewer.getPlugin(GroundPlugin))
  2748. // for a material
  2749. // blob = await viewer.export(object.material)
  2750. // for an object/mesh
  2751. // blob = await viewer.export(object, {exportExt: 'glb'})
  2752. // upload to s3. needs the parameters to be correct
  2753. await viewer.exportBlob(blob, 'filename.glb')
  2754. ```
  2755. Note: CORS should be enabled for the S3 bucket on the domain where the viewer is hosted. This requirement can be bypassed during development by setting `AWSClientPlugin.USE_PROXY = true`. A free proxy is already set by default and can be changed by setting `AWSClientPlugin.PROXY_URL`.
  2756. ## @threepipe/plugins-extra-importers
  2757. Exports several plugins to add support for various file types.
  2758. [Example](https://threepipe.org/examples/#extra-importer-plugins/) &mdash;
  2759. [Source Code](./plugins/extra-importers/src/index.ts) &mdash;
  2760. [API Reference](https://threepipe.org/plugins/extra-importers/docs)
  2761. NPM: `npm install @threepipe/plugins-extra-importers`
  2762. CDN: https://threepipe.org/plugins/extra-importers/dist/index.mjs
  2763. This package exports several plugins to add support for several file types using the following plugins
  2764. - [TDSLoadPlugin](https://threepipe.org/plugins/extra-importers/docs/classes/TDSLoadPlugin.html) - Load 3DS Max (.3ds) files
  2765. - [ThreeMFLoadPlugin](https://threepipe.org/plugins/extra-importers/docs/classes/ThreeMFLoadPlugin.html) - Load 3MF (.3mf) files
  2766. - [ColladaLoadPlugin](https://threepipe.org/plugins/extra-importers/docs/classes/ColladaLoadPlugin.html) - Load Collada (.dae) files
  2767. - [AMFLoadPlugin](https://threepipe.org/plugins/extra-importers/docs/classes/AMFLoadPlugin.html) - Load AMF (.amf) files
  2768. - [BVHLoadPlugin](https://threepipe.org/plugins/extra-importers/docs/classes/BVHLoadPlugin.html) - Load BVH (.bvh) files
  2769. - [VOXLoadPlugin](https://threepipe.org/plugins/extra-importers/docs/classes/VOXLoadPlugin.html) - Load MagicaVoxel (.vox) files
  2770. - [GCodeLoadPlugin](https://threepipe.org/plugins/extra-importers/docs/classes/GCodeLoadPlugin.html) - Load GCode (.gcode) files
  2771. - [MDDLoadPlugin](https://threepipe.org/plugins/extra-importers/docs/classes/MDDLoadPlugin.html) - Load MDD (.mdd) files
  2772. - [PCDLoadPlugin](https://threepipe.org/plugins/extra-importers/docs/classes/PCDLoadPlugin.html) - Load Point cloud data (.pcd) files
  2773. - [TiltLoadPlugin](https://threepipe.org/plugins/extra-importers/docs/classes/TiltLoadPlugin.html) - Load Tilt Brush (.tilt) files
  2774. - [VRMLLoadPlugin](https://threepipe.org/plugins/extra-importers/docs/classes/VRMLLoadPlugin.html) - Load VRML (.wrl) files
  2775. - [MPDLoadPlugin](https://threepipe.org/plugins/extra-importers/docs/classes/MPDLoadPlugin.html) - Load LDraw (.mpd) files
  2776. - [VTKLoadPlugin](https://threepipe.org/plugins/extra-importers/docs/classes/VTKLoadPlugin.html) - Load VTK (.vtk) files
  2777. - [XYZLoadPlugin](https://threepipe.org/plugins/extra-importers/docs/classes/XYZLoadPlugin.html) - Load XYZ (.xyz) files
  2778. To add all the plugins at once use `extraImporters`. This adds support for loading all the above file types.
  2779. ```typescript
  2780. import {ThreeViewer} from 'threepipe'
  2781. import {extraImporters} from '@threepipe/plugins-extra-importers'
  2782. const viewer = new ThreeViewer({...})
  2783. viewer.addPluginsSync(extraImporters)
  2784. // Now load any file as is.
  2785. const model = await viewer.load<IObject3D>('file.3mf')
  2786. // To load the file as a data url, use the correct mimetype
  2787. const model1 = await viewer.load<IObject3D>('data:model/3mf;base64,...')
  2788. ```
  2789. Remove the `<IObject3D>` if using javascript and not typescript.
  2790. ## @threepipe/plugin-blend-importer
  2791. Exports [BlendImporterPlugin](https://threepipe.org/plugins/blend-importer/docs/classes/BlendLoadPlugin.html) which adds support for loading .blend files.
  2792. It uses [js.blend](https://github.com/acweathersby/js.blend) for parsing blend file structure.
  2793. Note: This is still a WIP.
  2794. Currently working: `Mesh`, `BufferGeometry` and basic `PointLight`.
  2795. To be added: `PhysicalMaterial`, `UnlitMaterial` (similar to blender-gltf-io plugin)
  2796. [Example](https://threepipe.org/examples/#blend-load/) &mdash;
  2797. [Source Code](./plugins/blend-importer/src/index.ts) &mdash;
  2798. [API Reference](https://threepipe.org/plugins/blend-importer/docs)
  2799. NPM: `npm install @threepipe/plugin-blend-importer`
  2800. ```typescript
  2801. import {ThreeViewer} from 'threepipe'
  2802. import {BlendLoadPlugin} from '@threepipe/plugin-blend-importer'
  2803. const viewer = new ThreeViewer({...})
  2804. viewer.addPluginSync(BlendLoadPlugin)
  2805. // Now load any .blend file.
  2806. const model = await viewer.load<IObject3D>('path/to/file.blend')
  2807. // To load the file as a data url, use the correct mimetype
  2808. const model1 = await viewer.load<IObject3D>('data:application/x-blender;base64,...')
  2809. ```
  2810. [//]: # ( TODO: The plugin should parse and references to other assets and find them relative to the .blend file or the current location.)
  2811. ## @threepipe/plugin-geometry-generator
  2812. Exports [GeometryGeneratorPlugin](https://threepipe.org/plugins/geometry-generator/docs/classes/BlendLoadPlugin.html) with several Geometry generators to create parametric and updatable geometries like plane, circle, sphere, box, torus, cylinder, cone etc.
  2813. [Example](https://threepipe.org/examples/#geometry-generator-plugin/) &mdash;
  2814. [Source Code](./plugins/geometry-generator/src/index.ts) &mdash;
  2815. [API Reference](https://threepipe.org/plugins/geometry-generator/docs)
  2816. NPM: `npm install @threepipe/plugin-geometry-generator`
  2817. The generated geometries/meshes include the parameters in the userData and can be re-generated by changing the parameters from the UI or the plugin API.
  2818. Includes the following generator which inherit from [AGeometryGenerator](https://threepipe.org/plugins/geometry-generator/docs/classes/AGeometryGenerator.html):
  2819. - **plane**: [PlaneGeometryGenerator](https://threepipe.org/plugins/geometry-generator/docs/classes/PlaneGeometryGenerator),
  2820. - **sphere**: [SphereGeometryGenerator](https://threepipe.org/plugins/geometry-generator/docs/classes/SphereGeometryGenerator),
  2821. - **box**: [BoxGeometryGenerator](https://threepipe.org/plugins/geometry-generator/docs/classes/BoxGeometryGenerator),
  2822. - **circle**: [CircleGeometryGenerator](https://threepipe.org/plugins/geometry-generator/docs/classes/CircleGeometryGenerator),
  2823. - **torus**: [TorusGeometryGenerator](https://threepipe.org/plugins/geometry-generator/docs/classes/TorusGeometryGenerator),
  2824. - **cylinder**: [CylinderGeometryGenerator](https://threepipe.org/plugins/geometry-generator/docs/classes/CylinderGeometryGenerator),
  2825. Sample Usage:
  2826. ```typescript
  2827. import {ThreeViewer, UnlitMaterial} from 'threepipe'
  2828. import {GeometryGeneratorPlugin} from '@threepipe/plugin-geometry-generator'
  2829. const viewer = new ThreeViewer({...})
  2830. const generator = viewer.addPluginSync(GeometryGeneratorPlugin)
  2831. const sphere = generator.generateObject('sphere', {radius: 3})
  2832. viewer.scene.addObject(sphere)
  2833. // to update the geometry
  2834. generator.updateGeometry(sphere.geometry, {radius: 4, widthSegments: 100})
  2835. // to add a custom generator
  2836. generator.generators.custom = new CustomGenerator('custom') // Extend from AGeometryGenerator or implement GeometryGenerator interface
  2837. // refresh the ui so the new generator is available to select.
  2838. generator.uiConfig.uiRefresh?.()
  2839. // change the material type for all objects
  2840. generator.defaultMaterialClass = UnlitMaterial // by default its PhysicalMaterial
  2841. viewer.scene.addObject(generator.generateObject('box', {width: 2, height: 2, depth: 2}))
  2842. ```
  2843. ## @threepipe/plugin-gaussian-splatting
  2844. Exports [GaussianSplattingPlugin](https://threepipe.org/plugins/gaussian-splatting/docs/classes/GaussianSplattingPlugin.html) which adds support for loading .blend files.
  2845. It uses [`three-gaussian-splat`](./plugins/gaussian-splatting/src/three-gaussian-splat), a rewrite of [@zappar/three-guassian-splat](https://github.com/zappar-xr/three-gaussian-splat) (and [gsplat.js](https://github.com/huggingface/gsplat.js) and [antimatter15/splat](https://github.com/antimatter15/splat)) for loading splat files and rendering gaussian splats.
  2846. [Example](https://threepipe.org/examples/#splat-load/) &mdash;
  2847. [Source Code](./plugins/gaussian-splatting/src/index.ts) &mdash;
  2848. [API Reference](https://threepipe.org/plugins/gaussian-splatting/docs)
  2849. NPM: `npm install @threepipe/plugin-gaussian-splatting`
  2850. Note: This is still a WIP.
  2851. Currently working:
  2852. * Importing .splat files (just array buffer of gaussian splat attributes)
  2853. * ThreeGaussianSplatPlugin (Same as GaussianSplattingPlugin), add importer and update events to the viewer
  2854. * GaussianSplatMaterialExtension for adding gaussian splat functionality to any material like Unlit, Physical
  2855. * GaussianSplatMesh a subclass of Mesh2 for holding the gaussian splat geometry and a material with gaussian splat extension. also handles basic raycast in the splat geometry. (assuming simple points)
  2856. * GaussianSplatGeometry holds the geometry data and and the sort worker. Computes correct bounding box and sphere.
  2857. * SplatLoader for loading splat files and creating the geometry and material.
  2858. * GaussianSplatMaterialUnlit, GaussianSplatMaterialRaw
  2859. * GaussianSplatMaterialPhysical, working but normals are hardcoded to 0,1,0
  2860. TBD:
  2861. * Exporting/embedding splat files into glb
  2862. * Rendering to depth/gbuffer
  2863. * Estimate normals/read from file
  2864. * Lighting in GaussianSplatMaterialPhysical
  2865. ```typescript
  2866. import {ThreeViewer} from 'threepipe'
  2867. import {GaussianSplattingPlugin} from '@threepipe/plugin-gaussian-splatting'
  2868. const viewer = new ThreeViewer({...})
  2869. viewer.addPluginSync(GaussianSplattingPlugin)
  2870. // Now load any .splat file.
  2871. const model = await viewer.load<GaussianSplatMesh>('path/to/file.splat')
  2872. ```
  2873. ## @threepipe/plugin-svg-renderer
  2874. Exports [ThreeSVGRendererPlugin](https://threepipe.org/plugins/svg-renderer/docs/classes/ThreeSVGRendererPlugin.html) and [BasicSVGRendererPlugin](https://threepipe.org/plugins/svg-renderer/docs/classes/BasicSVGRendererPlugin.html) which provide support for rendering the 3d scene as [SVG(Scalable Vector Graphics)](https://developer.mozilla.org/en-US/docs/Web/SVG). The generated SVG is compatible with browser rendering and other software like figma, illustrator etc.
  2875. [Example](https://threepipe.org/examples/#three-svg-renderer/) &mdash;
  2876. [Source Code](./plugins/svg-renderer/src/index.ts) &mdash;
  2877. [API Reference](https://threepipe.org/plugins/svg-renderer/docs) &mdash;
  2878. [GPLV3 License](./plugins/svg-renderer/LICENSE)
  2879. NPM: `npm install @threepipe/plugin-svg-renderer`
  2880. Note: This is still a WIP. API might change slightly
  2881. `ThreeSVGRendererPlugin` uses [`three-svg-renderer`](./plugins/svg-renderer/src/three-svg-renderer), which is a modified version of [three-svg-renderer](https://www.npmjs.com/package/three-svg-renderer) (GPLV3 Licenced).
  2882. The plugin renderers meshes in the viewer scene to svg objects by computing polygons and contours of the geometry in view space. Check [LokiResearch/three-svg-renderer](https://github.com/LokiResearch/three-svg-renderer?tab=readme-ov-file#references) for more details.
  2883. In the modified version that is used here, support for some types of geometries is added and a rendered image in screen-space is used to create raster fill images for paths along with some other small changes. Check out the [Example](https://threepipe.org/examples/#three-svg-renderer/) for demo. See also [svg-geometry-playground example](https://threepipe.org/examples/#svg-geometry-playground/) for usage with other plugins `PickingPlugin`, `TransformControlsPlugin` and `GeometryGeneratorPlugin`.
  2884. Note that this does not support all the features of three.js and may not work with all types of materials and geometries. Check the examples for a list of sample models that do and don't work.
  2885. `BasicSVGRendererPlugin` is a sample plugin using [SVGRenderer](https://threejs.org/docs/index.html?q=svg#examples/en/renderers/SVGRenderer) from three.js addons. This renders all triangles in the scene to separate svg paths. Check the three.js docs for more details. Check out the [Example](https://threepipe.org/examples/#basic-svg-renderer/) for demo.
  2886. ```typescript
  2887. import {ThreeViewer} from 'threepipe'
  2888. import {ThreeSVGRendererPlugin} from '@threepipe/plugin-svg-renderer'
  2889. const viewer = new ThreeViewer({
  2890. ...,
  2891. rgbm: false, // this is required
  2892. })
  2893. const svgRender = viewer.addPluginSync(ThreeSVGRendererPlugin)
  2894. svgRender.autoRender = true // automatically render when camera or any object changes.
  2895. svgRender.autoMakeSvgObjects = true // automatically create SVG objects for all meshes in the scene.
  2896. // svgRender.makeSVGObject(object) // manually create SVG object for an object. (if autoMakeSvgObjects is false)
  2897. // Now load or generate any 3d model. Make sure its not very big. And the meshes are optimized.
  2898. const model = await viewer.load<IOBject3D>('path/to/file.glb')
  2899. // clear the background of the viewer
  2900. viewer.scene.backgroundColor = null
  2901. viewer.scene.background = null
  2902. // disable damping to get better experience.
  2903. viewer.scene.mainCamera.controls!.enableDamping = false
  2904. // hide the canvas to see the underlying svg node.
  2905. // note: do not set the display to none or remove the canvas as OrbitControls and other plugins might still be tracking the canvas.
  2906. viewer.canvas.style.opacity = '0'
  2907. // 3d pipeline can also be disabled like this if `drawImageFills` is `false` to get better performance. Do this only after loading the model.
  2908. // await viewer.doOnce('postFrame') // wait for the first frame to be rendered (for autoScale etc)
  2909. // viewer.renderManager.autoBuildPipeline = false
  2910. // viewer.renderManager.pipeline = [] // this will disable main viewer rendering
  2911. ```