Exemple #1
0
 public ArgumentFormat(FAssetArchive Ar)
 {
     SourceFmt = new FText(Ar);
     Arguments = Ar.ReadArray(() => new FFormatArgumentData(Ar));
 }
Exemple #2
0
 public Transform(FAssetArchive Ar)
 {
     SourceText    = new FText(Ar);
     TransformType = Ar.Read <ETransformType>();
 }
Exemple #3
0
 public OrderedFormat(FAssetArchive Ar)
 {
     SourceFmt = new FText(Ar);
     Arguments = Ar.ReadArray(() => new FFormatArgumentValue(Ar));
 }