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

@@ -147,7 +147,7 @@ namespace Beyond
public float sceneDependantFaithRegenMultiplier = 1f, faithRegenMultiplier = 1f;
private float healthBaseMaxValue = 200;
private float healthBaseRegenValue = 1;
private float healthBaseRegenValue = 0f;
private float staminaBaseMaxValue = 200;
private float staminaBaseRegenValue = 1.2f;
private float faithBaseMaxValue = 100f;

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: cdf9f4e21f8ed451b9c0b9a17fc96856
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 9464287b94b5e45729dabb38c5ab9f76
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: f099871cea5a44752933795aa0536dc9
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

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();
}
}