AnimationNode

Overview

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

AnimationNode.find_bind_point returns the BindPoint matching the given target object and name.

Properties

NameTypeAccessDescription
namestrReadStores the identifier string of the animation node
properties``ReadProvides access to custom animation node properties
bind_pointsList['BindPoint']ReadLists all BindPoint objects associated with this animation node
sub_animationsList['AnimationNode']ReadContains child AnimationNode objects forming a hierarchy
_bind_pointsList[BindPoint]Read
_sub_animationsList['AnimationNode']Read

Methods

SignatureDescription
__init__(name: str)
find_bind_point(target: 'A3DObject', name: str)'BindPoint'Returns the BindPoint matching the given target object and name
get_bind_point(target: 'A3DObject', prop_name: str, create: bool)'BindPoint'Retrieves or optionally creates a BindPoint for the target object’s property
create_bind_point(obj: 'A3DObject', prop_name: str)'BindPoint'Creates a new BindPoint for the specified object and property name
get_keyframe_sequence(target: 'A3DObject', prop_name: str, channel_name: str, create: bool)'KeyframeSequence'Obtains or creates a KeyframeSequence for the target object’s property channel

See Also