Hi guys, I made shadow routine for my new project and I notice my original scene colors have changed significantly.
See the attached pic to see the difference:
I know it's an obvious thing that has changed colors but I just would to have a bit more brightness for my scene!
Here my code about the shadows:
` make a sun object up in the sky to the right somewhere
make object sphere 5000, 50
position object 5000, 90, 500, -600
` for DBPro shadows you need to use one of lights 1 to 8 not the default light 0
make light 1
set point light 1, object position x(5000), object position y(5000), object position z(5000)
set light range 1, 10000 rem 165000
` you also probably need to hide light 0
hide light 0
` set up the shadows
FOR a = first_man to last_man
set shadow shading on a, -1, 300, 0 ` the sphere object casts shadows
NEXT
set shadow position 1, object position x(5000), object position y(5000), object position z(5000)
So I need just to have my scene as a good summer afternoon light than that dark (post apocalyptic!) light!
EDIT:
Okok I notice that if I put an higher value on "set light range" and I move higher up the sun too so I get a more brightness scene!