className
stringlengths 1
167
| headerPath
stringlengths 14
166
| description
stringlengths 0
1.62k
| module
stringlengths 0
76
| code
stringlengths 0
11.4k
| variables
listlengths 0
395
|
---|---|---|---|---|---|
UAnimDataController::SetModel | /Engine/Source/Developer/AnimationDataController/Public/AnimDataController.h | BeginIAnimationDataControlleroverrides | AnimationDataController | virtual void SetModel ( [TScriptInterface](API\Runtime\CoreUObject\UObject\TScriptInterface)< [IAnimationDataModel](API\Runtime\Engine\Animation\AnimData\IAnimationDataModel) > InModel ) | [] |
UAnimDataController::SetNumberOfFrames | /Engine/Source/Developer/AnimationDataController/Public/AnimDataController.h | Sets the total play-able length in seconds. Broadcasts a EAnimDataModelNotifyType::SequenceLengthChanged notify if successful. The number of frames and keys for the provided length is recalculated according to the current value of UAnimDataModel::FrameRate. | AnimationDataController | virtual void SetNumberOfFrames ( [FFrameNumber](API\Runtime\Core\Misc\FFrameNumber) NewLengthInFrames, bool bShouldTransact ) | [] |
UAnimDataController::SetPlayLength | /Engine/Source/Developer/AnimationDataController/Public/AnimDataController.h | Deprecated* SetPlayLength with length in seconds in deprecated use SetNumberOfFrames usingFFrameNumberinstead | AnimationDataController | virtual void SetPlayLength ( float Length, bool bShouldTransact ) | [] |
UAnimDataController::SetTransformCurveKey | /Engine/Source/Developer/AnimationDataController/Public/AnimDataController.h | Sets a single key for the transform curve with provided identifier. Broadcasts a EAnimDataModelNotifyType::CurveChanged notify if successful. In case a key for any of the individual transform channel curves already exists the value is replaced.
Whether or not the transform curve key was successfully set | AnimationDataController | virtual bool SetTransformCurveKey ( const [FAnimationCurveIdentifier](API\Runtime\Engine\Animation\AnimData\FAnimationCurveIdentifier) & CurveId, float Time, const FTransform & Value, bool bShouldTransact ) | [] |
UAnimDataController::SetTransformCurveKeys | /Engine/Source/Developer/AnimationDataController/Public/AnimDataController.h | Replace the keys for the transform curve with provided identifier. Broadcasts a EAnimDataModelNotifyType::CurveChanged notify if successful.
Whether or not the transform curve keys were successfully set | AnimationDataController | virtual bool SetTransformCurveKeys ( const [FAnimationCurveIdentifier](API\Runtime\Engine\Animation\AnimData\FAnimationCurveIdentifier) & CurveId, const [TArray](API\Runtime\Core\Containers\TArray)< FTransform > & TransformValues, const [TArray](API\Runtime\Core\Containers\TArray)< float > & TimeKeys, bool bShouldTransact ) | [] |
UAnimDataController::UpdateAttributesFromSkeleton | /Engine/Source/Developer/AnimationDataController/Public/AnimDataController.h | Removes any bone attribute for which the name was not found in the provided skeleton. Broadcasts a EAnimDataModelNotifyType::AttributeRemoved for each attribute which was not found in the skeleton, wrapped within BracketOpened/BracketClosed notifies. Updates any bone attribute for which the bone index is different in the provided skeleton. Broadcasts a EAnimDataModelNotifyType::AttributeAdded and EAnimDataModelNotifyType::AttributeRemove for each attribute which was remapped | AnimationDataController | virtual void UpdateAttributesFromSkeleton ( const [USkeleton](API\Runtime\Engine\Animation\USkeleton) * Skeleton, bool bShouldTransact ) | [] |
UAnimDataController::UpdateBoneTrackKeys | /Engine/Source/Developer/AnimationDataController/Public/AnimDataController.h | Sets a range of keys for an existing bone animation track with the provided name. Broadcasts a EAnimDataModelNotifyType::TrackChanged notify if successful. The provided number of keys provided is expected to match for each component, be between FrameLowerBound and FrameUpperBound (inclusive), and be non-zero.
Whether or not the keys were successfully set | AnimationDataController | virtual bool UpdateBoneTrackKeys ( [FName](API\Runtime\Core\UObject\FName) BoneName, const [FInt32Range](API\Runtime\Core\Math\FInt32Range) & KeyRangeToSet, const [TArray](API\Runtime\Core\Containers\TArray)< FVector3f > & PositionalKeys, const [TArray](API\Runtime\Core\Containers\TArray)< FQuat4f > & RotationalKeys, const [TArray](API\Runtime\Core\Containers\TArray)< FVector3f > & ScalingKeys, bool bShouldTransact ) | [] |
UAnimDataController::UpdateBoneTrackKeys | /Engine/Source/Developer/AnimationDataController/Public/AnimDataController.h | Sets a range of keys for an existing bone animation track with the provided name. Broadcasts a EAnimDataModelNotifyType::TrackChanged notify if successful. The provided number of keys provided is expected to match for each component, be between FrameLowerBound and FrameUpperBound (inclusive), and be non-zero.
Whether or not the keys were successfully set | AnimationDataController | virtual bool UpdateBoneTrackKeys ( [FName](API\Runtime\Core\UObject\FName) BoneName, const [FInt32Range](API\Runtime\Core\Math\FInt32Range) & KeyRangeToSet, const [TArray](API\Runtime\Core\Containers\TArray)< FVector > & PositionalKeys, const [TArray](API\Runtime\Core\Containers\TArray)< FQuat > & RotationalKeys, const [TArray](API\Runtime\Core\Containers\TArray)< FVector > & ScalingKeys, bool bShouldTransact ) | [] |
UAnimDataController::UpdateWithSkeleton | /Engine/Source/Developer/AnimationDataController/Public/AnimDataController.h | Updates/removes/remaps contained animation data according to the newly assigned skeleton | AnimationDataController | virtual void UpdateWithSkeleton ( [USkeleton](API\Runtime\Engine\Animation\USkeleton) * TargetSkeleton, bool bShouldTransact ) | [] |
UAnimDataController::UAnimDataController | /Engine/Source/Developer/AnimationDataController/Public/AnimDataController.h | AnimationDataController | UAnimDataController() | [] |
|
UAnimDataController | /Engine/Source/Developer/AnimationDataController/Public/AnimDataController.h | AnimationDataController | class UAnimDataController : public [UObject](API\Runtime\CoreUObject\UObject\UObject), public [IAnimationDataController](API\Runtime\Engine\Animation\AnimData\IAnimationDataController) | [] |
|
ESlateRotationRepresentation::Type | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | AnimationWidgets | namespace ESlateRotationRepresentation { enum Type { EulerXYZ, EulerXZY, EulerYXZ, EulerYZX, EulerZXY, EulerZYX, Rotator, Quaternion, AxisAndAngle, Max, } } | [] |
|
ESlateTransformComponent::Type | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | AnimationWidgets | namespace ESlateTransformComponent { enum Type { Location, Rotation, Scale, Max, } } | [] |
|
ESlateTransformSubComponent::Type | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | AnimationWidgets | namespace ESlateTransformSubComponent { enum Type { X, Y, Z, W, Angle, Pitch, Yaw, Roll, Max, } } | [] |
|
SAdvancedRotationInputBox::FArguments::AllowSpin | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Whether or not values can be spun or if they should be typed in | AnimationWidgets | WidgetArgsType & AllowSpin &40; bool InArg &41; | [] |
SAdvancedRotationInputBox::Construct | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Construct this widget | AnimationWidgets | void Construct ( const [FArguments](API\Developer\AnimationWidgets\SAdvancedRotationInputBox\FArguments) & InArgs ) | [] |
SAdvancedRotationInputBox::FArguments::bColorAxisLabels | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Should the axis labels be colored | AnimationWidgets | WidgetArgsType & bColorAxisLabels &40; bool InArg &41; | [] |
SAdvancedRotationInputBox::FArguments::DisplayToggle | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Whether or not to include a toggle checkbox to the left of the widget | AnimationWidgets | WidgetArgsType & DisplayToggle &40; bool InArg &41; | [] |
SAdvancedRotationInputBox::FArguments::Font | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Font to use for the text in this box | AnimationWidgets | WidgetArgsType & Font &40; const TAttribute< FSlateFontInfo > & InAttribute &41; | [] |
SAdvancedRotationInputBox::FArguments::OnBeginSliderMovement | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Optional delegate to notify a begin slider movement | AnimationWidgets | WidgetArgsType & OnBeginSliderMovement &40; const FOnBeginSliderMovement & InDelegate &41; | [] |
SAdvancedRotationInputBox::FArguments::OnEndSliderMovement | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Optional delegate to notify a end slider movement | AnimationWidgets | WidgetArgsType & OnEndSliderMovement &40; const FOnEndSliderMovement & InDelegate &41; | [] |
SAdvancedRotationInputBox::FArguments::OnGetNumericValue | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Optional delegate to retrieve a value | AnimationWidgets | WidgetArgsType & OnGetNumericValue &40; const FOnGetNumericValue & InDelegate &41; | [] |
SAdvancedRotationInputBox::FArguments::OnGetToggleChecked | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Delegate to retrieve a toggle state | AnimationWidgets | WidgetArgsType & OnGetToggleChecked &40; const FOnGetToggleChecked & InDelegate &41; | [] |
SAdvancedRotationInputBox::FArguments::OnNumericValueChanged | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Optional delegate to notify a value change | AnimationWidgets | WidgetArgsType & OnNumericValueChanged &40; const FOnNumericValueChanged & InDelegate &41; | [] |
SAdvancedRotationInputBox::FArguments::OnNumericValueCommitted | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Optional delegate to notify a committed value | AnimationWidgets | WidgetArgsType & OnNumericValueCommitted &40; const FOnNumericValueCommitted & InDelegate &41; | [] |
SAdvancedRotationInputBox::FArguments::OnQuaternionChanged | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Optional delegate to notify a change in the quaternion | AnimationWidgets | WidgetArgsType & OnQuaternionChanged &40; const FOnQuaternionChanged & InDelegate &41; | [] |
SAdvancedRotationInputBox::FArguments::OnQuaternionCommitted | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Optional delegate to notify a commit in the quaternion | AnimationWidgets | WidgetArgsType & OnQuaternionCommitted &40; const FOnQuaternionCommitted & InDelegate &41; | [] |
SAdvancedRotationInputBox::FArguments::OnRotatorChanged | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Optional delegate to notify a change in the rotator | AnimationWidgets | WidgetArgsType & OnRotatorChanged &40; const FOnRotatorChanged & InDelegate &41; | [] |
SAdvancedRotationInputBox::FArguments::OnRotatorCommitted | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Optional delegate to notify a commit in the rotator | AnimationWidgets | WidgetArgsType & OnRotatorCommitted &40; const FOnRotatorCommitted & InDelegate &41; | [] |
SAdvancedRotationInputBox::FArguments::OnToggleChanged | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Delegate to notify a toggle state change | AnimationWidgets | WidgetArgsType & OnToggleChanged &40; const FOnToggleChanged & InDelegate &41; | [] |
SAdvancedRotationInputBox::FArguments::Quaternion | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Optional representation as quaternion | AnimationWidgets | WidgetArgsType & Quaternion &40; const TAttribute< TOptional< FQuat > > & InAttribute &41; | [] |
SAdvancedRotationInputBox::FArguments::Representation | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Representation of the rotation | AnimationWidgets | WidgetArgsType & Representation &40; const TAttribute< ESlateRotationRepresentation::Type > & InAttribute &41; | [] |
SAdvancedRotationInputBox::FArguments::Rotator | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Optional representation as rotator | AnimationWidgets | WidgetArgsType & Rotator &40; const TAttribute< TOptional< FRotator > > & InAttribute &41; | [] |
SAdvancedRotationInputBox::FArguments::TogglePadding | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Padding around the toggle checkbox | AnimationWidgets | WidgetArgsType & TogglePadding &40; FMargin InArg &41; | [] |
WidgetArgsType | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | AnimationWidgets | typedef FArguments WidgetArgsType | [] |
|
SAdvancedRotationInputBox::FArguments::FArguments | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | AnimationWidgets | FArguments&40;&41; | [] |
|
FArguments | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | AnimationWidgets | struct FArguments : public [TSlateBaseNamedArgs< SAdvancedRotationInputBox >](API\Runtime\SlateCore\Widgets\TSlateBaseNamedArgs) | [] |
|
FOnBeginSliderMovement | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Notification for begin slider movement | AnimationWidgets | typedef TBaseDelegate_TwoParams< void, [ESlateRotationRepresentation::Type](API\Developer\AnimationWidgets\ESlateRotationRepresentation__Ty-), [ESlateTransformSubComponent::Type](API\Developer\AnimationWidgets\ESlateTransformSubComponent__Typ-) > FOnBeginSliderMovement | [] |
FOnEndSliderMovement | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Notification for end slider movement | AnimationWidgets | typedef TBaseDelegate_ThreeParams< void, [ESlateRotationRepresentation::Type](API\Developer\AnimationWidgets\ESlateRotationRepresentation__Ty-), [ESlateTransformSubComponent::Type](API\Developer\AnimationWidgets\ESlateTransformSubComponent__Typ-), NumericType > FOnEndSliderMovement | [] |
FOnGetNumericValue | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Delegate to retrieve a numerictype value | AnimationWidgets | typedef TBaseDelegate_TwoParams< [TOptional](API\Runtime\Core\IO\TOptional)< NumericType >, [ESlateRotationRepresentation::Type](API\Developer\AnimationWidgets\ESlateRotationRepresentation__Ty-), [ESlateTransformSubComponent::Type](API\Developer\AnimationWidgets\ESlateTransformSubComponent__Typ-) > FOnGetNumericValue | [] |
FOnGetToggleChecked | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Delegate to retrieve toggle checkstate | AnimationWidgets | typedef TBaseDelegate_TwoParams< ECheckBoxState, [ESlateRotationRepresentation::Type](API\Developer\AnimationWidgets\ESlateRotationRepresentation__Ty-), [ESlateTransformSubComponent::Type](API\Developer\AnimationWidgets\ESlateTransformSubComponent__Typ-) > FOnGetToggleChecked | [] |
FOnNumericValueChanged | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Notification for numerictype value change | AnimationWidgets | typedef TBaseDelegate_ThreeParams< void, [ESlateRotationRepresentation::Type](API\Developer\AnimationWidgets\ESlateRotationRepresentation__Ty-), [ESlateTransformSubComponent::Type](API\Developer\AnimationWidgets\ESlateTransformSubComponent__Typ-), NumericType > FOnNumericValueChanged | [] |
FOnNumericValueCommitted | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Notification for numerictype value committed | AnimationWidgets | typedef TBaseDelegate_FourParams< void, [ESlateRotationRepresentation::Type](API\Developer\AnimationWidgets\ESlateRotationRepresentation__Ty-), [ESlateTransformSubComponent::Type](API\Developer\AnimationWidgets\ESlateTransformSubComponent__Typ-), NumericType, [ETextCommit::Type](API\Runtime\SlateCore\Types\ETextCommit__Type) > FOnNumericValueCommitted | [] |
FOnQuaternionChanged | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Delegate for notification for a quaternion value change | AnimationWidgets | typedef TBaseDelegate_OneParam< void, FQuat > FOnQuaternionChanged | [] |
FOnQuaternionCommitted | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Delegate for notification for a quaternion value commit | AnimationWidgets | typedef TBaseDelegate_TwoParams< void, FQuat, [ETextCommit::Type](API\Runtime\SlateCore\Types\ETextCommit__Type) > FOnQuaternionCommitted | [] |
FOnRotatorChanged | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Delegate for notification for a rotator value change | AnimationWidgets | typedef TBaseDelegate_OneParam< void, FRotator > FOnRotatorChanged | [] |
FOnRotatorCommitted | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Delegate for notification for a rotator value commit | AnimationWidgets | typedef TBaseDelegate_TwoParams< void, FRotator, [ETextCommit::Type](API\Runtime\SlateCore\Types\ETextCommit__Type) > FOnRotatorCommitted | [] |
FOnToggleChanged | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Notification for toggle checkstate change | AnimationWidgets | typedef TBaseDelegate_ThreeParams< void, [ESlateRotationRepresentation::Type](API\Developer\AnimationWidgets\ESlateRotationRepresentation__Ty-), [ESlateTransformSubComponent::Type](API\Developer\AnimationWidgets\ESlateTransformSubComponent__Typ-), ECheckBoxState > FOnToggleChanged | [] |
SAdvancedRotationInputBox::IsValidComponent | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | AnimationWidgets | static bool IsValidComponent ( [ESlateRotationRepresentation::Type](API\Developer\AnimationWidgets\ESlateRotationRepresentation__Ty-) InRepresentation, [ESlateTransformSubComponent::Type](API\Developer\AnimationWidgets\ESlateTransformSubComponent__Typ-) InSubComponent ) | [] |
|
SNumericVectorInputBox3 | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | AnimationWidgets | typedef [SNumericVectorInputBox](API\Runtime\Slate\SNumericVectorInputBox)< NumericType, [UE::Math::TVector](API\Runtime\Core\Math\TVector)< NumericType >, 3 > SNumericVectorInputBox3 | [] |
|
SNumericVectorInputBox4 | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | AnimationWidgets | typedef [SNumericVectorInputBox](API\Runtime\Slate\SNumericVectorInputBox)< NumericType, [UE::Math::TVector4](API\Runtime\Core\Math\TVector4)< NumericType >, 4 > SNumericVectorInputBox4 | [] |
|
SAdvancedRotationInputBox | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedRotationInputBox.h | Generic Rotation Slate control | AnimationWidgets | template<typename NumericType> class SAdvancedRotationInputBox : public [SCompoundWidget](API\Runtime\SlateCore\Widgets\SCompoundWidget) | [] |
SAdvancedTransformInputBox::ApplyNumericValueChange | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | AnimationWidgets | static void ApplyNumericValueChange ( TransformType & Transform, NumericType Value, [ESlateTransformComponent::Type](API\Developer\AnimationWidgets\ESlateTransformComponent__Type) Component, [ESlateRotationRepresentation::Type](API\Developer\AnimationWidgets\ESlateRotationRepresentation__Ty-) Representation, [ESlateTransformSubComponent::Type](API\Developer\AnimationWidgets\ESlateTransformSubComponent__Typ-) SubComponent ) | [] |
|
SAdvancedTransformInputBox::ConstrainScale | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | AnimationWidgets | static void ConstrainScale ( int32 ComponentIndex, [UE::Math::TVector](API\Runtime\Core\Math\TVector)< NumericType > OldValue, [UE::Math::TVector](API\Runtime\Core\Math\TVector)< NumericType > & NewValue, [TAttribute](API\Runtime\Core\Misc\TAttribute)< bool > ConstrainComponents ) | [] |
|
SAdvancedTransformInputBox::Construct | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Construct this widget | AnimationWidgets | void Construct ( const [FArguments](API\Developer\AnimationWidgets\SAdvancedTransformInputBox\FArguments) & InArgs ) | [] |
SAdvancedTransformInputBox::ConstructDetailGroup | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | AnimationWidgets | static [IDetailGroup](API\Editor\PropertyEditor\IDetailGroup) & ConstructDetailGroup ( [IDetailCategoryBuilder](API\Editor\PropertyEditor\IDetailCategoryBuilder) & InBuilder, [FName](API\Runtime\Core\UObject\FName) GroupName, const [FText](API\Runtime\Core\Internationalization\FText) & LocalizedDisplayName ) | [] |
|
SAdvancedTransformInputBox::ConstructDetailGroup | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | AnimationWidgets | static [IDetailGroup](API\Editor\PropertyEditor\IDetailGroup) & ConstructDetailGroup ( [IDetailChildrenBuilder](API\Editor\PropertyEditor\IDetailChildrenBuilder) & InBuilder, [FName](API\Runtime\Core\UObject\FName) GroupName, const [FText](API\Runtime\Core\Internationalization\FText) & LocalizedDisplayName ) | [] |
|
SAdvancedTransformInputBox::ConstructGroupedTransformRows | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | AnimationWidgets | template<typename BuilderType> static [FDetailWidgetRow](API\Editor\PropertyEditor\FDetailWidgetRow) & ConstructGroupedTransformRows ( BuilderType & InBuilder, const [FText](API\Runtime\Core\Internationalization\FText) & InLabel, const [FText](API\Runtime\Core\Internationalization\FText) & InTooltip, typename [SAdvancedTransformInputBox](API\Developer\AnimationWidgets\SAdvancedTransformInputBox)< TransformType >::[FArguments](API\Developer\AnimationWidgets\SAdvancedTransformInputBox\FArguments) WidgetArgs, [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > NameContent ) | [] |
|
SAdvancedTransformInputBox::ConstructLabel | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Constructs a label widget | AnimationWidgets | static [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > ConstructLabel ( const [FArguments](API\Developer\AnimationWidgets\SAdvancedTransformInputBox\FArguments) & InArgs, [ESlateTransformComponent::Type](API\Developer\AnimationWidgets\ESlateTransformComponent__Type) InComponent ) | [] |
SAdvancedTransformInputBox::ConstructRelativeWorldWidget | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Constructs a relative / world switcher button | AnimationWidgets | static [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > ConstructRelativeWorldWidget ( const [FArguments](API\Developer\AnimationWidgets\SAdvancedTransformInputBox\FArguments) & InArgs, [ESlateTransformComponent::Type](API\Developer\AnimationWidgets\ESlateTransformComponent__Type) InComponent ) | [] |
SAdvancedTransformInputBox::ConstructScaleLockWidget | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Constructs a relative / world switcher button | AnimationWidgets | static [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > ConstructScaleLockWidget ( const [FArguments](API\Developer\AnimationWidgets\SAdvancedTransformInputBox\FArguments) & InArgs, [ESlateTransformComponent::Type](API\Developer\AnimationWidgets\ESlateTransformComponent__Type) InComponent ) | [] |
SAdvancedTransformInputBox::FArguments::AllowEditRotationRepresentation | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Whether or not to display the rotation representation picker in the label | AnimationWidgets | WidgetArgsType & AllowEditRotationRepresentation &40; bool InArg &41; | [] |
SAdvancedTransformInputBox::ConstructWidget | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Construct an input widget | AnimationWidgets | static [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > ConstructWidget ( const [FArguments](API\Developer\AnimationWidgets\SAdvancedTransformInputBox\FArguments) & InArgs, [ESlateTransformComponent::Type](API\Developer\AnimationWidgets\ESlateTransformComponent__Type) InComponent ) | [] |
SAdvancedTransformInputBox::FArguments::AllowSpin | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Whether or not values can be spun or if they should be typed in | AnimationWidgets | WidgetArgsType & AllowSpin &40; bool InArg &41; | [] |
SAdvancedTransformInputBox::FArguments::bColorAxisLabels | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Should the axis labels be colored | AnimationWidgets | WidgetArgsType & bColorAxisLabels &40; bool InArg &41; | [] |
SAdvancedTransformInputBox::FArguments::ConstructLocation | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Whether or not to construct the location component | AnimationWidgets | WidgetArgsType & ConstructLocation &40; bool InArg &41; | [] |
SAdvancedTransformInputBox::FArguments::ConstructRotation | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Whether or not to construct the rotation component | AnimationWidgets | WidgetArgsType & ConstructRotation &40; bool InArg &41; | [] |
SAdvancedTransformInputBox::FArguments::DiffersFromDefault | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Delegate to determine if a row (or the whole transform) differs from its default | AnimationWidgets | WidgetArgsType & DiffersFromDefault &40; const FDiffersFromDefault & InDelegate &41; | [] |
SAdvancedTransformInputBox::FArguments::ConstructScale | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Whether or not to construct the scale component | AnimationWidgets | WidgetArgsType & ConstructScale &40; bool InArg &41; | [] |
SAdvancedTransformInputBox::FArguments::DisplayRelativeWorld | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Whether or not to display the per component buttons to switch between relative and world | AnimationWidgets | WidgetArgsType & DisplayRelativeWorld &40; bool InArg &41; | [] |
SAdvancedTransformInputBox::FArguments::DisplayScaleLock | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Whether or not to display the lock scale button | AnimationWidgets | WidgetArgsType & DisplayScaleLock &40; bool InArg &41; | [] |
SAdvancedTransformInputBox::FArguments::DisplayToggle | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Whether or not to include a toggle checkbox to the left of the widget | AnimationWidgets | WidgetArgsType & DisplayToggle &40; bool InArg &41; | [] |
SAdvancedTransformInputBox::FArguments::Font | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Font to use for the text in this box | AnimationWidgets | WidgetArgsType & Font &40; const TAttribute< FSlateFontInfo > & InAttribute &41; | [] |
SAdvancedTransformInputBox::FArguments::IsScaleLocked | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | The state of the scale lock | AnimationWidgets | WidgetArgsType & IsScaleLocked &40; TSharedPtr< bool > InArg &41; | [] |
SAdvancedTransformInputBox::FArguments::LabelPadding | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Padding around the label checkbox | AnimationWidgets | WidgetArgsType & LabelPadding &40; FMargin InArg &41; | [] |
SAdvancedTransformInputBox::FArguments::LocationLabel | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | The label to use for the location component | AnimationWidgets | WidgetArgsType & LocationLabel &40; FText InArg &41; | [] |
SAdvancedTransformInputBox::FArguments::LocationSpinDelta | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | The delta amount to apply, per pixel, when a location spinner is dragged. | AnimationWidgets | WidgetArgsType & LocationSpinDelta &40; const TAttribute< NumericType > & InAttribute &41; | [] |
SAdvancedTransformInputBox::FArguments::OnBeginSliderMovement | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Delegate to notify a begin slider movement | AnimationWidgets | WidgetArgsType & OnBeginSliderMovement &40; const FOnBeginSliderMovement & InDelegate &41; | [] |
SAdvancedTransformInputBox::FArguments::OnCopyToClipboard | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Delegate to react to copy to clipboard | AnimationWidgets | WidgetArgsType & OnCopyToClipboard &40; const FOnCopyToClipboard & InDelegate &41; | [] |
SAdvancedTransformInputBox::FArguments::OnEndSliderMovement | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Delegate to notify a end slider movement | AnimationWidgets | WidgetArgsType & OnEndSliderMovement &40; const FOnEndSliderMovement & InDelegate &41; | [] |
SAdvancedTransformInputBox::FArguments::OnGetIsComponentRelative | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Delegate to retrieve a relative / world state per component | AnimationWidgets | WidgetArgsType & OnGetIsComponentRelative &40; const FOnGetIsComponentRelative & InDelegate &41; | [] |
SAdvancedTransformInputBox::FArguments::OnGetNumericValue | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Delegate to retrieve a value | AnimationWidgets | WidgetArgsType & OnGetNumericValue &40; const FOnGetNumericValue & InDelegate &41; | [] |
SAdvancedTransformInputBox::FArguments::OnGetToggleChecked | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Delegate to retrieve a toggle state | AnimationWidgets | WidgetArgsType & OnGetToggleChecked &40; const FOnGetToggleChecked & InDelegate &41; | [] |
SAdvancedTransformInputBox::FArguments::OnIsComponentRelativeChanged | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Delegate to notify a relative / world state change | AnimationWidgets | WidgetArgsType & OnIsComponentRelativeChanged &40; const FOnIsComponentRelativeChanged & InDelegate &41; | [] |
SAdvancedTransformInputBox::FArguments::OnNumericValueChanged | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Delegate to notify a value change | AnimationWidgets | WidgetArgsType & OnNumericValueChanged &40; const FOnNumericValueChanged & InDelegate &41; | [] |
SAdvancedTransformInputBox::FArguments::OnNumericValueCommitted | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Delegate to notify a committed value | AnimationWidgets | WidgetArgsType & OnNumericValueCommitted &40; const FOnNumericValueCommitted & InDelegate &41; | [] |
SAdvancedTransformInputBox::FArguments::OnPasteFromClipboard | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Delegate to react to paste from clipboard | AnimationWidgets | WidgetArgsType & OnPasteFromClipboard &40; const FOnPasteFromClipboard & InDelegate &41; | [] |
SAdvancedTransformInputBox::FArguments::OnResetToDefault | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Delegate to react to reset to default | AnimationWidgets | WidgetArgsType & OnResetToDefault &40; const FOnResetToDefault & InDelegate &41; | [] |
SAdvancedTransformInputBox::FArguments::OnRotationRepresentationChanged | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Delegate to notify a rotation representation change | AnimationWidgets | WidgetArgsType & OnRotationRepresentationChanged &40; const FOnRotationRepresentationChanged & InDelegate &41; | [] |
SAdvancedTransformInputBox::FArguments::OnScaleLockChanged | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Delegate to notify a scale lock change | AnimationWidgets | WidgetArgsType & OnScaleLockChanged &40; const FOnScaleLockChanged & InDelegate &41; | [] |
SAdvancedTransformInputBox::FArguments::OnToggleChanged | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Delegate to notify a toggle state change | AnimationWidgets | WidgetArgsType & OnToggleChanged &40; const FOnToggleChanged & InDelegate &41; | [] |
SAdvancedTransformInputBox::FArguments::OnTransformChanged | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Optional delegate to notify a change in the transform | AnimationWidgets | WidgetArgsType & OnTransformChanged &40; const FOnTransformChanged & InDelegate &41; | [] |
SAdvancedTransformInputBox::FArguments::OnTransformCommitted | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Optional delegate to notify a commit in the transform | AnimationWidgets | WidgetArgsType & OnTransformCommitted &40; const FOnTransformCommitted & InDelegate &41; | [] |
SAdvancedTransformInputBox::FArguments::RotationLabel | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | The label to use for the rotation component | AnimationWidgets | WidgetArgsType & RotationLabel &40; FText InArg &41; | [] |
SAdvancedTransformInputBox::FArguments::RotationRepresentation | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Representation of the rotation | AnimationWidgets | WidgetArgsType & RotationRepresentation &40; TSharedPtr< ESlateRotationRepresentation::Type > InArg &41; | [] |
SAdvancedTransformInputBox::FArguments::ScaleLabel | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | The label to use for the scale component | AnimationWidgets | WidgetArgsType & ScaleLabel &40; FText InArg &41; | [] |
SAdvancedTransformInputBox::FArguments::ScaleSpinDelta | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | The delta amount to apply, per pixel, when a scale spinner is dragged. | AnimationWidgets | WidgetArgsType & ScaleSpinDelta &40; const TAttribute< NumericType > & InAttribute &41; | [] |
SAdvancedTransformInputBox::FArguments::ShowInlineLabels | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Should we show labels inline next to all input boxes | AnimationWidgets | WidgetArgsType & ShowInlineLabels &40; bool InArg &41; | [] |
SAdvancedTransformInputBox::FArguments::TogglePadding | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Padding around the toggle checkbox | AnimationWidgets | WidgetArgsType & TogglePadding &40; FMargin InArg &41; | [] |
SAdvancedTransformInputBox::FArguments::Transform | /Engine/Source/Developer/AnimationWidgets/Public/SAdvancedTransformInputBox.h | Optional representation as transform | AnimationWidgets | WidgetArgsType & Transform &40; const TAttribute< TOptional< TransformType > > & InAttribute &41; | [] |
Subsets and Splits