KeyframeSequence

KeyframeSequence

Overview

KeyframeSequence is a class in Aspose.3D FOSS for Python. Inherits from: A3DObject.

KeyframeSequence.reset resets the sequence to its initial empty state.

This class provides 7 methods for working with KeyframeSequence objects in Python programs. Available methods include: __init__, add, find_property, get_property, remove_property, reset, set_property. All public members are accessible to any Python application after installing the Aspose.3D FOSS for Python package. Properties: bind_point, key_frames, name, post_behavior, pre_behavior, properties.

Properties

NameTypeAccessDescription
namestrRead/WriteGets or sets the name.
properties``ReadGets the properties.
bind_point'BindPoint'ReadGets the bind point.
key_framesList['KeyFrame']ReadGets the key frames.
post_behaviorExtrapolationReadGets the post behavior.
pre_behaviorExtrapolationReadGets the pre behavior.

Methods

SignatureDescription
__init__(name: str)
reset()Resets the sequence to its initial empty state
add(time: float, value: float, interpolation: Interpolation)Adds a keyframe at the given time with the specified value and interpolation mode
find_property(property_name: str)
get_property(property: str)
set_property(property: str, value)Sets the property value.
remove_property(property)

See Also