Navigation
API > API/Plugins > API/Plugins/PCG > API/Plugins/PCG/IPCGAttributeAccessor
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool CopyTo
(
const IPCGAttributeAccessorKeys& SrcKeys, |
Copy an accessor into another. | Metadata/Accessors/IPCGAttributeAccessor.h | |
bool CopyTo
(
const IPCGAttributeAccessorKeys& SrcKeys, |
Partial copy an accessor into another. | Metadata/Accessors/IPCGAttributeAccessor.h |
CopyTo(const IPCGAttributeAccessorKeys &, IPCGAttributeAccessor &, IPCGAttributeAccessorKeys &, int32, int32, EPCGAttributeAccessorFlags)
Description
Copy an accessor into another.
| Name | CopyTo |
| Type | function |
| Header File | /Engine/Plugins/PCG/Source/PCG/Public/Metadata/Accessors/IPCGAttributeAccessor.h |
| Include Path | #include "Metadata/Accessors/IPCGAttributeAccessor.h" |
bool CopyTo
(
const IPCGAttributeAccessorKeys & SrcKeys,
IPCGAttributeAccessor & DestAccessor,
IPCGAttributeAccessorKeys & DestKeys,
int32 Index,
int32 Count,
EPCGAttributeAccessorFlags Flags
) const
true if the copy succeeded, false otherwise
Parameters
| Name | Remarks |
|---|---|
| SrcKeys | Identification to know how to retrieve the value in this accessor |
| DestAccessor | Accessor to write into |
| DestKeys | Identification to know how to write the value in destination accessor |
| Index | The index to start looking for in the keys |
| Count | Number of values to copy |
| Flags | Optional flag to allow for specific operations. Cf EPCGAttributeAccessorFlags. |
CopyTo(const IPCGAttributeAccessorKeys &, IPCGAttributeAccessor &, IPCGAttributeAccessorKeys &, int32, int32, int32, EPCGAttributeAccessorFlags)
Description
Partial copy an accessor into another.
| Name | CopyTo |
| Type | function |
| Header File | /Engine/Plugins/PCG/Source/PCG/Public/Metadata/Accessors/IPCGAttributeAccessor.h |
| Include Path | #include "Metadata/Accessors/IPCGAttributeAccessor.h" |
| Source | /Engine/Plugins/PCG/Source/PCG/Private/Metadata/Accessors/IPCGAttributeAccessor.cpp |
bool CopyTo
(
const IPCGAttributeAccessorKeys & SrcKeys,
IPCGAttributeAccessor & DestAccessor,
IPCGAttributeAccessorKeys & DestKeys,
int32 InputIndex,
int32 OutputIndex,
int32 Count,
EPCGAttributeAccessorFlags Flags
) const
true if the copy succeeded, false otherwise
Parameters
| Name | Remarks |
|---|---|
| SrcKeys | Identification to know how to retrieve the value in this accessor |
| DestAccessor | Accessor to write into |
| DestKeys | Identification to know how to write the value in destination accessor |
| InputIndex | The index to start looking for in the input keys |
| OutputIndex | The index to start looking for in the output keys |
| Count | Number of values to copy |
| Flags | Optional flag to allow for specific operations. Cf EPCGAttributeAccessorFlags. |