Created
January 31, 2025 14:52
-
-
Save josippapez/741857b5bceebd0217ce23213544b37e to your computer and use it in GitHub Desktop.
Blurred ice background 3d
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const BLurredIceBackground = () => { | |
| return ( | |
| <mesh scale={[10, 10, 1]} position={[0, 0, 1]}> | |
| <planeGeometry args={[2, 2]} /> | |
| <MeshTransmissionMaterial | |
| samples={1} | |
| resolution={16} | |
| anisotropicBlur={0.1} | |
| thickness={0.1} | |
| roughness={0.4} | |
| toneMapped={true} | |
| /> | |
| </mesh> | |
| ); | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment