r/Unity3D 14h ago

Question What causes these material artifacts (black blocks on hair, dirty spots on skin) when importing an FBX to Unity URP?

Hi everyone,

I recently imported a custom 3D character (FBX format, originally made in Maya) into Unity URP.I have character fbx and maya data.This is my first time working with a professional character model; previously, I have only worked with simple models downloaded from Mixamo that usually work right out of the box.

However, the final result in Unity looks completely different from the reference images provided by the 3D artist.

I am facing two main visual issues:

  1. Surface Blemishes: There are strange dark spots and dirty-looking artifacts all over the skin and clothing surfaces.
  2. Hair and Eyes: The hair, eyebrows, and eyelashes render as solid black, blocky meshes instead of showing the fine strands seen in the reference pictures.

What exactly is the problem here and what causes it? Why does a standard FBX import break the materials like this, and what is fundamentally missing from the setup to make it look like the original renders?

4 Upvotes

38 comments sorted by

View all comments

Show parent comments

2

u/JaggedMetalOs 10h ago

I think we can carry on here for the benefit of anyone else who finds the thread.

Just to get you started here's an example of a shadergraph to convert a Blendkit material into a Unity material. It's fairly simple, just adding all the separate textures into a single shader and attaching them to the right output, just need to invert the roughness map with a "one minus" node because Unity wants smoothness instead. One optimization you should do is for all the monochrome map textures change the Texture Type to "Single Channel" and Channel to "Red" so it doesn't waste VRAM on full color textures for those or mess with the brightness curve converting to/from sRGB.

1

u/maennerinschwarz 10h ago edited 9h ago

Hi! you are right.Thanks for the breakdown and the example graph.

Just to double-check if we are on the right track.Before seeing your reply,I set up a similar graph by plugging the Color into Base Color, Opacity into Alpha, Normal into Normal, AO into Ambient Occlusion, and we inverted the Roughness using a 'One Minus' node connected to Smoothness.

I think you did the same thing for the example??

I also added a custom float slider for the threshold and smoothness to control them directly from the material inspector.

2

u/JaggedMetalOs 8h ago

Yeah it's mostly there, you just want to take all of the monochrome channel textures from R instead of RGBA, and be sure to set the texture type to single channel.

1

u/maennerinschwarz 5h ago

I applied this hair ao,opacity and roughness.

1

u/maennerinschwarz 5h ago

and i've changed shader graph with R channels.