Error for FAttachmentTransformRules

The struct “FAttachmentTransformRules” does not have a default constructor, as the error is telling you, so you would be required to initialize it in your class’s constructor or, in the header file, you could give it a default value (“FAttachmentTransformRules AttachRules = …;”). The available defaults are listed in the “Constants” section of the documentation page.

1 Like