Added more notes to GUI, with some specifics for icon requirements and how the basic view will be. Very terse at the moment. Added default asset cache locations for iOS: the app's resources/data folder and the app's Documents folder.

master
kts 2015-03-02 03:25:39 -08:00
parent ba6d8e21c8
commit 5b5a1276cf
1 changed files with 5 additions and 0 deletions

View File

@ -87,6 +87,11 @@ int Core::initSystem() {
asset_manager->addCache(new AssetCache(android_app_dir.c_str()));
// Load in the application's RW external location
asset_manager->addCache(new AssetCache(android_ext_dir.c_str()));
#elif __IPHONEOS__
// Use the built-in resources directory (read-only)
asset_manager->addCache(new AssetCache("data"));
// prefer the sandbox's Documents folder
asset_manager->addCache(new AssetCache("../Documents"));
#else
asset_manager->addCache(new AssetCache("data"));
#endif