Navigation
API > API/Plugins > API/Plugins/DNACalibLib > API/Plugins/DNACalibLib/CommandSequence
Overloads
| Name |
Remarks |
Include Path |
Unreal Specifiers |
|
Method for removing a command from the sequence of commands to run. |
dnacalib/commands/CommandSequence.h |
|
|
Method for removing an array of commands from the sequence of commands to run. |
dnacalib/commands/CommandSequence.h |
|
void remove
(
Commands... commands
)
|
|
dnacalib/commands/CommandSequence.h |
|
remove(Command *)
Description
Method for removing a command from the sequence of commands to run.
| |
|
| Name |
remove |
| Type |
function |
| Header File |
/Engine/Plugins/Animation/DNACalib/Source/DNACalibLib/Public/dnacalib/commands/CommandSequence.h |
| Include Path |
#include "dnacalib/commands/CommandSequence.h" |
| Source |
/Engine/Plugins/Animation/DNACalib/Source/DNACalibLib/Private/dnacalib/commands/CommandSequence.cpp |
void remove
(
Command * command
)
Parameters
| Name |
Remarks |
| command |
The command to remove. |
remove(ArrayView< Command >)
Description
Method for removing an array of commands from the sequence of commands to run.
| |
|
| Name |
remove |
| Type |
function |
| Header File |
/Engine/Plugins/Animation/DNACalib/Source/DNACalibLib/Public/dnacalib/commands/CommandSequence.h |
| Include Path |
#include "dnacalib/commands/CommandSequence.h" |
| Source |
/Engine/Plugins/Animation/DNACalib/Source/DNACalibLib/Private/dnacalib/commands/CommandSequence.cpp |
void remove
(
ArrayView< Command > commands
)
Parameters
| Name |
Remarks |
| commands |
The commands to remove. |
remove(Commands...)
| |
|
| Name |
remove |
| Type |
function |
| Header File |
/Engine/Plugins/Animation/DNACalib/Source/DNACalibLib/Public/dnacalib/commands/CommandSequence.h |
| Include Path |
#include "dnacalib/commands/CommandSequence.h" |
template<class ... Commands>
void remove
(
Commands... commands
)