Exporter: remove no longer used Blender version checks

This commit is contained in:
Moritz Brückner 2021-05-20 20:38:43 +02:00
parent 9fbc3d6cd4
commit 088bc0f666

View file

@ -1531,24 +1531,18 @@ Make sure the mesh only has tris/quads.""")
# Less bias for bigger maps
out_light['shadows_bias'] *= 1 / (out_light['shadowmap_size'] / 1024)
elif objtype == 'POINT':
out_light['strength'] *= 2.6
if bpy.app.version >= (2, 80, 72):
out_light['strength'] *= 0.01
out_light['strength'] *= 0.01
out_light['fov'] = 1.5708 # pi/2
out_light['shadowmap_cube'] = True
if light_ref.shadow_soft_size > 0.1:
out_light['light_size'] = light_ref.shadow_soft_size * 10
elif objtype == 'SPOT':
out_light['strength'] *= 2.6
if bpy.app.version >= (2, 80, 72):
out_light['strength'] *= 0.01
out_light['strength'] *= 0.01
out_light['spot_size'] = math.cos(light_ref.spot_size / 2)
# Cycles defaults to 0.15
out_light['spot_blend'] = light_ref.spot_blend / 10
elif objtype == 'AREA':
out_light['strength'] *= 80.0 / (light_ref.size * light_ref.size_y)
if bpy.app.version >= (2, 80, 72):
out_light['strength'] *= 0.01
out_light['strength'] *= 0.01
out_light['size'] = light_ref.size
out_light['size_y'] = light_ref.size_y