Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
Copyright 1998-2008 Epic Games, Inc. All Rights Reserved.
Core.Object | +-- Engine.AnimNode
AnimNodeBlendBase, AnimNodeSequence
Constants Summary |
---|
Inherited Contants from Core.Object |
---|
DegToRad, INDEX_NONE, MaxInt, Pi, RadToDeg |
Variables Summary | |
---|---|
int | bCachedHasRootMotion |
bool | bJustBecameRelevant |
bool | bRelevant |
array<BoneAtom> | CachedBoneAtoms |
BoneAtom | CachedRootMotionDelta |
int | DrawHeight |
int | DrawWidth |
INT | InstanceVersionNumber |
int | NodeCachedAtomsTag |
int | NodePosX |
int | NodePosY |
int | NodeTickTag |
float | NodeTotalWeight |
int | OutDrawY |
array<AnimNodeBlendBase> | ParentNodes |
int | SearchTag |
SkeletalMeshComponent | SkelComponent |
float | TotalWeightAccumulator |
AnimNode | |
bool | bSkipTickWhenZeroWeight |
bool | bTickDuringPausedAnims |
name | NodeName |
Inherited Variables from Core.Object |
---|
Class, HashNext, HashOuterNext, Linker, LinkerIndex, Name, NetIndex, ObjectArchetype, ObjectFlags, ObjectInternalInteger, Outer, StateFrame, VfTableObject |
Enumerations Summary | ||
---|---|---|
ESliderType ST_1D, ST_2D |
Inherited Enumerations from Core.Object |
---|
EAxis, EInputEvent, EInterpCurveMode, EInterpMethodType, ETickingGroup |
Structures Summary | ||
---|---|---|
BoneAtom Rotation, Translation, Scale |
Functions Summary | ||
---|---|---|
![]() | AnimNode | FindAnimNode (name InNodeName) |
![]() | OnBecomeRelevant () | |
![]() | OnCeaseRelevant () | |
![]() | OnInit () | |
![]() | PlayAnim (bool bLoop = false, float Rate = 1.0f, float StartTime = 0.0f) | |
![]() | StopAnim () |
Variables Detail |
---|
Cached bool indicating if node supplies root motion, to avoid recalculating (see above).
set to TRUE when this node became relevant this round of updates. Will be set to false on the next tick.
This node is considered 'relevant' - that is, has >0 weight in the final blend.
If a node is linked to more than once in the graph, this is a cache of the results, to avoid re-evaluating the results.
Cached root motion delta, to avoid recalculating (see above).
For editor use
For editor use.
Obsolete. Remove me sometime after VER_AIMOFFSET_ROT2QUAT has been long distributed.
Used to indicate whether the BoneAtom cache for this node is up-to-date or not.
For editor use.
For editor use.
Used to avoid ticking a node twice if it has multiple parents.
Total apparent weight this node has in the final blend of all animations.
For editor use.
Parent node of this AnimNode in the blend tree.
used when iterating over nodes via GetNodes() and related functions to skip nodes that have already been processed
SkeletalMeshComponent that this animation blend tree is feeding.
internal. Accumulator to calculate NodeTotalWeight
Allows for optimisiation. Tick is not called on this node if
If TRUE, this node will be ticked, even if bPauseAnims is TRUE on the SkelMeshComp.
This is the name used to find an AnimNode by name from a tree.
Enumerations Detail |
---|
Enumeration for slider types
Structures Detail |
---|
Bone Atom definition
Functions Detail |
---|
Find an Animation Node in the Animation Tree whose NodeName matches InNodeName. Will search this node and all below it. Warning: The search is O(n^2), so for large AnimTrees, cache result.
Get notification that this node has become relevant for the final blend. ie TotalWeight is now > 0
Get notification that this node is no longer relevant for the final blend. ie TotalWeight is now == 0
Called from InitAnim. Allows initialisation of script-side properties of this node.
Defaultproperties |
---|
defaultproperties { Name="Default__AnimNode" ObjectArchetype=Object'Core.Default__Object' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |