Enum StorageType
- Namespace
- easyar
- Assembly
- EasyAR.Sense.dll
StorageType indicates where images, json files, videos, or other files are stored. StorageType specifies the root directory where files are stored. You can use relative paths from this root directory in all related interfaces.
public enum StorageType
Fields
App = 0app path Android: application `persistent data directory <https://developer.android.google.cn/reference/android/content/pm/ApplicationInfo.html#dataDir>`__ iOS: application sandbox directory Windows: executable file (exe) directory Mac: executable file directory (if the app is a bundle, this directory is inside the bundle)
Assets = 1assets path Android: assets directory (inside apk) iOS: executable file directory Windows: directory containing EasyAR.dll Mac: directory containing libEasyAR.dylib **Note:** *If you are using Unity3D, this path is different. In Unity3D, it points to the StreamingAssets directory.*
Absolute = 2Absolute path (json/image path or video file path) or URL (video files only)