exSpriteAnimationDB.DBExists C# (CSharp) Méthode

DBExists() public static méthode

public static DBExists ( ) : bool
Résultat bool
    public static bool DBExists()
    {
        dbPath = EditorPrefs.GetString( dbKey, dbPath );
        FileInfo fileInfo = new FileInfo(dbPath);
        return fileInfo.Exists;
    }