I am using a ScriptableObject class for an object that I don’t want to be attached to a GameObject in the scene. Some fields change on objects of this type during gameplay, and then persist over different launches of the game, or loads of the level, and I don’t want that!
The members that are being serialized are private and are marked as [System.NonSerialized], but the behavior persists. What else can I do to prevent this from happening?