public bool Contains(string path, ResourceType type) { if (IsLoadedExist(path, type) == true) { return(true); } BaseLoader loader = null; if (_dictLoader.TryGetValue(path, out loader) == true) { return(true); } return(loader.Contains(path)); }