2

How to do this: Render shadow on transparent background with Blender Render from script? I need to set a transparent background color before render a mesh.

sborfedor
  • 398
  • 1
  • 7
  • 21

1 Answers1

2

When you hover over a property, you can see its Python property.

Here, it is simply :

scene.render.alpha_mode = 'SKY' # in ['TRANSPARENT', 'SKY']
Jonathan Chemla
  • 418
  • 3
  • 15