Navigation
API > API/Runtime > API/Runtime/ClothingSystemRuntimeCommon > API/Runtime/ClothingSystemRuntimeCommon/FPointWeightMap
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Initialize
(
const int32 NumPoints |
Reset this map to the specified number of points, and set all the values to zero. | PointWeightMap.h | |
void Initialize
(
const FPointWeightMap& Source, |
Initialize a weight map from another weight map while enabling and setting a new target. | PointWeightMap.h |
Initialize(const int32)
Description
Reset this map to the specified number of points, and set all the values to zero.
| Name | Initialize |
| Type | function |
| Header File | /Engine/Source/Runtime/ClothingSystemRuntimeCommon/Public/PointWeightMap.h |
| Include Path | #include "PointWeightMap.h" |
void Initialize
(
const int32 NumPoints
)
Parameters
| Name | Remarks |
|---|---|
| NumPoints | the number of points to initialize the map with. |
Initialize(const FPointWeightMap &, T)
Description
Initialize a weight map from another weight map while enabling and setting a new target.
| Name | Initialize |
| Type | function |
| Header File | /Engine/Source/Runtime/ClothingSystemRuntimeCommon/Public/PointWeightMap.h |
| Include Path | #include "PointWeightMap.h" |
template<typename T, std::enable_if_t<(std::is_enum_v< T >||std::is_arithmetic_v< T >), int >>
void Initialize
(
const FPointWeightMap & Source,
T Target
)
Parameters
| Name | Remarks |
|---|---|
| Source | the source weight map to copy the values from. |
| Target | the new weight map target. |