不会修(new test beatmap(no stressful text :D))

This commit is contained in:
2025-05-04 14:09:02 +08:00
parent 90797bd760
commit 95e49cb499
8 changed files with 222966 additions and 993 deletions

View File

@@ -1,5 +1,6 @@
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using Ichni.RhythmGame;
using Ichni.RhythmGame.Beatmap;
using UnityEngine;
@@ -136,13 +137,11 @@ namespace Ichni.Editor
if (gameElement.childElementList != null)
{
for (int i = 0; i < gameElement.childElementList.Count; i++)
foreach (GameElement Element in gameElement.childElementList.Where(x => !pastedElementList.Contains(x)))
{
if (!pastedElementList.Contains(gameElement.childElementList[i]))
{
AffiliatedPaste(gameElement.childElementList[i], pastedElement);
}
AffiliatedPaste(Element, pastedElement);
}
}
}
}