Search Unity

  1. Unity Asset Manager is now available in public beta. Try it out now and join the conversation here in the forums.
    Dismiss Notice

Project upgrade to 2019, error, how to roll back to the version before upgrade

Discussion in '2019.3 Beta' started by unity3dxiaoyu, May 22, 2019.

  1. unity3dxiaoyu

    unity3dxiaoyu

    Joined:
    Jun 5, 2018
    Posts:
    10
    My project was upgraded from 2018.3 to 2019.3, and an error occurred after the upgrade. How to rollback to the version before the upgrade? The version before the upgrade is 2018.3, thank you
     
    Last edited: May 22, 2019
  2. M_R

    M_R

    Joined:
    Apr 15, 2015
    Posts:
    559
    you can't.
    always make backups before upgrading (or better, use version control).
    especially to an alpha version...

    you can try to make a new project, then manually copy your assets (keep the .meta files) but there is no guarantee it will work.
     
  3. unity3dxiaoyu

    unity3dxiaoyu

    Joined:
    Jun 5, 2018
    Posts:
    10
    ……
     
  4. unity3dxiaoyu

    unity3dxiaoyu

    Joined:
    Jun 5, 2018
    Posts:
    10
    Can I return my project to any version of 2018? thank you
     
  5. brunocoimbra

    brunocoimbra

    Joined:
    Sep 2, 2015
    Posts:
    679
    No, you can't go back to any version prior the one you are using, when making the upgrade there is a warning that you should make a backup.
     
  6. Deleted User

    Deleted User

    Guest

    So, you upgraded your project but you didn't keep a copy of it before? I guess you learnt your lesson.

    Now, what about fixing the error?
     
  7. Mullan7

    Mullan7

    Joined:
    May 23, 2013
    Posts:
    79
    It is possible to downgrade but might break some of your stuff. Just open the project in the older version and see what happens. You will probably have to edit your package manifest and maybe delete your library folder and projectsettings but it should work.
     
  8. Joe-Censored

    Joe-Censored

    Joined:
    Mar 26, 2013
    Posts:
    11,847
    That can sometimes work, and just depends on the file changes Unity made between Unity versions.
     
  9. 5argon

    5argon

    Joined:
    Jun 10, 2013
    Posts:
    1,555
    There is a big scene serialization change in 2018.3 -> 2019.1. I screwed up before when I thought my plugin that was quite neutral could go back and forth between versions safely, but I forgot I have a demo scene. 2017.1 <-> 2018.3 is relatively more possible to up-downgrade, as long as I touch the scene only in 2017.1. Try looking in your source control if there is a diff in your .unity files or not. And when changing version backwards always delete your Library and Packages.

    Try use a branch feature in version control when you are going to upgrade and keep your master in the past. If you upgraded successfully, don't merge yet until that version come out of beta. When you find a blocker after working quite a lot you could go back to master and work on other things that is not conflicting with what you already worked on in the future version, then later you could merge.