BlendDataLamps(bpy_struct)

base class — bpy_struct

class bpy.types.BlendDataLamps(bpy_struct)

Collection of lamps

is_updated
Type:boolean, default False, (readonly)
new(name, type)

Add a new lamp to the main database

Parameters:
  • name (string, (never None)) – New name for the data-block
  • type (enum in ['POINT', 'SUN', 'SPOT', 'HEMI', 'AREA']) –

    Type, The type of texture to add

    • POINT Point, Omnidirectional point light source.
    • SUN Sun, Constant direction parallel ray light source.
    • SPOT Spot, Directional cone light source.
    • HEMI Hemi, 180 degree constant light source.
    • AREA Area, Directional area light source.
Returns:

New lamp data-block

Return type:

Lamp

remove(lamp, do_unlink=False)

Remove a lamp from the current blendfile

Parameters:
  • lamp (Lamp, (never None)) – Lamp to remove
  • do_unlink (boolean, (optional)) – Unlink all usages of this lamp before deleting it (WARNING: will also delete objects instancing that lamp data)
tag(value)

tag

Parameters:value (boolean) – Value

Inherited Properties

Inherited Functions

References