Skip to content

Commit 00e4b1e

Browse files
author
nullpon
committed
fix アーク関係動いた!
1 parent 1dc1762 commit 00e4b1e

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

NoteMode/HarmonyPatches/BeatmapDataTransformHelper.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ private static void Prefix(ref IReadonlyBeatmapData beatmapData)
3737
if (conf.noArrow || conf.oneColorRed || conf.oneColorBlue)
3838
{
3939
SliderData sliderDataAny = SliderUtil.CreateAnySliderData(noteData, nextNoteData, noteData.colorType);
40-
copy.AddBeatmapObjectData(sliderDataAny);
40+
copy.AddBeatmapObjectDataInOrder(sliderDataAny);
4141
}
4242
else
4343
{
4444
if (nextNoteData.cutDirection != NoteCutDirection.Any && noteData.colorType == nextNoteData.colorType)
4545
{
4646
SliderData sliderData = SliderUtil.CreateSliderData(noteData, nextNoteData, noteData.colorType);
47-
copy.AddBeatmapObjectData(sliderData);
47+
copy.AddBeatmapObjectDataInOrder(sliderData);
4848
}
4949
}
5050
}
@@ -55,7 +55,7 @@ private static void Prefix(ref IReadonlyBeatmapData beatmapData)
5555
if (burstSliderData != null)
5656
{
5757
noteData.ChangeToBurstSliderHead();
58-
copy.AddBeatmapObjectData(burstSliderData);
58+
copy.AddBeatmapObjectDataInOrder(burstSliderData);
5959
}
6060
}
6161

NoteMode/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("0.2.7")]
36-
[assembly: AssemblyFileVersion("0.2.7")]
35+
[assembly: AssemblyVersion("0.3.0")]
36+
[assembly: AssemblyFileVersion("0.3.0")]

NoteMode/Views/SettingTabViewsController.bsml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
<modifier value='oneColorBlue' apply-on-change='true' source='NoteMode.Resource.OneColorBlue.png' text='One Color Blue' hover-hint='[Disable Score] Change All red notes to blue.'></modifier>
1515
</vertical>
1616
<vertical child-control-height='false' child-expand-height='false' child-control-width='false' child-expand-width='false'>
17-
<!-- <modifier value='arcMode' apply-on-change='true' source='NoteMode.Resource.arcMode.png' text='All Arc Mode' hover-hint='[Disable Score] Add arc for all notes.'></modifier> -->
18-
<!-- <modifier value='restrictedArcMode' apply-on-change='true' source='NoteMode.Resource.arcMode.png' text='Restricted Arc Mode' hover-hint='[Disable Score] Add arc for same color notes.'></modifier> -->
17+
<modifier value='arcMode' apply-on-change='true' source='NoteMode.Resource.arcMode.png' text='All Arc Mode' hover-hint='[Disable Score] Add arc for all notes.'></modifier>
18+
<modifier value='restrictedArcMode' apply-on-change='true' source='NoteMode.Resource.arcMode.png' text='Restricted Arc Mode' hover-hint='[Disable Score] Add arc for same color notes.'></modifier>
1919
<modifier value='allBurstSliderHead' apply-on-change='true' source='NoteMode.Resource.allBurstSliderHead.png' text='All Notes BurstSliderHead' hover-hint='[Disable Score] Change All notes burst slider head.'></modifier>
20-
<!-- <modifier value='changeChainNotes' apply-on-change='true' source='NoteMode.Resource.changeChainNotes.png' text='Change Chain Notes(Beta)' hover-hint='[Disable Score] In the middle of both sides, change to chain notes for down and up.'></modifier> -->
20+
<modifier value='changeChainNotes' apply-on-change='true' source='NoteMode.Resource.changeChainNotes.png' text='Change Chain Notes(Beta)' hover-hint='[Disable Score] In the middle of both sides, change to chain notes for down and up.'></modifier>
2121
</vertical>
2222
<vertical child-control-height='false' child-expand-height='false' child-control-width='false' child-expand-width='false'>
2323
<modifier value='noNotesBomb' apply-on-change='true' source='NoteMode.Resource.noNotes.png' text='Remove Notes Bomb' hover-hint='[Disable Score] Remove all notes and bomb.'></modifier>

NoteMode/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"id": "NoteMode",
44
"name": "NoteMode",
55
"author": "nullponvr",
6-
"version": "0.2.7",
6+
"version": "0.3.0",
77
"description": "NoteMode Modifiers",
88
"gameVersion": "1.30.2",
99
"dependsOn": {

0 commit comments

Comments
 (0)