Hi,
I’m trying to move some of my app assets (images and image sheets) to a remote downloadable zip files to reduce app size. However, I encountered an issue when trying to load image sheet files from documents directory on Apple devices. This is because the image sheet is accompanied by a lua file that describes its content. When it was in the app resource directory, using ‘require <module_name>’ would load it properly, but require doesn’t allow to load lua files from documents directory. Is there a convenient method to read and parse lua file from documents directory without using require?
Thanks
Adi