Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 |
/** * skeletal controller that provides a cleaner and more efficient way to handle scaling for many bones in a mesh * * Copyright 1998-2008 Epic Games, Inc. All Rights Reserved. */ class UTSkelControl_MassBoneScaling extends SkelControlBase native(Animation); /** bone scales - indices match mesh's bone indices */ var() array<float> BoneScales; // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) /** sets the given bone to the given scale * @note this controller must be hooked up to the specified bone in the AnimTree for this to have any effect */ native final function SetBoneScale(name BoneName, float Scale); /** returns the scale this control has for the given bone * @note does not take into account any other controls that are affecting the bone's scale */ native final function float GetBoneScale(name BoneName); defaultproperties { Name="Default__UTSkelControl_MassBoneScaling" ObjectArchetype=SkelControlBase'Engine.Default__SkelControlBase' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |