I upgraded to the new source generator version of this and it is no longer valid to write a protobuf message for Unity engine types like Vector3.
//:namespace = UnityEngine
//:type = struct
//:external
message Vector3 {
optional float x = 1 [default = 0];
optional float y = 2 [default = 0];
optional float z = 3 [default = 0];
}
Unity does not use camel case for Vector3 fields so, after upgrading, there is no way to make this work because the source generator doesn't allow ConvertToCamelCase to be disabled and I can't go and change Unity builtin types.
I upgraded to the new source generator version of this and it is no longer valid to write a protobuf message for Unity engine types like
Vector3.Unity does not use camel case for
Vector3fields so, after upgrading, there is no way to make this work because the source generator doesn't allowConvertToCamelCaseto be disabled and I can't go and change Unity builtin types.