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

How to install Addressable package?

Discussion in 'Addressables' started by DJSvist, Jul 17, 2018.

  1. DJSvist

    DJSvist

    Joined:
    Jan 11, 2015
    Posts:
    4
    Hello. I use Unity 2018.2 How to install addressable asset system? Why i dont have it in Package Manager?
     

    Attached Files:

  2. Allan-Smith

    Allan-Smith

    Joined:
    Feb 7, 2012
    Posts:
    57
    Contrary to what has been told, you still need to alter your manifest file:

    Code (CSharp):
    1. Step 2: Edit your Packages/manifest.json.
    2. {
    3.     "dependencies": {
    4.         "com.unity.addressables": "0.1.2-preview"
    5.     }
    6. }
     
  3. DJSvist

    DJSvist

    Joined:
    Jan 11, 2015
    Posts:
    4
    Thanks!
     
  4. DanVioletSagmiller

    DanVioletSagmiller

    Joined:
    Aug 26, 2010
    Posts:
    203
    As an update for people running into the problem now, the product is still in preview, 0.86 at this time. I had to go to advanced and turn on preview packages, from the packages window.
     
  5. JonathanBartel

    JonathanBartel

    Joined:
    Jun 24, 2019
    Posts:
    45
    I'm fairly new to Unity and I've been searching all morning for this answer. You're a hero.