Search Unity

  1. Welcome to the Unity Forums! Please take the time to read our Code of Conduct to familiarize yourself with the forum rules and how to post constructively.
  2. We have updated the language to the Editor Terms based on feedback from our employees and community. Learn more.
    Dismiss Notice
  3. Join us on November 16th, 2023, between 1 pm and 9 pm CET for Ask the Experts Online on Discord and on Unity Discussions.
    Dismiss Notice

I have a bug with the Sprite Editor

Discussion in 'Editor & General Support' started by Djfeeler, Sep 7, 2019.

  1. Djfeeler

    Djfeeler

    Joined:
    Oct 11, 2014
    Posts:
    17
    Hello,

    I have a bug with the Sprite Editor, When I want open the Sprite Edior a have this message "No Sprite Editor Window Registered. Please Dowload 2D Sprite PAckkage from Package Manager" When I go in the package manager i have the 2D Sprite Editor installed.

    I do not understand why it does not work.


    Help me thank you in advance.
     
  2. Djfeeler

    Djfeeler

    Joined:
    Oct 11, 2014
    Posts:
    17
    This is a bug because I opened the project with an old version of Unity and the window opens. I reported the bug via the form.
     
  3. Djfeeler

    Djfeeler

    Joined:
    Oct 11, 2014
    Posts:
    17
    I found the solution : in the folder Package in 2019.2.4.1, I have this in manifest.json :

    Code (csharp):
    1.  
    2. {
    3.   "dependencies": {
    4.     "com.unity.collab-proxy": "1.2.16",
    5.     "com.unity.ext.nunit": "1.0.0",
    6.     "com.unity.ide.rider": "1.1.0",
    7.     "com.unity.ide.vscode": "1.1.0",
    8.     "com.unity.package-manager-ui": "2.2.0",
    9.     "com.unity.test-framework": "1.0.13",
    10.     "com.unity.textmeshpro": "2.0.1",
    11.     "com.unity.timeline": "1.1.0",
    12.     "com.unity.ugui": "1.0.0",
    13.     "com.unity.modules.ai": "1.0.0",
    14.     "com.unity.modules.androidjni": "1.0.0",
    15.     "com.unity.modules.animation": "1.0.0",
    16.     "com.unity.modules.assetbundle": "1.0.0",
    17.     "com.unity.modules.audio": "1.0.0",
    18.     "com.unity.modules.cloth": "1.0.0",
    19.     "com.unity.modules.director": "1.0.0",
    20.     "com.unity.modules.imageconversion": "1.0.0",
    21.     "com.unity.modules.imgui": "1.0.0",
    22.     "com.unity.modules.jsonserialize": "1.0.0",
    23.     "com.unity.modules.particlesystem": "1.0.0",
    24.     "com.unity.modules.physics": "1.0.0",
    25.     "com.unity.modules.physics2d": "1.0.0",
    26.     "com.unity.modules.screencapture": "1.0.0",
    27.     "com.unity.modules.terrain": "1.0.0",
    28.     "com.unity.modules.terrainphysics": "1.0.0",
    29.     "com.unity.modules.tilemap": "1.0.0",
    30.     "com.unity.modules.ui": "1.0.0",
    31.     "com.unity.modules.uielements": "1.0.0",
    32.     "com.unity.modules.umbra": "1.0.0",
    33.     "com.unity.modules.unityanalytics": "1.0.0",
    34.     "com.unity.modules.unitywebrequest": "1.0.0",
    35.     "com.unity.modules.unitywebrequestassetbundle": "1.0.0",
    36.     "com.unity.modules.unitywebrequestaudio": "1.0.0",
    37.     "com.unity.modules.unitywebrequesttexture": "1.0.0",
    38.     "com.unity.modules.unitywebrequestwww": "1.0.0",
    39.     "com.unity.modules.vehicles": "1.0.0",
    40.     "com.unity.modules.video": "1.0.0",
    41.     "com.unity.modules.vr": "1.0.0",
    42.     "com.unity.modules.wind": "1.0.0",
    43.     "com.unity.modules.xr": "1.0.0"
    44.   }
    45. }
    46.  
    and I have this an older version :

    Code (csharp):
    1.  
    2. {
    3.   "dependencies": {
    4.     "com.unity.2d.sprite": "1.0.0",
    5.     "com.unity.2d.tilemap": "1.0.0",
    6.     "com.unity.collab-proxy": "1.2.16",
    7.     "com.unity.ext.nunit": "1.0.0",
    8.     "com.unity.ide.rider": "1.1.0",
    9.     "com.unity.ide.vscode": "1.1.0",
    10.     "com.unity.multiplayer-hlapi": "1.0.2",
    11.     "com.unity.package-manager-ui": "2.2.0",
    12.     "com.unity.test-framework": "1.0.13",
    13.     "com.unity.textmeshpro": "2.0.1",
    14.     "com.unity.timeline": "1.1.0",
    15.     "com.unity.ugui": "1.0.0",
    16.     "com.unity.xr.legacyinputhelpers": "2.0.2",
    17.     "com.unity.modules.ai": "1.0.0",
    18.     "com.unity.modules.androidjni": "1.0.0",
    19.     "com.unity.modules.animation": "1.0.0",
    20.     "com.unity.modules.assetbundle": "1.0.0",
    21.     "com.unity.modules.audio": "1.0.0",
    22.     "com.unity.modules.cloth": "1.0.0",
    23.     "com.unity.modules.director": "1.0.0",
    24.     "com.unity.modules.imageconversion": "1.0.0",
    25.     "com.unity.modules.imgui": "1.0.0",
    26.     "com.unity.modules.jsonserialize": "1.0.0",
    27.     "com.unity.modules.particlesystem": "1.0.0",
    28.     "com.unity.modules.physics": "1.0.0",
    29.     "com.unity.modules.physics2d": "1.0.0",
    30.     "com.unity.modules.screencapture": "1.0.0",
    31.     "com.unity.modules.terrain": "1.0.0",
    32.     "com.unity.modules.terrainphysics": "1.0.0",
    33.     "com.unity.modules.tilemap": "1.0.0",
    34.     "com.unity.modules.ui": "1.0.0",
    35.     "com.unity.modules.uielements": "1.0.0",
    36.     "com.unity.modules.umbra": "1.0.0",
    37.     "com.unity.modules.unityanalytics": "1.0.0",
    38.     "com.unity.modules.unitywebrequest": "1.0.0",
    39.     "com.unity.modules.unitywebrequestassetbundle": "1.0.0",
    40.     "com.unity.modules.unitywebrequestaudio": "1.0.0",
    41.     "com.unity.modules.unitywebrequesttexture": "1.0.0",
    42.     "com.unity.modules.unitywebrequestwww": "1.0.0",
    43.     "com.unity.modules.vehicles": "1.0.0",
    44.     "com.unity.modules.video": "1.0.0",
    45.     "com.unity.modules.vr": "1.0.0",
    46.     "com.unity.modules.wind": "1.0.0",
    47.     "com.unity.modules.xr": "1.0.0"
    48.   }
    49. }
    50.  
    A lot of things are missing in the new version of the project. I just replaced the code in the news and everything works.