Search Unity

how can i download the changed assets from remote server in advance?

Discussion in 'Addressables' started by Marks001, Jun 12, 2019.

  1. Marks001

    Marks001

    Joined:
    Dec 11, 2014
    Posts:
    27
    Hi, Is any way t download the changed assets from remote server when app lanuched? Thanks.
     
  2. cjdbeans

    cjdbeans

    Joined:
    Jun 29, 2017
    Posts:
    8
    I use DownloadDependenciesAsync for this. I apply a label to assets that I want to have downloaded before my game becomes interactive and use that label with this method (only allowing my game to finish it's init sequence on completion of this method)
     
  3. Marks001

    Marks001

    Joined:
    Dec 11, 2014
    Posts:
    27
    Thank you for your reply! I dont mean preload same known assets, i want to know which assets have changed, and pre update them from remote to local cache, then i can load it directly from the cache, no need to wait for download while using.
     
  4. Favo-Yang

    Favo-Yang

    Joined:
    Apr 4, 2011
    Posts:
    464
  5. Marks001

    Marks001

    Joined:
    Dec 11, 2014
    Posts:
    27
    @Favo Thank you, i see.