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

Question Missing package files in Package "directory"

Discussion in 'Package Manager' started by aiden-loroco, Nov 18, 2022.

  1. aiden-loroco

    aiden-loroco

    Joined:
    Nov 1, 2022
    Posts:
    2
    I have installed the "Universal RP" package to my project, and it's present in my manifest.json and package manager ui (see below), but there is no entry for "Universal RP" in the "Packages" drop down under the editor's Project panel:

    upload_2022-11-18_14-29-26.png

    There are also other Package files missing. I've tried reimporting all the packages and refreshing the view, closing and reopening the editor, but nothing seems to work. Note that the project is working correctly and the dependencies I've loaded that are missing in the Packages tree are also working.

    manifest.json:
    Code (JavaScript):
    1. {
    2.   "dependencies": {
    3.     "com.cysharp.unitask": "https://github.com/Cysharp/UniTask.git?path=src/UniTask/Assets/Plugins/UniTask",
    4.     "com.siccity.gltfutility": "https://github.com/siccity/gltfutility.git",
    5.     "com.unity.collab-proxy": "1.17.2",
    6.     "com.unity.ide.rider": "3.0.15",
    7.     "com.unity.ide.visualstudio": "2.0.16",
    8.     "com.unity.ide.vscode": "1.2.5",
    9.     "com.unity.render-pipelines.universal": "12.1.7",
    10.     "com.unity.shadergraph": "12.1.7",
    11.     "com.unity.test-framework": "1.1.31",
    12.     "com.unity.textmeshpro": "3.0.6",
    13.     "com.unity.timeline": "1.6.4",
    14.     "com.unity.ugui": "1.0.0",
    15.     "com.unity.ui.builder": "2.0.0",
    16.     "com.unity.vectorgraphics": "2.0.0-preview.20",
    17.     "jp.keijiro.metamesh": "1.0.1",
    18.     "com.unity.modules.ai": "1.0.0",
    19.     "com.unity.modules.androidjni": "1.0.0",
    20.     "com.unity.modules.animation": "1.0.0",
    21.     "com.unity.modules.assetbundle": "1.0.0",
    22.     "com.unity.modules.audio": "1.0.0",
    23.     "com.unity.modules.cloth": "1.0.0",
    24.     "com.unity.modules.director": "1.0.0",
    25.     "com.unity.modules.imageconversion": "1.0.0",
    26.     "com.unity.modules.imgui": "1.0.0",
    27.     "com.unity.modules.jsonserialize": "1.0.0",
    28.     "com.unity.modules.particlesystem": "1.0.0",
    29.     "com.unity.modules.physics": "1.0.0",
    30.     "com.unity.modules.physics2d": "1.0.0",
    31.     "com.unity.modules.screencapture": "1.0.0",
    32.     "com.unity.modules.terrain": "1.0.0",
    33.     "com.unity.modules.terrainphysics": "1.0.0",
    34.     "com.unity.modules.tilemap": "1.0.0",
    35.     "com.unity.modules.ui": "1.0.0",
    36.     "com.unity.modules.uielements": "1.0.0",
    37.     "com.unity.modules.umbra": "1.0.0",
    38.     "com.unity.modules.unityanalytics": "1.0.0",
    39.     "com.unity.modules.unitywebrequest": "1.0.0",
    40.     "com.unity.modules.unitywebrequestassetbundle": "1.0.0",
    41.     "com.unity.modules.unitywebrequestaudio": "1.0.0",
    42.     "com.unity.modules.unitywebrequesttexture": "1.0.0",
    43.     "com.unity.modules.unitywebrequestwww": "1.0.0",
    44.     "com.unity.modules.vehicles": "1.0.0",
    45.     "com.unity.modules.video": "1.0.0",
    46.     "com.unity.modules.vr": "1.0.0",
    47.     "com.unity.modules.wind": "1.0.0",
    48.     "com.unity.modules.xr": "1.0.0"
    49.   },
    50.   "scopedRegistries": [
    51.     {
    52.       "name": "Keijiro",
    53.       "url": "https://registry.npmjs.com",
    54.       "scopes": [
    55.         "jp.keijiro"
    56.       ]
    57.     }
    58.   ]
    59. }
    60.  
     
  2. Adrian

    Adrian

    Joined:
    Apr 5, 2008
    Posts:
    1,051
    Deactivate the rightmost button int he project window's toolbar with the crossed-out eye to show all hidden packages.

    I'm not actually sure what determines visibility. There's a property that can be set in the
    package.json
    but none of the always visible packages set it.
     
    aiden-loroco likes this.
  3. aiden-loroco

    aiden-loroco

    Joined:
    Nov 1, 2022
    Posts:
    2
    Wonderful, thank you!