Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
Abstract base class for a skeletal controller. A SkelControl is a module that can modify the position or orientation of a set of bones in a skeletal mesh in some programmtic way. Copyright 1998-2008 Epic Games, Inc. All Rights Reserved.
Core.Object | +-- Engine.SkelControlBase
GameSkelCtrl_Recoil, SkelControlLimb, SkelControlLookAt, SkelControlSingleBone, SkelControlSpline, SkelControlTrail, UTSkelControl_LockRotation, UTSkelControl_MassBoneScaling, UTSkelControl_TankTread
Constants Summary |
---|
Inherited Contants from Core.Object |
---|
DegToRad, INDEX_NONE, MaxInt, Pi, RadToDeg |
Variables Summary | |
---|---|
bool | bInitializedCachedNodeList |
float | BlendTimeToGo |
Array<AnimNode> | CachedNodeList |
int | ControlPosX |
int | ControlPosY |
bool | ControlTickTag |
int | DrawWidth |
SkelControlBase | NextControl |
SkeletalMeshComponent | SkelComponent |
float | StrengthTarget |
Controller | |
float | BlendInTime |
float | BlendOutTime |
float | BoneScale |
bool | bPropagateSetActive |
bool | bSetStrengthFromAnimNode |
name | ControlName |
float | ControlStrength |
int | IgnoreAtOrAboveLOD |
Array<Name> | StrengthAnimNodeNameList |
SkelControlBase | |
bool | bEnableEaseInOut |
bool | bIgnoreWhenNotRendered |
Inherited Variables from Core.Object |
---|
Class, HashNext, HashOuterNext, Linker, LinkerIndex, Name, NetIndex, ObjectArchetype, ObjectFlags, ObjectInternalInteger, Outer, StateFrame, VfTableObject |
Enumerations Summary | ||
---|---|---|
EBoneControlSpace BCS_WorldSpace, BCS_ActorSpace, BCS_ComponentSpace, BCS_ParentBoneSpace, BCS_BoneSpace, BCS_OtherBoneSpace |
Inherited Enumerations from Core.Object |
---|
EAxis, EInputEvent, EInterpCurveMode, EInterpMethodType, ETickingGroup |
Structures Summary |
---|
Functions Summary | ||
---|---|---|
![]() | SetSkelControlActive (bool bInActive) | |
![]() | SetSkelControlStrength (float NewStrength, float InBlendTime) |
Variables Detail |
---|
Amount of time left in the currently active blend.
Cached list of nodes to get strength from
Used by editor.
Used by editor.
Used to ensure we don't tick this SkelControl twice, if used in multiple different control chains. Compared against the SkeletalMeshComponent TickTag.
Used by editor.
Next SkelControl in the linked list.
SkeletalMeshComponent owner
Strength towards which we are currently ramping.
When calling SetActive passing in 'true', indicates how many seconds to take to reach a ControlStrength of 1.0.
When calling SetActive passing in 'false', indicates how many seconds to take to reach a ControlStrength of 0.0.
This scaling is applied to the bone that this control is acting upon.
If true, calling SetSkelControlActive on this node will call SetSkelControlActive on the next one in the chain as well.
If true, Strength will be the same as given AnimNode(s). This is to make transitions easier between nodes and Controllers.
Name used to identify this SkelControl.
Used to control how much affect this SkelControl has. 1.0 means fully active, 0.0 means have no affect. Exactly how the control ramps up depends on the specific control type.
If the LOD of this skeletal mesh is at or above this LOD, then this SkelControl will not be applied.
List of AnimNode names, to get Strength from
If true, when skel control becomes active it uses a curve rather than a linear blend to blend in more smoothly.
whether this control should be ignored if the SkeletalMeshComponent being composed hasn't been rendered recently @note this can be forced by the SkeletalMeshComponent's bIgnoreControllersWhenNotRendered flag
Enumerations Detail |
---|
BCS_WorldSpace, BCS_ActorSpace, BCS_ComponentSpace, BCS_ParentBoneSpace, BCS_BoneSpace, BCS_OtherBoneSpace};
Enum for controlling which reference frame a controller is applied in.
Functions Detail |
---|
Toggle the active state of the SkeControl. If passing in true, will take BlendInTime to reach a ControlStrength of 1.0. If passing in false, will take BlendOutTime to reach a ControlStrength of 0.0.
Set custom strength with optional blend time.
@param NewStrength Target Strength for this controller.
@param InBlendTime Time it will take to reach that new strength. (0.f == Instant)
Defaultproperties |
---|
defaultproperties { ControlStrength=1.000000 BlendInTime=0.200000 BlendOutTime=0.200000 StrengthTarget=1.000000 BoneScale=1.000000 IgnoreAtOrAboveLOD=1000 Name="Default__SkelControlBase" ObjectArchetype=Object'Core.Default__Object' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |