That definitely doesn’t seem right!
I’m trying to convert an FTransform
to a Json Object.
const TSharedPtr<FJsonObject> Transform = FJsonObjectConverter::UStructToJsonObject<FTransform>(GetTransform());
But I get a build error saying that FTransform
doesn’t have static struct.
What’s going on here?
What’s the right way to serialise a transform to json?