Unity Addressable Asset system | Addressables | 1.12.0
image/svg+xml
docs.unity.cn
  • Manual
  • Scripting API
  • Changelog
  • License
Addressables 1.12.0
    Show / Hide Table of Contents
    • Unity Addressable Asset system
      • Addressable Assets overview
        • Concepts
      • Getting started
        • Installing the Addressable Assets package
        • Preparing Addressable Assets
        • Using Addressable Assets
        • Build considerations
      • Addressable Assets development cycle
        • Traditional asset management
        • Addressable Asset management
        • Build scripts
        • Analysis and debugging
        • Initialization objects
        • Customizing URL Evaluation
        • Content update workflow
      • Addressable Assets profiles
        • Profile Setup
        • Specifying packing and loading paths
        • Examples
      • Asset Hosting Services
        • Overview
        • Setup
        • Custom services
      • Memory management
        • Mirroring load and unload
        • The Addressables Event Viewer
        • When is memory cleared?
      • Async operation handling
        • Type vs. typeless handles
        • Async​Operation​Handle use case examples
      • Custom operations
        • Creating custom operations
      • The Addressables Analyze tool
        • Using Analyze
        • Provided Analyze rules
        • Extending Analyze
      • Upgrading to the Addressables system
        • The direct reference method
        • The Resource folders method
        • The Asset​Bundles method
    • Manual
    • Unity Addressable Asset system

    Unity Addressable Asset system

    The Addressable Asset system provides an easy way to load assets by “address”. It handles asset management overhead by simplifying content pack creation and deployment.

    The Addressable Asset system uses asynchronous loading to support loading from any location with any collection of dependencies. Whether you use direct references, traditional asset bundles, or Resource folders for asset management, Addressable Assets provide a simpler way to make your game more dynamic.

    What is an asset?

    An asset is content that you use to create your game or app. Common examples of assets include Prefabs, textures, materials, audio clips, and animations.

    What is an Addressable Asset?

    Making an asset "Addressable" allows you to use that asset's unique address to call it from anywhere. Whether that asset resides in the local application or on a content delivery network, the Addressable Asset System locates and returns it. You can load a single Addressable Asset via its address, or load many Addressable Assets using a custom group label that you define.

    Why use Addressable Assets?

    Traditional means of structuring game assets make it challenging to efficiently load content. Addressables shorten your iteration cycles, allowing you to devote more time to designing, coding, and testing your application.

    • Iteration time: Referring to content by its address is extremely efficient. Optimizations to the content no longer require changes to your code.
    • Dependency management: The system returns all dependencies of the requested content, so that all meshes, shaders, animations, and so forth load before returning the content to you.
    • Memory management: The system unloads assets as well as loading them, counting references automatically and providing a robust profiler to help you spot potential memory problems.
    • Content packing: Because the system maps and understands complex dependency chains, it allows for efficient packing of bundles, even when moving or renaming assets. You can easily prepare assets for both local and remote deployment, to support downloadable content and reduced application size.
    • Profiles: The system allows you to create a set of string variables that more easily enables you to change how your content is built into bundles without modifying settings in multiple places.

    What about my existing game?

    The Addressable Asset System provides a migration path for upgrading, whether you use direct references, Resource folders, or asset bundles.

    In This Article
    • What is an asset?
    • What is an Addressable Asset?
    • Why use Addressable Assets?
    • What about my existing game?
    Back to top Copyright © 2020 Unity Technologies
    Generated by DocFX
    on 17 July 2020