On the Official Unity Website (this article) they have a list of instructions for creating and persisting downloadable asset bundles on iOS devices. The following is an excerpt which arose some questions for me:
Please note: Any game scripts included in downloadable content must also be present in the main executable.
This post is the closest answer I kind find on the subject however shaders have dynamically executed code while animated assets and particles, to my knowledge, are executed from code already compiled within the Unity Game Engine.
Are particles, character animations and animated assets considered to be 'game scripts' by Apple? I would like to include these along with several static assets such as textures and meshes as downloadable content within my game.
Thank you.