Tuesday, May 9, 2023
1 change · master
Code cleanup and technical improvements
Web editor-generated custom asset links now use a clearer URL structure that makes them immediately recognizable as custom assets. This helps teams debug asset issues more easily and may improve performance when many custom assets are used in one bundle.
Original PR description
This pr is a part of 116700 Before this commit an ir_assets generated automaticaly by the web editor will generate an url ending with ...custom.addon.bundle_name.ext After this commit the url will start with /_custom/addon.bundle_name/... This will make it easier to spot immediately if it is a custom asset and thus it is useless to apply the glob. Actually, it will fail on the /_custom when trying to glob, making it faster. This is mainly useful to clarify and debug, but in a case with many customized ir_asset for one bundle, it may have an impact on speed. An upgrade script was created for this change.