unreal.PoseAsset
¶
- class unreal.PoseAsset(outer: Object | None = None, name: Name | str = 'None')¶
Bases:
AnimationAsset
Pose Asset that can be blended by weight of curves
C++ Source:
Module: Engine
File: PoseAsset.h
Editor Properties: (see get_editor_property/set_editor_property)
additive_pose
(bool): [Read-Write] Whether or not Additive Pose or not - these are property that needs post process, soasset_mapping_table
(AssetMappingTable): [Read-Only] Asset mapping table when ParentAsset is setasset_user_data
(Array[AssetUserData]): [Read-Write] Array of user data stored with the assetmeta_data
(Array[AnimMetaData]): [Read-Write] Meta data that can be saved with the assetYou can query by GetMetaData function
parent_asset
(AnimationAsset): [Read-Only] Parent Asset, if set, you won’t be able to edit any data in here but just mapping tableDuring cooking, this data will be used to bake out to normal asset
preview_pose_asset
(PoseAsset): [Read-Write] The default skeletal mesh to use when previewing this asset - this only applies when you open Persona using this asset// todo:: note that this doesn’t retarget right nowretarget_source
(Name): [Read-Write] Base pose to use when retargetingretarget_source_asset
(SkeletalMesh): [Read-Write] If RetargetSource is set to Default (None), this is asset for the base pose to use when retargeting. Transform data will be saved in RetargetSourceAssetReferencePose.skeleton
(Skeleton): [Read-Only] Pointer to the Skeleton this asset can be played on .source_animation
(AnimSequence): [Read-Write]thumbnail_info
(ThumbnailInfo): [Read-Only] Information for thumbnail rendering
- get_base_pose_name() Name ¶
Returns base pose name, only valid when additive, NAME_None indicates reference pose
- Return type:
- set_base_pose_name(new_base_pose_name) bool ¶
Set base pose index by name, NAME_None indicates reference pose - returns true if set successfully
- update_pose_from_animation(anim_sequence) None ¶
Contained poses are re-generated from the provided Animation Sequence
- Parameters:
anim_sequence (AnimSequence) –