test hub improvements, new test portal, test save objects, added package with animations (Magical Knight)

This commit is contained in:
2025-09-24 15:21:20 +02:00
parent 707eb89cf7
commit fd92b30ed3
593 changed files with 210997 additions and 132 deletions

View File

@@ -12,14 +12,15 @@ namespace Beyond
public List<LevelData> LevelDataList => _levelData;
public LevelData GetData(string levelName)
public LevelData GetData(string displayName)
{
return _levelData.FirstOrDefault(x => x.LevelName == levelName);
return _levelData.FirstOrDefault(x => x.LevelNameToDisplay == displayName);
}
public List<string> GetAllLevelNames()
{
return _levelData.Select(x => x.LevelName).ToList();
return _levelData.Select(x => x.LevelNameToDisplay).ToList();
}
}