Navigation
API > API/Plugins > API/Plugins/TweeningUtilsEditor > API/Plugins/TweeningUtilsEditor/FTweenMouseSlidingController
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FTweenMouseSlidingController
(
TAttribute< FTweenModel* > InTweenModelAttr, |
Version that defaults to using the commands from FTweeningUtilsCommands. | Widgets/MVC/TweenMouseSlidingController.h | |
FTweenMouseSlidingController
(
TAttribute< float > InMaxSlideWidthAttr, |
Version that allows you to specify every detail | Widgets/MVC/TweenMouseSlidingController.h |
FTweenMouseSlidingController(TAttribute< FTweenModel * >, const TSharedRef< FUICommandList > &)
Description
Version that defaults to using the commands from FTweeningUtilsCommands. The slider width is based on the size of the slider in the toolbar(= value from FTweeningUtilsStyle).
| Name | FTweenMouseSlidingController |
| Type | function |
| Header File | /Engine/Plugins/Animation/TweeningUtils/Source/TweeningUtilsEditor/Public/Widgets/MVC/TweenMouseSlidingController.h |
| Include Path | #include "Widgets/MVC/TweenMouseSlidingController.h" |
| Source | /Engine/Plugins/Animation/TweeningUtils/Source/TweeningUtilsEditor/Private/Widgets/MVC/TweenMouseSlidingController.cpp |
FTweenMouseSlidingController
(
TAttribute < FTweenModel * > InTweenModelAttr,
const TSharedRef < FUICommandList > & InCommandList
)
FTweenMouseSlidingController(TAttribute< float >, TAttribute< FTweenModel * >, const TSharedRef< FUICommandList > &, TSharedPtr< FUICommandInfo >)
Description
Version that allows you to specify every detail
| Name | FTweenMouseSlidingController |
| Type | function |
| Header File | /Engine/Plugins/Animation/TweeningUtils/Source/TweeningUtilsEditor/Public/Widgets/MVC/TweenMouseSlidingController.h |
| Include Path | #include "Widgets/MVC/TweenMouseSlidingController.h" |
| Source | /Engine/Plugins/Animation/TweeningUtils/Source/TweeningUtilsEditor/Private/Widgets/MVC/TweenMouseSlidingController.cpp |
FTweenMouseSlidingController
(
TAttribute < float > InMaxSlideWidthAttr,
TAttribute < FTweenModel * > InTweenModelAttr,
const TSharedRef < FUICommandList > & InCommandList,
TSharedPtr < FUICommandInfo > InDragSliderCommand
)
Parameters
| Name | Remarks |
|---|---|
| InMaxSlideWidthAttr | The total size of the "invisible" slider. The mouse can be moved left and right InMaxSlideWidthAttr.Get / 2.0 before being clamped. |
| InTweenModelAttr | The tween model that the sliding will update. |
| InCommandList | The command list to bind / unbind the command with. |
| InDragSliderCommand | The command that triggers detection of mouse movement. |