Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

Drop shadow layer showing through text

Community Beginner ,
Mar 20, 2025 Mar 20, 2025

I have some text using the 3D tracker effect and an emboss effect. The text layer underneath is acting as a drop shadow. The dropshadow is showing through though, I've checked the layer above and there is no opacity turned down so am unsure what is causing this.

 

Screenshot 2025-03-21 at 9.19.59 AM.pngexpand imageScreenshot 2025-03-21 at 9.20.53 AM.pngexpand image

TOPICS
FAQ
110
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Mar 22, 2025 Mar 22, 2025

When using Classic 3D, the workflow for shadows should be to add a Point, Directional, or Spotlight, a small amount of Ambient light, and a White 3D solid to the floor plane. Then select the Floor Plane solid layer, press the 'a' key twice, set the layer to Receive Shadows Only, and adjust your lighting. 

 

Using a copy of the text layer with Effects is less efficient, may get fouled up by adding effects, requires a lot more work positioning the layers, and ignores the perspective you get from a

...
Translate
Adobe Employee ,
Mar 21, 2025 Mar 21, 2025

Thanks for writing in, Eva.

The shadow of the text "TOTAL" looks fine. The shadow of "SITE AREA" looks odd. My guess, maybe it needs some repositioning. But can't tell much by looking at the screenshot. If possible, please share the project file. Feel free to share it via DM if you do not want to share it publicly.

Looking forward to your response.


Thanks,
Nishu

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Mar 26, 2025 Mar 26, 2025
LATEST

Hi thank you for the reply. Do you know why there is transparency though with the white text?

Eva38540568113k_0-1743042169764.pngexpand image

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Mar 22, 2025 Mar 22, 2025

When using Classic 3D, the workflow for shadows should be to add a Point, Directional, or Spotlight, a small amount of Ambient light, and a White 3D solid to the floor plane. Then select the Floor Plane solid layer, press the 'a' key twice, set the layer to Receive Shadows Only, and adjust your lighting. 

 

Using a copy of the text layer with Effects is less efficient, may get fouled up by adding effects, requires a lot more work positioning the layers, and ignores the perspective you get from a comp camera.

 

If you want to do that, you have to match the anchor points of both text layers to the bottom of the layer. That is accurately accomplished using a sourceRecAtTime expression for Anchor Point and matching the position of the layers with a simple pickwhip expression. 

// Anchor Point expression for both text layers:
lyr = sourceRectAtTime();
x = lyr.width/2 + lyr.left;
y = lyr.height + lyr.top;
[x, y]

// Position expression for "shadow text" layer
thisComp.layer("Text Layer").transform.position

// Source Text expression for "shadow text" layer
thisComp.layer("Text Layer").text.sourceText

//Position Expression to offset a Floor layer if needed:
thisComp.layer("Text Layer").transform.position + [0, 1, 0]

If you need a floor layer as well as the shadow text layer it needs to be one pixel below the text layer shadow layer so use the last expression.

 

Here is the difference between using a Cast Shadows-only layer with lights and a copy of the text layer as a shadow.

RickGerard_0-1742658388377.gifexpand image

I have included an AE 24 sample file. Try turning on and off the layers.

 

One more note: I almost always use Anchor Point expressions on 3D text layers. They make finding the bottom of a text layer perfectly accurate.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines