Navigation
API > API/Plugins > API/Plugins/DNACalibLib > API/Plugins/DNACalibLib/CommandSequence
Overloads
| Name |
Remarks |
Include Path |
Unreal Specifiers |
|
Method for adding a command to a sequence of commands to run. |
dnacalib/commands/CommandSequence.h |
|
|
Method for adding multiple commands to a sequence of commands to run. |
dnacalib/commands/CommandSequence.h |
|
void add
(
Commands... commands
)
|
|
dnacalib/commands/CommandSequence.h |
|
add(Command *)
Description
Method for adding a command to a sequence of commands to run.
| |
|
| Name |
add |
| 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 add
(
Command * command
)
Parameters
| Name |
Remarks |
| command |
The command to add. |
add(ArrayView< Command >)
Description
Method for adding multiple commands to a sequence of commands to run.
| |
|
| Name |
add |
| 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 add
(
ArrayView< Command > commands
)
Parameters
| Name |
Remarks |
| commands |
The commands to add. |
add(Commands...)
| |
|
| Name |
add |
| 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 add
(
Commands... commands
)