Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/TAttributeContainer
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
AttributeType * Find
(
const FAttributeId& InAttributeId |
Tries to find a attribute type/value entry of the specified AttributeType. | Animation/AttributesContainer.h | |
const AttributeType * Find
(
const FAttributeId& InAttributeId |
Tries to find a attribute type/value entry of the specified AttributeType. | Animation/AttributesContainer.h | |
uint8 * Find
(
const UScriptStruct* InScriptStruct, |
Tries to find a attribute type/value entry for the specified InScriptType. | Animation/AttributesContainer.h | |
const uint8 * Find
(
const UScriptStruct* InScriptStruct, |
Tries to find a attribute type/value entry for the specified InScriptType. | Animation/AttributesContainer.h |
Find(const FAttributeId &)
Description
Tries to find a attribute type/value entry of the specified AttributeType.
| Name | Find |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Animation/AttributesContainer.h |
| Include Path | #include "Animation/AttributesContainer.h" |
template<typename AttributeType>
AttributeType * Find
(
const FAttributeId & InAttributeId
)
The ptr to the entry, to be used for modifying the data, nullptr if it was not found
Parameters
| Name | Remarks |
|---|---|
| InAttributeId | Key to be used for seraching the entry |
Find(const FAttributeId &)
Description
Tries to find a attribute type/value entry of the specified AttributeType.
| Name | Find |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Animation/AttributesContainer.h |
| Include Path | #include "Animation/AttributesContainer.h" |
template<typename AttributeType>
const AttributeType * Find
(
const FAttributeId & InAttributeId
) const
The ptr to the constant entry, nullptr if it was not found
Parameters
| Name | Remarks |
|---|---|
| InAttributeId | Key to be used for seraching the entry |
Find(const UScriptStruct *, const FAttributeId &)
Description
Tries to find a attribute type/value entry for the specified InScriptType.
| Name | Find |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Animation/AttributesContainer.h |
| Include Path | #include "Animation/AttributesContainer.h" |
uint8 * Find
(
const UScriptStruct * InScriptStruct,
const FAttributeId & InAttributeId
)
The ptr to the entry, to be used for modifying the data, nullptr if it was not found
Parameters
| Name | Remarks |
|---|---|
| InScriptStruct | UScriptStruct (type) for the entry |
| InAttributeId | Key to be used for seraching the entry |
Find(const UScriptStruct *, const FAttributeId &)
Description
Tries to find a attribute type/value entry for the specified InScriptType.
| Name | Find |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Animation/AttributesContainer.h |
| Include Path | #include "Animation/AttributesContainer.h" |
const uint8 * Find
(
const UScriptStruct * InScriptStruct,
const FAttributeId & InAttributeId
) const
The ptr to the constant entry, nullptr if it was not found
Parameters
| Name | Remarks |
|---|---|
| InScriptStruct | UScriptStruct (type) for the entry |
| InAttributeId | Key to be used for seraching the entry |