Cross Track Point和Trail的进一步制作,修复Duplicate的Guid Bug

Ctrl+M切摄像机
This commit is contained in:
SoulliesOfficial
2025-03-01 00:28:26 -05:00
parent 210e594808
commit 191be59c3d
33 changed files with 790 additions and 1604 deletions

View File

@@ -82,7 +82,7 @@ namespace Ichni.RhythmGame
public override GameElement DuplicateBM(GameElement parent)
{
return Flick.GenerateElement(elementName, elementGuid, tags, false, parent,
return Flick.GenerateElement(elementName, Guid.NewGuid(), tags, false, parent,
exactJudgeTime, availableFlickDirections);
}
}

View File

@@ -73,7 +73,7 @@ namespace Ichni.RhythmGame
public override GameElement DuplicateBM(GameElement parent)
{
return Stay.GenerateElement(elementName, elementGuid, tags, false, parent, exactJudgeTime);
return Stay.GenerateElement(elementName, Guid.NewGuid(), tags, false, parent, exactJudgeTime);
}
}
}

View File

@@ -89,7 +89,7 @@ namespace Ichni.RhythmGame
public override GameElement DuplicateBM(GameElement parent)
{
return Tap.GenerateElement(elementName, elementGuid, tags, false, parent, exactJudgeTime);
return Tap.GenerateElement(elementName, Guid.NewGuid(), tags, false, parent, exactJudgeTime);
}
}
}