Copy random objects a couple times in a large level and this happens. This only affects the editor and not the game, and seems to persist no matter what you do (save, reopen, restart editor, build lightning)
Was there a fix for this or a way to avoid it?
2 Likes
The shadow acne? Try using directx 10 or up the shadow bias value.
1 Like
Hi, could you tell me where I change the shadow bias?
1 Like
I use this from script (or use the scale set from console directly):
GetALocalPlayerController().ConsoleCommand(scale set CSMSplitDepthBiasScale 0.5);
GetALocalPlayerController().ConsoleCommand(scale set ShadowDepthBias 0.25);
With 0.25 there are a moderate shadow acne, with higher values the acne disapear, but shadows loses precission.
Using DirectX 10 (or 11?), the problem dissapear.
1 Like
Thanks for the tip, I set those values in UDKSystemSettings and it helps. I actually only had this problem in the editor, but it seems to work.
2 Likes
Wow~ You are a genius.