You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
530 B
23 lines
530 B
using UnityEngine; |
|
|
|
namespace UnityEditor.U2D.Sprites |
|
{ |
|
internal interface IAssetDatabase |
|
{ |
|
string GetAssetPath(Object o); |
|
AssetImporter GetAssetImporterFromPath(string path); |
|
} |
|
|
|
internal class AssetDatabaseSystem : IAssetDatabase |
|
{ |
|
public string GetAssetPath(Object o) |
|
{ |
|
return AssetDatabase.GetAssetPath(o); |
|
} |
|
|
|
public AssetImporter GetAssetImporterFromPath(string path) |
|
{ |
|
return AssetImporter.GetAtPath(path); |
|
} |
|
} |
|
}
|
|
|