Browse Source

Update rtlight.py

Enable shadow-only lamps.
pull/247/head
Mark Eggert 3 years ago committed by GitHub
parent
commit
8aaca6e424
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      korman/exporter/rtlight.py

4
korman/exporter/rtlight.py

@ -138,14 +138,14 @@ class LightConverter:
shadow_only = bl_light.shadow_method != "NOSHADOW" and bl_light.use_only_shadow
# Apply the colors
if bl_light.use_diffuse and not shadow_only:
if bl_light.use_diffuse: # TikiBear
self._report.msg("Diffuse: {}", diff_str, indent=2)
pl_light.diffuse = hsColorRGBA(*diff_color)
else:
self._report.msg("Diffuse: OFF", indent=2)
pl_light.diffuse = hsColorRGBA(0.0, 0.0, 0.0, energy)
if bl_light.use_specular and not shadow_only:
if bl_light.use_specular: # TikiBear
self._report.msg("Specular: {}", spec_str, indent=2)
pl_light.setProperty(plLightInfo.kLPHasSpecular, True)
pl_light.specular = hsColorRGBA(*spec_color)

Loading…
Cancel
Save