├── .eslintrc.json ├── .github └── workflows │ └── nextjs.yml ├── .gitignore ├── README.md ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── floor.jpg ├── mirror_b.glb ├── model.gltf ├── test.png ├── test1.mp4 ├── test2.mp4 └── vr_gallery_test.glb ├── src ├── LTCAreaLight │ ├── LTCAreaLight.tsx │ └── shader │ │ ├── DualKawaseBlur_Shader.ts │ │ ├── LTC_Shader.ts │ │ └── Utils.ts ├── effects │ └── Effect.tsx ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── api │ │ └── hello.ts │ └── index.tsx └── styles │ └── globals.css ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/nextjs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/.github/workflows/nextjs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/floor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/public/floor.jpg -------------------------------------------------------------------------------- /public/mirror_b.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/public/mirror_b.glb -------------------------------------------------------------------------------- /public/model.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/public/model.gltf -------------------------------------------------------------------------------- /public/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/public/test.png -------------------------------------------------------------------------------- /public/test1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/public/test1.mp4 -------------------------------------------------------------------------------- /public/test2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/public/test2.mp4 -------------------------------------------------------------------------------- /public/vr_gallery_test.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/public/vr_gallery_test.glb -------------------------------------------------------------------------------- /src/LTCAreaLight/LTCAreaLight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/src/LTCAreaLight/LTCAreaLight.tsx -------------------------------------------------------------------------------- /src/LTCAreaLight/shader/DualKawaseBlur_Shader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/src/LTCAreaLight/shader/DualKawaseBlur_Shader.ts -------------------------------------------------------------------------------- /src/LTCAreaLight/shader/LTC_Shader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/src/LTCAreaLight/shader/LTC_Shader.ts -------------------------------------------------------------------------------- /src/LTCAreaLight/shader/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/src/LTCAreaLight/shader/Utils.ts -------------------------------------------------------------------------------- /src/effects/Effect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/src/effects/Effect.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/src/pages/api/hello.ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/LTC_AreaLight_R3F_Component/HEAD/tsconfig.json --------------------------------------------------------------------------------