Lights: change sun light size to be specified as angle

This is the angular diameter as seen from earth, which is between 0.526° and
0.545° in reality. Sharing the size with other light types did not make much
sense and meant the unit was unclear.

Differential Revision: https://developer.blender.org/D4819
This commit is contained in:
Tim Stullich
2019-05-15 14:45:33 +02:00
committed by Brecht Van Lommel
parent 2497ee31ec
commit 5ba1a6bee0
12 changed files with 52 additions and 11 deletions

View File

@@ -149,7 +149,7 @@ void BlenderSync::sync_light(BL::Object &b_parent,
// }
case BL::Light::type_SUN: {
BL::SunLight b_sun_light(b_light);
light->size = b_sun_light.shadow_soft_size();
light->angle = b_sun_light.angle();
light->type = LIGHT_DISTANT;
break;
}