Will someone show me an example as how to set parms for my directional light?
PARAM_SHADOW_MAX_DISTANCE
I'm trying to increase shadow range but no luck so far.
Not sure about that code. For a DirectionalLight you could use the properties on the class:
var sun_light = get_node("YourDirectionalLight") sun_light.directional_shadow_max_distance = 200.0
Heh, I was at work today reading the online docs at lunch, I saw that PARAM_SHADOW_MAX_DISTANCE in the main online documentation but was completely lost where to assign in.
Thanks for the tip.