UE3:AnimSet (UT3)

From Unreal Wiki, The Unreal Engine Documentation Site
(Redirected from UE3:AnimSetMeshLinkup (UT3))
Jump to navigation Jump to search
UT3 Object >> AnimSet
Package: 
Engine

This is a set of AnimSequences All sequence have the same number of tracks, and they relate to the same bone names.

Copyright 1998-2007 Epic Games, Inc. All Rights Reserved.

Properties

Property group 'AnimSet'

bAnimRotationOnly

Type: bool

Indicates that only the rotation should be taken from the animation sequence and the translation should come from the SkeletalMesh ref pose. Note that the root bone always takes translation from the animation, even if this flag is set. You can use the UseTranslationBoneNames array to specify other bones that should use translation with this flag set.

Default value: True

UseTranslationBoneNames

Type: array<name>

Names of bones that should use translation from the animation, if bAnimRotationOnly is set.

Internal variables

LinkupCache

Type: array<AnimSetMeshLinkup>

Modifiers: transient

Non-serialised cache of linkups between different skeletal meshes and this AnimSet.

PreviewSkelMeshName

Type: name

In the AnimSetEditor, when you switch to this AnimSet, it sees if this skeletal mesh is loaded and if so switches to it.

Sequences

Type: array<AnimSequence>

Actual animation sequence information.

TrackBoneNames

Type: array<name>

Bone name that each track relates to. TrackBoneName.Num() == Number of tracks.

Structs

AnimSetMeshLinkup

Modifiers: native

This is a mapping table between each bone in a particular skeletal mesh and the tracks of this animation set.

Object.Guid SkelMeshLinkupGUID 
GUID of SkeletalMesh that this linkup entry relates to.
array<int> BoneToTrackTable 
Mapping table. Size must be same as size of SkelMesh reference skeleton.

No index should be more than the number of tracks in this AnimSet. -1 indicates no track for this bone - will use reference pose instead.

array<byte> BoneUseAnimTranslation 
Array of booleans that indicate whether or not to read the translation of a bone from animation or ref skeleton.

This is basically a cooked down version of UseTranslationBoneNames for speed. Size must be the same as size of SkelMesh ref skeleton.