In my folder structure I have all code files in the root of the project and then I keep the audio and images in their own sub-folders. Now, I just opened my .ipa file after I compiled it and now all my image and audio files are in the same folder (root) but also in the folders I created when writing the code.
Why is that happening, why do I get a double set of files after compiling?
heres an example how I call an image;
local image = display.newImageRect("images/myImage.png", 100, 100);
image:setReferencePoint(display.CenterReferencePoint);
image.x = 200;
image.y = 200;
I want to avoid double sets of assents, is there a certain way of doing this?
David [import]uid: 34126 topic_id: 10519 reply_id: 310519[/import]