Navigation
API > API/Runtime > API/Runtime/InteractiveToolsFramework > API/Runtime/InteractiveToolsFramework/UKeyAsModifierInputBehavior
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual void Initialize
(
IModifierToggleBehaviorTarget* Target, |
Initialize this behavior with the given Target | BaseBehaviors/KeyAsModifierInputBehavior.h | |
void Initialize
(
IModifierToggleBehaviorTarget* TargetIn, |
Initialize this behavior with the given Target | BaseBehaviors/KeyAsModifierInputBehavior.h |
Initialize(IModifierToggleBehaviorTarget *, int, const FKey &)
Description
Initialize this behavior with the given Target
| Name | Initialize |
| Type | function |
| Header File | /Engine/Source/Runtime/InteractiveToolsFramework/Public/BaseBehaviors/KeyAsModifierInputBehavior.h |
| Include Path | #include "BaseBehaviors/KeyAsModifierInputBehavior.h" |
| Source | /Engine/Source/Runtime/InteractiveToolsFramework/Private/BaseBehaviors/KeyAsModifierInputBehavior.cpp |
virtual void Initialize
(
IModifierToggleBehaviorTarget * Target,
int ModifierID,
const FKey & ModifierKey
)
Parameters
| Name | Remarks |
|---|---|
| Target | implementor of modifier-toggle behavior |
| ModifierID | integer ID that identifiers the modifier toggle |
| ModifierKey | the key that will be used as the modifier toggle |
Initialize(IModifierToggleBehaviorTarget *, int, TFunction< bool(const FInputDeviceState &)>)
Description
Initialize this behavior with the given Target
| Name | Initialize |
| Type | function |
| Header File | /Engine/Source/Runtime/InteractiveToolsFramework/Public/BaseBehaviors/KeyAsModifierInputBehavior.h |
| Include Path | #include "BaseBehaviors/KeyAsModifierInputBehavior.h" |
| Source | /Engine/Source/Runtime/InteractiveToolsFramework/Private/BaseBehaviors/KeyAsModifierInputBehavior.cpp |
void Initialize
(
IModifierToggleBehaviorTarget * TargetIn,
int ModifierID,
TFunction < bool &)> ModifierCheckFunc
)
Parameters
| Name | Remarks |
|---|---|
| Target | implementor of modifier-toggle behavior |
| ModifierID | integer ID that identifiers the modifier toggle |
| ModifierCheckFunc | the function that will be checked to set the the modifier. |