Edits made to prefab do not persist when I edit it again,Changes made to prefab don't persist

  1. I click on the prefab and click “Open Prefab”
  2. I make an edit (for a scrollbar I change the scroll Direction)
  3. I click out of the editor
  4. I repeat step 1 again, and the edit I made in step 2 is not present! It’s reverted.

I didn’t do anything else. What is wrong with Unity?

Hello!

Fo some changes, you must “Update” your prefabs in scene. I can’t say what kind of changes are automatic and what kind are not… but i had to refresh it sometimes

unity

In inspector of the scene object click on Revert so it becomes identical to the prefab.

Bye!

Ok, I think the problem was that the things I was trying to change in the prefab actually was updated/changed by its script at runtime, so changing the prefab did nothing. I have to actually change it in my code to override their code.