I have an issue where if I have a struct A that contains a struct B and I want A to implement a custom NetSerialize function I am forced to implement a custom NetSerialize function for B. This can get extremely burdensome for deeply nested struct properties and can lead to having to implement ‘dumb’ NetSerialize functions for multiple levels of simple structures just because we need some minor functionality on the top level.
Does anyone one know of a simple generic NetSerialize function/helper that can take a UStruct and NetSerialize parameters and do a generic property NetSerialize?