Question by
Max-Pixel · Jul 01, 2020 at 12:14 AM ·
assetbundlecaching
How can I cache an Addressable without loading it?
Scenario: An Addressable .bundle
file is hosted on a server.
Goals:
Download the Addressable to the local cache, so that it will be available to load later without needing to contact the server.
Do not Load the Addressable into memory.
Addressables.Load*
downloads the file and places it in the cache, but also loads it into memory. How can I accomplish the former without the latter?
Comment