Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/UInputComponent
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void RemoveActionBinding
(
const int32 BindingIndex |
Removes the action binding at the specified index. | Components/InputComponent.h | |
void RemoveActionBinding
(
FName ActionName, |
Components/InputComponent.h | ||
void RemoveActionBinding
(
const FInputActionBinding& BindingToRemove, |
Removes the action binding (index need for multi-name fixups). | Components/InputComponent.h |
RemoveActionBinding(const int32)
Description
Removes the action binding at the specified index.
| Name | RemoveActionBinding |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Components/InputComponent.h |
| Include Path | #include "Components/InputComponent.h" |
| Source | /Engine/Source/Runtime/Engine/Private/Components/InputComponent.cpp |
void RemoveActionBinding
(
const int32 BindingIndex
)
Parameters
| Name | Remarks |
|---|---|
| BindingIndex | The index of the binding to remove. |
See Also
RemoveActionBinding(FName, EInputEvent)
| Name | RemoveActionBinding |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Components/InputComponent.h |
| Include Path | #include "Components/InputComponent.h" |
| Source | /Engine/Source/Runtime/Engine/Private/Components/InputComponent.cpp |
void RemoveActionBinding
(
FName ActionName,
EInputEvent KeyEvent
)
RemoveActionBinding(const FInputActionBinding &, const int32)
Description
Removes the action binding (index need for multi-name fixups).
| Name | RemoveActionBinding |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Components/InputComponent.h |
| Include Path | #include "Components/InputComponent.h" |
| Source | /Engine/Source/Runtime/Engine/Private/Components/InputComponent.cpp |
void RemoveActionBinding
(
const FInputActionBinding & BindingToRemove,
const int32 BindingIndex
)
Parameters
| Name | Remarks |
|---|---|
| BindingToRemove | The binding to remove. |
| BindingIndex | The binding's index for actions with the same name to fixup their data. |