Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TAttribute
Description
Creates an attribute by binding an arbitrary function that will be called to generate this attribute's value on demand. After binding, the attribute will no longer have a value that can be accessed directly, and instead the bound function will always be called to generate the value.
| Name | CreateStatic |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/Attribute.h |
| Include Path | #include "Misc/Attribute.h" |
template<typename FuncPtrType, typename... VarTypes>
static TAttribute CreateStatic
(
FuncPtrType && InFuncPtr,
VarTypes... Vars
)
Parameters
| Name | Remarks |
|---|---|
| InFuncPtr | Member function to bind. The function's structure (return value, arguments, etc) must match IBoundAttributeDelegate's definition. |