I’m looking to remove a collection loaded via a proxy from the initially-loaded set of data, and load it with Live Update, to keep the initial download size below the threshold required for a web platform (HTML5 build)
Using the Zip → Save in Bundle Folder option works great, as the zip file is included in the final build folder. I can upload the whole folder, and trivially mount the zip file with liveupdate.add_mount(). Here’s what that looks like (screenshot of a modified version of a defold/examples project that I’m using for testing):
Ideally, I’d do the same for other build targets, to avoid having two different versions of the collections file (one version with a proxy marked ‘excluded’). However, bundling e.g. a Mac version , the file is excluded. I’m guessing this is because there’s an additional bundling step? Can I force it to be included somehow?


