2025-01-27 22:11:24 -05:00
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace Ichni.RhythmGame
|
|
|
|
|
{
|
|
|
|
|
public class NoteJudgeSubmodule : SubmoduleBase
|
|
|
|
|
{
|
2025-02-06 23:01:44 -05:00
|
|
|
public List<NoteJudgeUnit> judgeUnitList;
|
|
|
|
|
|
2025-01-30 22:45:33 -05:00
|
|
|
public NoteJudgeSubmodule(BaseElement attachedElement) : base(attachedElement)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
2025-02-06 23:01:44 -05:00
|
|
|
|
|
|
|
|
public override void SaveBM()
|
|
|
|
|
{
|
|
|
|
|
matchedBM = new Beatmap.NoteJudgeSubmodule_BM(attachedElement);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace Beatmap
|
|
|
|
|
{
|
|
|
|
|
public class NoteJudgeSubmodule_BM : Submodule_BM
|
|
|
|
|
{
|
|
|
|
|
public List<NoteJudgeUnit> judgeUnitList;
|
|
|
|
|
|
|
|
|
|
public NoteJudgeSubmodule_BM()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public NoteJudgeSubmodule_BM(BaseElement attachedElement) : base(attachedElement)
|
|
|
|
|
{
|
|
|
|
|
judgeUnitList = new List<NoteJudgeUnit>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void ExecuteBM()
|
|
|
|
|
{
|
|
|
|
|
attachedElement = GetElement(attachedElementGuid);
|
|
|
|
|
//(attachedElement as NoteElement).noteJudgeSubmodule = new NoteJudgeSubmodule(attachedElement);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void DuplicateBM(BaseElement attached)
|
|
|
|
|
{
|
|
|
|
|
//(attached as NoteElement).noteJudgeSubmodule = new NoteJudgeSubmodule(attached);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-27 22:11:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class NoteJudgeUnit
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|