hello
how do you get pawns and vehicles to cast a shadow?
ive tried everything but nothing makes it work.
thanks for any tips
edit:
solved by adding this to turn on the shadows, guess it defaults to no shadows
how do you get pawns and vehicles to cast a shadow?
ive tried everything but nothing makes it work.
thanks for any tips
edit:
solved by adding this to turn on the shadows, guess it defaults to no shadows
Code:
simulated function PostBeginPlay() { Super.PostBeginPlay(); SetTimer(1.0,false,'ShowShadow'); } exec function ShowShadow() { UpdateShadowSettings(true); }
Comment