Package nuke :: Class LinkableKnobInfo
[hide private]
[frames] | no frames]

Class LinkableKnobInfo

source code

object --+
         |
        LinkableKnobInfo

A linkable knob description. Holds a reference to a knob that may be linked to, as well as an indication whether this knob should be used as part of an absolute or relative expression and whether it is enabled.

Instance Methods [hide private]
 
__delattr__(...)
x.__delattr__('name') <==> del x.name
source code
 
__getattribute__(...)
x.__getattribute__('name') <==> x.name
source code
 
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
source code
Boolean
absolute(self)
Returns whether the values of this knob should be treated as absolute or relative.
source code
String
displayName(self)
Returns the custom display name that will appear in Link-to menus.
source code
Boolean
enabled(self)
Returns whether the knob is currently enabled or not.
source code
List
indices(self)
Returns a list of the knob channels that should be used with this linkable knob.
source code
Knob
knob(self)
Returns the knob that may be linked to.
source code

Inherited from object: __format__, __hash__, __init__, __new__, __reduce__, __reduce_ex__, __repr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__delattr__(...)

source code 

x.__delattr__('name') <==> del x.name

Overrides: object.__delattr__

__getattribute__(...)

source code 

x.__getattribute__('name') <==> x.name

Overrides: object.__getattribute__

__setattr__(...)

source code 

x.__setattr__('name', value) <==> x.name = value

Overrides: object.__setattr__

absolute(self)

source code 

Returns whether the values of this knob should be treated as absolute or relative. This may be useful for positions.

Returns: Boolean