exSpriteAnimationDB.DBExists C# (CSharp) Метод

DBExists() публичный статический Метод

public static DBExists ( ) : bool
Результат bool
    public static bool DBExists()
    {
        dbPath = EditorPrefs.GetString( dbKey, dbPath );
        FileInfo fileInfo = new FileInfo(dbPath);
        return fileInfo.Exists;
    }