22 lines
594 B
Ucode
22 lines
594 B
Ucode
/**
|
|
*
|
|
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
|
|
*/
|
|
|
|
class SeqAct_AddRemoveFaceFXAnimSet extends SequenceAction deprecated;
|
|
|
|
/** List of FaceFXAnimSets to add to Pawn Target */
|
|
var deprecated Array<FaceFXAnimSet> FaceFXAnimSets;
|
|
|
|
defaultproperties
|
|
{
|
|
ObjName="Add Remove FaceFXAnimSet"
|
|
ObjCategory="Pawn"
|
|
|
|
InputLinks(0)=(LinkDesc="Add FaceFXAnimSets")
|
|
InputLinks(1)=(LinkDesc="Remove FaceFXAnimSets")
|
|
|
|
// define the base output link that this action generates (always assumed to generate at least a single output)
|
|
OutputLinks(0)=(LinkDesc="Out")
|
|
}
|