Scene Operators

bpy.ops.scene.delete()

Delete active scene

bpy.ops.scene.new(type='NEW')

Add new scene by type

Parameters:type (enum in [‘NEW’, ‘EMPTY’, ‘LINK_OBJECTS’, ‘LINK_OBJECT_DATA’, ‘FULL_COPY’], (optional)) –

Type

  • NEW New, Add new scene.
  • EMPTY Copy Settings, Make a copy without any objects.
  • LINK_OBJECTS Link Objects, Link to the objects from the current scene.
  • LINK_OBJECT_DATA Link Object Data, Copy objects linked to data from the current scene.
  • FULL_COPY Full Copy, Make a full copy of the current scene.
bpy.ops.scene.render_layer_add()

Add a render layer

bpy.ops.scene.render_layer_remove()

Remove the selected render layer

Previous topic

Render Operators

Next topic

Screen Operators