Navigation
API > API/Runtime > API/Runtime/MassEntity > API/Runtime/MassEntity/TTypeBitSetBuilder
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
int32 GetTypeIndex () |
Template method to get the type index for a specific C++ type. | TypeBitSetBuilder.h | |
int32 GetTypeIndex
(
const TUStructType& InStructType |
Retrieves the index of a struct type within the struct tracker. | TypeBitSetBuilder.h | |
static int32 GetTypeIndex
(
FStructTracker& InStructTracker |
Template method to get the type index for a specific C++ type. | TypeBitSetBuilder.h | |
static int32 GetTypeIndex
(
const FStructTracker& InStructTracker, |
Static method to get the type index for a given struct type. | TypeBitSetBuilder.h |
GetTypeIndex()
Description
Template method to get the type index for a specific C++ type. Ensures at compile-time that the type is valid.
| Name | GetTypeIndex |
| Type | function |
| Header File | /Engine/Source/Runtime/MassEntity/Public/TypeBitSetBuilder.h |
| Include Path | #include "TypeBitSetBuilder.h" |
template<typename T>
int32 GetTypeIndex() const
The index of the struct type.
Parameters
| Name | Remarks |
|---|---|
| T | the C++ type to get the index for. |
GetTypeIndex(const TUStructType &)
Description
Retrieves the index of a struct type within the struct tracker. If the type is not registered, it will be added.
| Name | GetTypeIndex |
| Type | function |
| Header File | /Engine/Source/Runtime/MassEntity/Public/TypeBitSetBuilder.h |
| Include Path | #include "TypeBitSetBuilder.h" |
int32 GetTypeIndex
(
const TUStructType & InStructType
) const
The index of the struct type.
Parameters
| Name | Remarks |
|---|---|
| InStructType | the struct type to get the index for. |
GetTypeIndex(FStructTracker &)
Description
Template method to get the type index for a specific C++ type. Ensures at compile-time that the type is valid.
| Name | GetTypeIndex |
| Type | function |
| Header File | /Engine/Source/Runtime/MassEntity/Public/TypeBitSetBuilder.h |
| Include Path | #include "TypeBitSetBuilder.h" |
template<typename T>
static int32 GetTypeIndex
(
FStructTracker & InStructTracker
)
The index of the struct type.
Parameters
| Name | Remarks |
|---|---|
| T | the C++ type to get the index for. |
GetTypeIndex(const FStructTracker &, const TUStructType &)
Description
Static method to get the type index for a given struct type.
| Name | GetTypeIndex |
| Type | function |
| Header File | /Engine/Source/Runtime/MassEntity/Public/TypeBitSetBuilder.h |
| Include Path | #include "TypeBitSetBuilder.h" |
static int32 GetTypeIndex
(
const FStructTracker & InStructTracker,
const TUStructType & InStructType
)
The index of the struct type.
Parameters
| Name | Remarks |
|---|---|
| InStructTracker | the struct tracker to use. |
| InStructType | the struct type to get the index for. |