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.
parent
ba6d8e21c8
commit
5b5a1276cf
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue