Hi guys,I find that FastArray is fantastic,but there is a new question.
As the title,can use FastArrry nested?
Whether the ContainerA ,that inherit from FFastArraySerializer ,can used as a property for
another FFastArraySerializerItem?
e.g.
There are 4 struct:
USTRUCT()
struct FFastItemA : public FFastArraySerializerItem
{
GENERATED_BODY()
...Some Properties.
}
USTRUCT()
struct FFastContainerA: public FFastArraySerializer
{
GENERATED_BODY()
UPROPERTY()
TArray<FFastItemA > Items;
}
USTRUCT()
struct FFastItemB : public FFastArraySerializerItem
{
GENERATED_BODY()
UPROPERTY()
FFastContainerA ContainerA;
...Some Properties.
}
USTRUCT()
struct FFastContainerB: public FFastArraySerializer
{
GENERATED_BODY()
UPROPERTY()
TArray<FFastItemB > Items;
}
Whether it can work well?