Merge pull request #465 from minenice55/dont_infer_track

Don't infer the track field when importing converted v0 riq coming from unknown origin
This commit is contained in:
minenice55 2023-06-11 19:53:47 +00:00 committed by GitHub
commit 743e954e05
1 changed files with 11 additions and 0 deletions

View File

@ -166,6 +166,13 @@ namespace HeavenStudio
var parameters = new List<Minigames.Param>();
foreach (var item in e.dynamicData)
{
Debug.Log($"k: {item.Key}, v: {item.Value}");
if (item.Key == "track")
continue;
if (item.Value == null)
{
e[item.Key] = 0;
}
var value = item.Value;
if (value.GetType() == typeof(long))
value = new EntityTypes.Integer(int.MinValue, int.MaxValue, (int)value);
@ -245,6 +252,10 @@ namespace HeavenStudio
{
PreProcessSpecialEntity(tempo, tempoChangeModel);
}
if (data.tempoChanges[0]["tempo"] <= 0)
{
data.tempoChanges[0]["tempo"] = 120;
}
foreach (var vol in data.volumeChanges)
{