I’m loading level data from .json
files. Here’s what the asset file hierarchy looks like:
Here’s what my Custom Resources
box looks like:
Everything under the images
directory is used in atlases or tilesources, so they don’t need to be included as custom resources. Everything under the levels
directory is loaded dynamically with sys.load_resource()
, so they do need to be included as custom resources.
If I keep Custom Resources path as assets
instead of assets/levels
, will the image data be doubly included in the application binary?