# set min shading rate to 0 - all materials in scene # markschum at renderosity python forum Feb 2011 # import poser scn = poser.Scene() figs = scn.Figures() # # myrate is min shading rate to set # myrate = 0 # # do figures for fig in figs: acts = fig.Actors() for act in acts: if act.IsBodyPart(): try: act.SetShadingRate(myrate) except: pass # do props acts = scn.Actors() for act in acts: if (act.IsProp() or act.IsHairProp()): try: act.SetShadingRate(myrate) except: pass # redraw scene scn.DrawAll() print "Done"