Skip to content

BlendMethod

sangfroid.value.BlendMethod(*args, **kwargs) #

Bases: sangfroid.value.simple.Integer

Source code in sangfroid/value/blendmethod.py
33
34
35
36
37
def __init__(self, *args, **kwargs):
    super().__init__(*args, **kwargs)

    self._tag['static'] = 'true'
    self._tag.name = 'integer'

is_animated property writable #

Whether the value is animated.

timeline property writable #

Our timeline, showing how our value changes over time.

If we're not animated, the timeline will be empty.

Timeline objects hold no state of their own except a reference back to their parent Value. So this call constructs a new Timeline instance every time.