I have a Data Asset Type for readable ingame Documents and in there I currently have a TArray<FText> DocumentContent
in which I store the pages of the document (Entry 0 = Page 1, etc). But now I would like to enable multiline functionality for the Texts inside the Document.
What is the best aproch to this?
I know you can enable multiline FText using UPROPERTY( meta = (MultiLine="true") )
but this does not work on TArray types.
Should I just parse the Text manually in code or can I enable multiline for TArray<FText>
?