Way to check which assets were embedded/preloaded?

Once an OpenFL app starts up and has been running for a while, is there a way to tell which assets were marked with “embedded=true” and preloaded on start? The Assets.isLocal function just returns whether or not an asset has a key registered in the cache.

You’re looking for the static list method: https://api.openfl.org/openfl/utils/Assets.html#list

Excellent. Thank you!

Actually, it looks like it still checks against the AssetLibrary’s existing cache.

Ah, it looks like AssetLibrary has a preload string map I can expose. I shall try that.