Navigation
API > API/Plugins > API/Plugins/PCG
Description
Finally we call our callback with the packed input values from InArgs, and set the output value in its accessor. We use OutputIndex to know which callback to get (and therefore which output to set). Note that we go in reverse order, and stop when OutputIndex is negative.
| Name | PCG::Private::NAryOperation::Apply |
| Type | function |
| Header File | /Engine/Plugins/PCG/Source/PCG/Public/Elements/Metadata/PCGMetadataOpElementBase.h |
| Include Path | #include "Elements/Metadata/PCGMetadataOpElementBase.h" |
namespace PCG
{
namespace Private
{
namespace NAryOperation
{
template<int OutputIndex, typename ... Callbacks, typename ... Args>
bool PCG::Private::NAryOperation::Apply
(
PCGMetadataOps::FOperationData & InOperationData,
int32 StartIndex,
int32 Range,
const Options & InOptions,
const TTuple < Callbacks... > & InCallbacks,
Args &&... InArgs
)
}
}
}