cam.operators.bridges_op#

Fabex ‘bridges_op.py’ © 2012 Vilem Novak

Blender Operator definitions are in this file. They mostly call the functions from ‘utils.py’

Classes#

CamBridgesAdd

Add Bridge Objects to Curve

Module Contents#

class CamBridgesAdd[source]#

Bases: bpy.types.Operator

Add Bridge Objects to Curve

bl_idname = 'scene.cam_bridges_add'[source]#
bl_label = 'Add Bridges / Tabs'[source]#
bl_options[source]#
classmethod poll(context)[source]#
execute(context)[source]#

Execute the camera operation in the given context.

This function retrieves the active camera operation from the current scene and adds automatic bridges to it. It is typically called within the context of a Blender operator to perform specific actions related to camera operations.

Parameters:

context – The context in which the operation is executed.

Returns:

A dictionary indicating the result of the operation, typically containing the key ‘FINISHED’ to signify successful completion.

Return type:

dict