public bool CanLoad(string path)
 {
     return
         (Assets.GetType(AssetPath.GetExtension(path)) != null &&
          m_fileStore.FileExists(path));
 }
Beispiel #2
0
 public static TextAsset Get(string path)
 {
     return(Assets.Get <TextAsset>(path));
 }