├── .editorconfig ├── .gitignore ├── .prettierrc ├── .storybook ├── main.js └── preview.js ├── README.md ├── package.json ├── src ├── core │ ├── AutoUV2.tsx │ ├── IrradianceAtlasMapper.tsx │ ├── IrradianceCompositor.tsx │ ├── IrradianceLightProbe.tsx │ ├── IrradianceRenderer.tsx │ ├── IrradianceScene.tsx │ ├── IrradianceSceneManager.tsx │ ├── Lightmap.tsx │ └── WorkManager.tsx ├── index.tsx └── stories │ ├── DebugControls.tsx │ ├── DebugOverlayScene.tsx │ ├── Spinner.tsx │ ├── cylinder-smooth.glb │ ├── glb.d.ts │ ├── gltf.stories.tsx │ ├── helvetiker.json │ ├── orbitControls.d.ts │ ├── polyUV.stories.tsx │ ├── potpack.d.ts │ ├── simple.stories.tsx │ ├── smooth.stories.tsx │ ├── text.stories.tsx │ ├── tile-game-room6.glb │ └── viewport.css ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- 1 | export const parameters = { 2 | actions: { argTypesRegex: '^on[A-Z].*' } 3 | }; 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/package.json -------------------------------------------------------------------------------- /src/core/AutoUV2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/core/AutoUV2.tsx -------------------------------------------------------------------------------- /src/core/IrradianceAtlasMapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/core/IrradianceAtlasMapper.tsx -------------------------------------------------------------------------------- /src/core/IrradianceCompositor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/core/IrradianceCompositor.tsx -------------------------------------------------------------------------------- /src/core/IrradianceLightProbe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/core/IrradianceLightProbe.tsx -------------------------------------------------------------------------------- /src/core/IrradianceRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/core/IrradianceRenderer.tsx -------------------------------------------------------------------------------- /src/core/IrradianceScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/core/IrradianceScene.tsx -------------------------------------------------------------------------------- /src/core/IrradianceSceneManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/core/IrradianceSceneManager.tsx -------------------------------------------------------------------------------- /src/core/Lightmap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/core/Lightmap.tsx -------------------------------------------------------------------------------- /src/core/WorkManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/core/WorkManager.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/stories/DebugControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/stories/DebugControls.tsx -------------------------------------------------------------------------------- /src/stories/DebugOverlayScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/stories/DebugOverlayScene.tsx -------------------------------------------------------------------------------- /src/stories/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/stories/Spinner.tsx -------------------------------------------------------------------------------- /src/stories/cylinder-smooth.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/stories/cylinder-smooth.glb -------------------------------------------------------------------------------- /src/stories/glb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/stories/glb.d.ts -------------------------------------------------------------------------------- /src/stories/gltf.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/stories/gltf.stories.tsx -------------------------------------------------------------------------------- /src/stories/helvetiker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/stories/helvetiker.json -------------------------------------------------------------------------------- /src/stories/orbitControls.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/stories/orbitControls.d.ts -------------------------------------------------------------------------------- /src/stories/polyUV.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/stories/polyUV.stories.tsx -------------------------------------------------------------------------------- /src/stories/potpack.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/stories/potpack.d.ts -------------------------------------------------------------------------------- /src/stories/simple.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/stories/simple.stories.tsx -------------------------------------------------------------------------------- /src/stories/smooth.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/stories/smooth.stories.tsx -------------------------------------------------------------------------------- /src/stories/text.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/stories/text.stories.tsx -------------------------------------------------------------------------------- /src/stories/tile-game-room6.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/stories/tile-game-room6.glb -------------------------------------------------------------------------------- /src/stories/viewport.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/src/stories/viewport.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unframework/threejs-lightmap-baker/HEAD/yarn.lock --------------------------------------------------------------------------------