Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Resolved What is the Package Manager URL for the Input System releases?

Discussion in 'Input System' started by pitchblende, Aug 26, 2021.

  1. pitchblende

    pitchblende

    Joined:
    Jan 9, 2020
    Posts:
    71
  2. pitchblende

    pitchblende

    Joined:
    Jan 9, 2020
    Posts:
    71
    Found it, by guesswork:

    Add package from git URL: "com.unity.inputsystem@1.1.0-pre.6"
     
  3. pitchblende

    pitchblende

    Joined:
    Jan 9, 2020
    Posts:
    71
    For version 1.1.1, use: "com.unity.inputsystem@1.1.1"
     
  4. pitchblende

    pitchblende

    Joined:
    Jan 9, 2020
    Posts:
    71
    For some reason, this doesn't work for version 1.3.0:

    "com.unity.inputsystem@1.3.0"

    Any idea how to install this release?
     
    daydayup181 likes this.
  5. It's probably not in the UPM catalog yet (I assume they are running the tests after release from github). And holidays and vacations happened in the mean time.
    What you can do, if you don't want to wait, is that you uninstall the input system from the Package Manager, download the source from the link you provided, and simply copy the
    InputSystem-1.3.0.zip\InputSystem-1.3.0\Packages\com.unity.inputsystem
    folder into the
    Packages
    folder in your project. Only the
    com.unity.inputsystem
    folder on the above path inside the compressed file you downloaded. It will add the 1.3.0 as a local package. You won't be able to update it later, but when they release it, you delete the local package and install it properly in the Package Manager again.
     
  6. KurtGokhan

    KurtGokhan

    Joined:
    Jan 16, 2013
    Posts:
    37
    You can add following code to your
    manifest.json
    if you are desparate to get 1.3.0. For me, it resolved a lot of problems in tests.

    Code (JavaScript):
    1. "com.unity.inputsystem": "https://github.com/Unity-Technologies/InputSystem.git?path=/Packages/com.unity.inputsystem#1.3.0",
     
    Dalton-Lima and pitchblende like this.
  7. pitchblende

    pitchblende

    Joined:
    Jan 9, 2020
    Posts:
    71
  8. You can simply remove the current InputSystem version from the PackageManager and add the URL @KurtGokhan provided through
    Package Manager / + / Add package from git URL
    too.
     
    pitchblende likes this.
  9. pitchblende

    pitchblende

    Joined:
    Jan 9, 2020
    Posts:
    71
    That was a nice one-shot way to do it in the end - thanks.
     
  10. + @KurtGokhan
    1.3.0 became available in the UPM catalog, you can install it through the 'Add package by name' function (2021+): name:
    com.unity.inputsystem
    , version:
    1.3.0
    and hit the 'Add' button. You don't have to uninstall the git version before, it should automatically update it.
     
    MousePods likes this.
  11. KurtGokhan

    KurtGokhan

    Joined:
    Jan 16, 2013
    Posts:
    37
    That is nice to know.