mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-08 10:45:09 +00:00
don't infer track when importing a v0 riq from another program
This commit is contained in:
parent
5af551b32e
commit
8929cd5618
1 changed files with 11 additions and 0 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue