Always snap to grid

UE3:AnimNodeSynch (UT3)

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
UT3 Object >> AnimNode >> AnimNodeBlendBase >> AnimNodeSynch
Package: 
Engine
This class in other games:
UDK

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

Animation Node used to synch childs. Would be typically used to synch several walk/run/crouch cycles together.

This node works by using the most relevant node in the final blend as the master node, to update all the others (slaves). This requires all cycles to be relatively synched (i.e. left foot is down on all cycles at 0.25% of the animation, regarless of its length).

Properties[edit]

Property group 'AnimNodeSynch'[edit]

Groups[edit]

Type: array<SynchGroup>

List of groups to synchronize

Default values[edit]

Property Value
bFixNumChildren True
Children[0]
Member Value
Name 'Input'
Weight 1.0

Structs[edit]

SynchGroup[edit]

Modifiers: native

definition of a group of AnimNodeSequence to synchronize together

array<AnimNodeSequence> SeqNodes 
Cached array of anim node sequence nodes to synchronize
AnimNodeSequence MasterNode 
Last master node used, do not search for a new one, if this one has a full weight...
name GroupName 
Name of group.
bool bFireSlaveNotifies 
If FALSE, do not trigger slave nodes notifies.
float RateScale 
Rate Scale

Default values:

Property Value
RateScale 1.0

Native functions[edit]

AddNodeToGroup[edit]

native final function AddNodeToGroup (AnimNodeSequence SeqNode, name GroupName)

Add a node to an existing group

ForceRelativePosition[edit]

native final function ForceRelativePosition (name GroupName, float RelativePosition)

Force a group at a relative position.

GetMasterNodeOfGroup[edit]

native final function AnimNodeSequence GetMasterNodeOfGroup (name GroupName)

Accesses the Master Node driving a given group

GetRelativePosition[edit]

native final function float GetRelativePosition (name GroupName)

Get the relative position of a group.

RemoveNodeFromGroup[edit]

native final function RemoveNodeFromGroup (AnimNodeSequence SeqNode, name GroupName)

Remove a node from an existing group

SetGroupRateScale[edit]

native final function SetGroupRateScale (name GroupName, float NewRateScale)

Adjust the Rate Scale of a group