What "making an object clear" means in Blender
Making an object clear in Blender means adjusting its material so light passes through it instead of bouncing off a solid surface. You are changing how the object interacts with light — turning it from opaque (solid) to transparent (see-through) or translucent (partially see-through). This is useful when you want to create glass, water, plastic wrap, or any material where you can see through to what is behind it.
The term "clear" can mean different things depending on what you are building. A perfectly clear object like window glass lets light through with almost no distortion. A frosted glass object lets light through but scatters it so you cannot see a sharp image. A plastic bottle might be slightly cloudy. Blender handles all of these by adjusting the material's transparency and how light bends as it passes through.
Key Takeaways
- Transparency in Blender happens in the Shader Editor, where you connect a Principled BSDF shader to control how light passes through the object.
- The Transmission value controls how much light goes through the material — set it to 1.0 for full transparency, lower values for partial see-through effects.
- You must switch to Cycles render engine to see transparency effects in the viewport; Eevee render engine has different transparency settings.
- Roughness value affects how clear the transparency is — 0 is perfectly clear glass, higher values create frosted or cloudy effects.
- The object's geometry must be solid (a closed mesh with thickness or volume) for transparency to render correctly in most cases.
Opening the Shader Editor and finding the material
Start by selecting the object you want to make clear. In the 3D viewport, click on it once. You should see it highlighted with an orange outline.
Now open the Shader Editor. At the top of Blender, look for the Editor Type menu — it is a small icon that looks like a rectangle with a grid or lines. Click it and select "Shader Editor" from the dropdown. The Shader Editor opens as a new panel, usually below your 3D viewport, showing the material nodes for your selected object.
If the Shader Editor is empty and shows no nodes, the object does not have a material yet. Click the "New" button in the Shader Editor to create one. Blender automatically adds a Principled BSDF shader connected to a Material Output node — this is the standard starting point for any material.
Setting transmission to make light pass through
In the Shader Editor, locate the Principled BSDF node (the large node on the left side). Scroll down in this node until you find the Transmission parameter. This controls how much light passes through the material instead of bouncing off the surface.
Click on the Transmission value and change it to 1.0. This tells Blender that 100 percent of the light hitting the object should pass through it. The object is now set to be fully transparent, though you may not see the effect yet in your viewport depending on which render engine you are using.
If you want a partially transparent material — like tinted glass or a plastic bag — set Transmission to a lower value such as 0.7 or 0.8. The lower the number, the more opaque the object appears, even though light still passes through it.
Adjusting roughness for clear versus frosted effects
Just above Transmission in the Principled BSDF node, you will find the Roughness parameter. This controls how smooth or bumpy the surface is, which affects how clear your transparency looks.
Set Roughness to 0 for perfectly clear glass — light passes through without scattering, so you see a sharp image of what is behind the object. Set Roughness to 0.3 or higher to create a frosted or cloudy effect where light scatters as it passes through, blurring what you see behind the object. A value around 0.5 to 0.8 mimics frosted glass or translucent plastic.
You can adjust this value while looking at your viewport to see the effect in real time, but only if you are using the Cycles render engine (see the next section). If you are using Eevee, the effect may look different or not show at all until you render.
Switching to Cycles render engine to see transparency
Blender has two main render engines: Eevee and Cycles. Eevee is faster but handles transparency differently. Cycles is slower but shows transparency and glass effects more accurately.
To switch to Cycles, look at the top right of the screen for the Render Properties panel (it looks like a camera icon). In the dropdown at the top that says "Render Engine", click it and select "Cycles". The viewport will update, and you should now see your transparent object with the Transmission and Roughness settings applied.
If the viewport still looks dark or wrong, check that your viewport shading mode is set to "Rendered" (the white circle icon in the top right of the 3D viewport). Click it to cycle through shading modes until you see the rendered view with lighting and transparency effects visible.
Adding thickness to the object for realistic rendering
For transparent objects like glass or bottles, Blender renders more realistically when the object has thickness — meaning the mesh has volume, not just a flat surface. If your object is a flat plane or a very thin shell, light may not behave correctly as it passes through.
To add thickness, you can use the Solidify modifier. In the Modifiers panel (wrench icon on the right), click "Add Modifier" and select "Solidify". Set the thickness value to a small number like 0.01 or 0.02 units, depending on the size of your object. This creates a thin wall of material, which helps Blender calculate light refraction correctly.
Alternatively, if your object is a straightforward shape like a cube or sphere, you can use the Thickness option in the Principled BSDF shader itself. Scroll down in the Principled BSDF node and look for Coat Weight or IOR (Index of Refraction) — these control how light bends as it enters and exits the material, making the transparency look more like real glass.
Controlling light refraction with IOR
The IOR (Index of Refraction) parameter controls how much light bends as it passes through the material. Different materials bend light by different amounts. Water has an IOR around 1.33, glass is around 1.45, and diamond is around 2.4.
In the Principled BSDF node, find the IOR parameter and adjust it to match the material you are creating. For window glass, use 1.45. For water, use 1.33. For plastic, use 1.5. The default value of 1.45 works for most clear glass.
Changing IOR does not make the object more or less transparent — it changes how the light bends at the edges and inside the object. A higher IOR creates more visible distortion and bending of light, which can make glass look thicker or more reflective. A lower IOR makes the transparency look flatter and less dramatic.
Frequently Asked Questions
Why does my transparent object look black or dark in the viewport?
You are likely using Eevee render engine or a viewport shading mode that does not show transparency. Switch to Cycles render engine and set your viewport shading to "Rendered" mode (the white circle icon). If it is still dark, check that your scene has lights — a transparent object with no light source will appear black.
How do I make an object transparent but still see its color?
Add a Base Color to the Principled BSDF node. Click the Base Color swatch and choose a color. Set Transmission to 1.0 as usual. The object will now be transparent but tinted with that color — like colored glass or tinted plastic.
What is the difference between Transmission and Alpha in Blender?
Transmission lets light physically pass through the material and refract, which is realistic for glass and water. Alpha straightforward makes the object invisible without light interaction, which is useful for cutouts or flat images but not for realistic transparent solids. Use Transmission for clear objects.
Can I make just part of an object transparent?
Yes, using a texture map. In the Principled BSDF node, connect an image texture to the Transmission input instead of setting it to a single number. Areas of the image that are white will be fully transparent, black areas will be opaque, and gray areas will be partially transparent.
Why does my glass look cloudy even though I set Roughness to 0?
Check your IOR value — if it is set to 1.0, the material will not refract light correctly. Set it to 1.45 for glass. Also make sure Transmission is set to 1.0. If the object still looks wrong, you may need to add thickness using the Solidify modifier or check that your render engine is set to Cycles.