test hub improvements, new test portal, test save objects, added package with animations (Magical Knight)
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user