Forum: Poser 11 / Poser Pro 11 OFFICIAL Technical


Subject: working with HDRIs, several questions

starlingblue opened this issue on Aug 28, 2020 ยท 11 posts


structure posted Fri, 28 August 2020 at 1:22 PM Forum Coordinator

a) what are you using the hdri on? ( I assume the construct but want to be sure )

b) turn off visible in raytrace ( properties tab ) on the hdri object - add a skydome to the scene and make it is not visible in camera ( properties tab ) but ensure that visible in raytrace is on. Copy your hdri to this dome.

c) sorry can't help here.

d) Save this script anywhere you like and run it to turn all lights off / on

# -*- coding: utf-8 -*- 

import poser

scene = poser.Scene()
for light in scene.Lights():
    light.SetLightOn(0) if light.LightOn() else light.SetLightOn(1)
scene.DrawAll()

Locked Out