예제 #1
0
 public override bool LoadWordListFile(string path, VuforiaUnity.StorageType storageType)
 {
     path = VuforiaRuntimeUtilities.GetStoragePath(path, storageType);
     return(VuforiaWrapper.Instance.WordListLoadWordList(path, (int)storageType) == 1);
 }
예제 #2
0
 public override int AddWordsFromFile(string path, VuforiaUnity.StorageType storageType)
 {
     path = VuforiaRuntimeUtilities.GetStoragePath(path, storageType);
     return(VuforiaWrapper.Instance.WordListAddWordsFromFile(path, (int)storageType));
 }
예제 #3
0
 internal static bool ExistsImpl(string path, VuforiaUnity.StorageType storageType)
 {
     path = VuforiaRuntimeUtilities.GetStoragePath(path, storageType);
     return(VuforiaWrapper.Instance.DataSetExists(path, (int)storageType) == 1);
 }