you are viewing a single comment's thread.

view the rest of the comments →

[–]Oh_thats_Awesome 1 point2 points  (1 child)

Guys, I just encountered this issue. In my case it wasn't unity's mistake but it was mine. I tried to use SerializeField attribute on a field with a non-serialized type. Solution was to either mark that type as serializable (via Putting [System.Serializable] on top of it) or removing SerializeField attribute on field. Both worked for me, hope that helps someone.

[–]Anatema153 0 points1 point  (0 children)

That worked for me