Navigation
API > API/Plugins > API/Plugins/DNACalibLib > API/Plugins/DNACalibLib/RenameJointCommand
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void setName
(
std::uint16_t jointIndex, |
Method for setting a new name for joint with given index. | dnacalib/commands/RenameJointCommand.h | |
void setName
(
const char* oldName, |
Method for setting a new name for joint with given name. | dnacalib/commands/RenameJointCommand.h |
setName(std::uint16_t, const char *)
Description
Method for setting a new name for joint with given index.
| Name | setName |
| Type | function |
| Header File | /Engine/Plugins/Animation/DNACalib/Source/DNACalibLib/Public/dnacalib/commands/RenameJointCommand.h |
| Include Path | #include "dnacalib/commands/RenameJointCommand.h" |
| Source | /Engine/Plugins/Animation/DNACalib/Source/DNACalibLib/Private/dnacalib/commands/RenameJointCommand.cpp |
void setName
(
std::uint16_t jointIndex,
const char * newName
)
Parameters
| Name | Remarks |
|---|---|
| jointIndex | The index of the joint whose name to change. |
| newName | The new name for the joint. |
setName(const char , const char )
Description
The renaming will not happen if there is no joint with given current name.
| Name | setName |
| Type | function |
| Header File | /Engine/Plugins/Animation/DNACalib/Source/DNACalibLib/Public/dnacalib/commands/RenameJointCommand.h |
| Include Path | #include "dnacalib/commands/RenameJointCommand.h" |
| Source | /Engine/Plugins/Animation/DNACalib/Source/DNACalibLib/Private/dnacalib/commands/RenameJointCommand.cpp |
void setName
(
const char * oldName,
const char * newName
)
Parameters
| Name | Remarks |
|---|---|
| oldName | The current name of the joint whose name to change. |
| newName | The new name for the joint. |