From f35bce9dbc1b2b4dd75286730e1d81d21c0d7f29 Mon Sep 17 00:00:00 2001 From: Spel0 <75626813+Spel0@users.noreply.github.com> Date: Thu, 12 Aug 2021 12:18:25 +0300 Subject: [PATCH 01/12] fixator --- source/PlayState.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/PlayState.hx b/source/PlayState.hx index a7f8760c53..65a17683e2 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -2017,7 +2017,7 @@ class PlayState extends MusicBeatState switch (noteTypeCheck) { case 'pixel': - babyArrow.loadGraphic(Paths.image('weeb/pixelUI/arrows-pixels'), true, 17, 17); + babyArrow.loadGraphic(Paths.image('weeb/pixelUI/arrows-pixels', 'week6'), true, 17, 17); babyArrow.animation.add('green', [6]); babyArrow.animation.add('red', [7]); babyArrow.animation.add('blue', [5]); From 44fa55f165a3670731d5e0838f19dd09af93e927 Mon Sep 17 00:00:00 2001 From: Spel0 <75626813+Spel0@users.noreply.github.com> Date: Thu, 12 Aug 2021 12:56:59 +0300 Subject: [PATCH 02/12] Fix offsets(hold ones are still buggy tho) --- source/PlayState.hx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/PlayState.hx b/source/PlayState.hx index 65a17683e2..d632199e25 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -3096,7 +3096,7 @@ class PlayState extends MusicBeatState { spr.animation.play('confirm', true); } - if (spr.animation.curAnim.name == 'confirm' && !curStage.startsWith('school')) + if (spr.animation.curAnim.name == 'confirm' && SONG.noteStyle != 'pixel') { spr.centerOffsets(); spr.offset.x -= 13; @@ -3131,7 +3131,7 @@ class PlayState extends MusicBeatState { spr.animation.play('confirm', true); } - if (spr.animation.curAnim.name == 'confirm' && !curStage.startsWith('school')) + if (spr.animation.curAnim.name == 'confirm' && SONG.noteStyle != 'pixel') { spr.centerOffsets(); spr.offset.x -= 13; @@ -4029,7 +4029,7 @@ class PlayState extends MusicBeatState { spr.animation.play('confirm', true); } - if (spr.animation.curAnim.name == 'confirm' && !curStage.startsWith('school')) + if (spr.animation.curAnim.name == 'confirm' && SONG.noteStyle != 'pixel') { spr.centerOffsets(); spr.offset.x -= 13; @@ -4058,7 +4058,7 @@ class PlayState extends MusicBeatState if (!keys[spr.ID]) spr.animation.play('static', false); - if (spr.animation.curAnim.name == 'confirm' && !curStage.startsWith('school')) + if (spr.animation.curAnim.name == 'confirm' && SONG.noteStyle != 'pixel') { spr.centerOffsets(); spr.offset.x -= 13; From 6c1af6722b49c866b68d51cbb57ef80950982283 Mon Sep 17 00:00:00 2001 From: Spel0 <75626813+Spel0@users.noreply.github.com> Date: Thu, 12 Aug 2021 14:00:41 +0300 Subject: [PATCH 03/12] hold notes position fix --- source/Note.hx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/Note.hx b/source/Note.hx index b642de9e0b..abd6adc32a 100644 --- a/source/Note.hx +++ b/source/Note.hx @@ -143,7 +143,9 @@ class Note extends FlxSprite animation.add(dataColor[i] + 'holdend', [i + 4]); // Tails } - setGraphicSize(Std.int(width * PlayState.daPixelZoom)); + var widthSize = Std.int(PlayState.curStage.startsWith('school') ? (width * PlayState.daPixelZoom) : (isSustainNote ? (width * 4.5) : (width * PlayState.daPixelZoom))); + + setGraphicSize(widthSize); updateHitbox(); default: frames = Paths.getSparrowAtlas('NOTE_assets'); From 695bb8f02d8b46b7d7c4b7c6a1317e387d9c608c Mon Sep 17 00:00:00 2001 From: Spel0 <75626813+Spel0@users.noreply.github.com> Date: Thu, 12 Aug 2021 14:02:17 +0300 Subject: [PATCH 04/12] If someone would change pixel zoom var? idk --- source/Note.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Note.hx b/source/Note.hx index abd6adc32a..387d459cb3 100644 --- a/source/Note.hx +++ b/source/Note.hx @@ -143,8 +143,8 @@ class Note extends FlxSprite animation.add(dataColor[i] + 'holdend', [i + 4]); // Tails } - var widthSize = Std.int(PlayState.curStage.startsWith('school') ? (width * PlayState.daPixelZoom) : (isSustainNote ? (width * 4.5) : (width * PlayState.daPixelZoom))); - + var widthSize = Std.int(PlayState.curStage.startsWith('school') ? (width * PlayState.daPixelZoom) : (isSustainNote ? (width * PlayState.daPixelZoom - 1.5) : (width * PlayState.daPixelZoom))); + setGraphicSize(widthSize); updateHitbox(); default: From 22da8523e962181843a20210ce76be53e325c0e7 Mon Sep 17 00:00:00 2001 From: Spel0 <75626813+Spel0@users.noreply.github.com> Date: Thu, 12 Aug 2021 14:12:47 +0300 Subject: [PATCH 05/12] dumb --- source/Note.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Note.hx b/source/Note.hx index 387d459cb3..b77e3a5f6f 100644 --- a/source/Note.hx +++ b/source/Note.hx @@ -143,7 +143,7 @@ class Note extends FlxSprite animation.add(dataColor[i] + 'holdend', [i + 4]); // Tails } - var widthSize = Std.int(PlayState.curStage.startsWith('school') ? (width * PlayState.daPixelZoom) : (isSustainNote ? (width * PlayState.daPixelZoom - 1.5) : (width * PlayState.daPixelZoom))); + var widthSize = Std.int(PlayState.curStage.startsWith('school') ? (width * PlayState.daPixelZoom) : (isSustainNote ? (width * (PlayState.daPixelZoom - 1.5)) : (width * PlayState.daPixelZoom))); setGraphicSize(widthSize); updateHitbox(); From a21cd8f05fb05b9c3e407ddc624ed1f15113bed3 Mon Sep 17 00:00:00 2001 From: Spel0 <75626813+Spel0@users.noreply.github.com> Date: Thu, 12 Aug 2021 20:20:14 +0300 Subject: [PATCH 06/12] Chart menu fixes --- source/ChartingState.hx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/ChartingState.hx b/source/ChartingState.hx index 0f7b7f5d6f..ac5b26ffe4 100644 --- a/source/ChartingState.hx +++ b/source/ChartingState.hx @@ -1599,6 +1599,7 @@ class ChartingState extends MusicBeatState { regenerateLines(); + updateGrid(); } public var shownNotes:Array = []; @@ -2291,6 +2292,7 @@ class ChartingState extends MusicBeatState i.lastUpdated = sect.mustHitSection; add(sectionicon); + check_mustHitSection.checked = sect.mustHitSection; trace("must hit " + sect.mustHitSection); } @@ -2565,6 +2567,7 @@ class ChartingState extends MusicBeatState if (curSelectedNote != null) { stepperSusLength.value = curSelectedNote[2]; + updateGrid(); } } From c2db786457f55ee10ccdc731bc4a4ae8f3e2f62f Mon Sep 17 00:00:00 2001 From: Spel0 <75626813+Spel0@users.noreply.github.com> Date: Fri, 13 Aug 2021 14:30:56 +0300 Subject: [PATCH 07/12] from previous PR(to fix crash) --- source/ChartingState.hx | 1 - 1 file changed, 1 deletion(-) diff --git a/source/ChartingState.hx b/source/ChartingState.hx index 4959c7396c..602e4a3ade 100644 --- a/source/ChartingState.hx +++ b/source/ChartingState.hx @@ -2560,7 +2560,6 @@ class ChartingState extends MusicBeatState { check_mustHitSection.checked = sec.mustHitSection; check_altAnim.checked = sec.altAnim; - check_changeBPM.checked = sec.changeBPM; } } From 91a6b772ff17900d523dc230d6e59f7bf695acea Mon Sep 17 00:00:00 2001 From: Spel0 <75626813+Spel0@users.noreply.github.com> Date: Fri, 13 Aug 2021 19:36:56 +0300 Subject: [PATCH 08/12] Ability for BF to have idle and notes alt anims + failsafe --- source/Character.hx | 9 +++++++++ source/ChartingState.hx | 2 +- source/PlayState.hx | 21 +++++++++------------ 3 files changed, 19 insertions(+), 13 deletions(-) diff --git a/source/Character.hx b/source/Character.hx index c99941c0e7..1e520b8812 100644 --- a/source/Character.hx +++ b/source/Character.hx @@ -483,6 +483,15 @@ class Character extends FlxSprite public function playAnim(AnimName:String, Force:Bool = false, Reversed:Bool = false, Frame:Int = 0):Void { + + if (AnimName.endsWith('alt') && animation.getByName(AnimName) == null) + { + #if debug + FlxG.log.warn(['Such alt animation doesnt exist: ' + AnimName]); + #end + AnimName = AnimName.split('-')[0]; + } + animation.play(AnimName, Force, Reversed, Frame); var daOffset = animOffsets.get(AnimName); diff --git a/source/ChartingState.hx b/source/ChartingState.hx index 602e4a3ade..fc39343c3f 100644 --- a/source/ChartingState.hx +++ b/source/ChartingState.hx @@ -3027,7 +3027,7 @@ class ChartingState extends MusicBeatState } else { - var note:Note = new Note(n.strumTime, n.noteData % 4,null,false,true); + var note:Note = new Note(n.strumTime, n.noteData % 4,null,false,true, n.isAlt); note.rawNoteData = n.noteData; note.sustainLength = noteSus; note.setGraphicSize(Math.floor(GRID_SIZE), Math.floor(GRID_SIZE)); diff --git a/source/PlayState.hx b/source/PlayState.hx index c8ef22a471..799f5e5b5b 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -4358,17 +4358,14 @@ class PlayState extends MusicBeatState else totalNotesHit += 1; - switch (note.noteData) - { - case 2: - boyfriend.playAnim('singUP', true); - case 3: - boyfriend.playAnim('singRIGHT', true); - case 1: - boyfriend.playAnim('singDOWN', true); - case 0: - boyfriend.playAnim('singLEFT', true); - } + var altAnim:String = ""; + if (note.isAlt) + { + altAnim = '-alt'; + trace("Alt note on BF"); + } + + boyfriend.playAnim('sing' + dataSuffix[note.noteData] + altAnim, true); #if windows if (luaModchart != null) @@ -4631,7 +4628,7 @@ class PlayState extends MusicBeatState if (!boyfriend.animation.curAnim.name.startsWith("sing") && (curBeat % idleBeat == 0 || !idleToBeat)) { - boyfriend.playAnim('idle', idleToBeat); + boyfriend.playAnim('idle' + ((SONG.notes[Math.floor(curStep / 16)].altAnim && boyfriend.animation.getByName('idle-alt') != null) ? '-alt' : ''), idleToBeat); } /*if (!dad.animation.curAnim.name.startsWith("sing")) From fac055c9a19d09eb7673a7f7f4cd1d73083cc8b0 Mon Sep 17 00:00:00 2001 From: Spel0 <75626813+Spel0@users.noreply.github.com> Date: Fri, 13 Aug 2021 19:43:04 +0300 Subject: [PATCH 09/12] for opponent --- source/Character.hx | 7 +++++-- source/PlayState.hx | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/source/Character.hx b/source/Character.hx index 1e520b8812..542b868813 100644 --- a/source/Character.hx +++ b/source/Character.hx @@ -452,7 +452,7 @@ class Character extends FlxSprite /** * FOR GF DANCING SHIT */ - public function dance(forced:Bool = false) + public function dance(forced:Bool = false, altAnim:Bool = false) { if (!debugMode) { @@ -476,7 +476,10 @@ class Character extends FlxSprite else playAnim('danceLeft'); default: - playAnim('idle', forced); + if (altAnim && animation.getByName('idle-alt') != null) + playAnim('idle-alt', forced); + else + playAnim('idle', forced); } } } diff --git a/source/PlayState.hx b/source/PlayState.hx index 799f5e5b5b..e81ab74ef0 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -4594,7 +4594,7 @@ class PlayState extends MusicBeatState // Dad doesnt interupt his own notes if ((!dad.animation.curAnim.name.startsWith("sing")) && dad.curCharacter != 'gf') if ((curBeat % idleBeat == 0 || !idleToBeat) || dad.curCharacter == "spooky") - dad.dance(idleToBeat); + dad.dance(idleToBeat, SONG.notes[Math.floor(curStep / 16)].altAnim); } // FlxG.log.add('change bpm' + SONG.notes[Std.int(curStep / 16)].changeBPM); wiggleShit.update(Conductor.crochet); From 4952cf8283339974cf40caf602bd5214debc2963 Mon Sep 17 00:00:00 2001 From: Spel0 <75626813+Spel0@users.noreply.github.com> Date: Fri, 13 Aug 2021 20:15:55 +0300 Subject: [PATCH 10/12] Separate check boxes for P1 and Opponent alt idles --- source/ChartingState.hx | 44 +++++++++++++++++++++++++++-------------- source/PlayState.hx | 6 +++--- source/Section.hx | 3 ++- 3 files changed, 34 insertions(+), 19 deletions(-) diff --git a/source/ChartingState.hx b/source/ChartingState.hx index fc39343c3f..9bd80f7958 100644 --- a/source/ChartingState.hx +++ b/source/ChartingState.hx @@ -1183,7 +1183,8 @@ class ChartingState extends MusicBeatState var check_mustHitSection:FlxUICheckBox; var check_changeBPM:FlxUICheckBox; var stepperSectionBPM:FlxUINumericStepper; - var check_altAnim:FlxUICheckBox; + var check_p1AltAnim:FlxUICheckBox; + var check_p2AltAnim:FlxUICheckBox; function addSectionUI():Void { @@ -1267,8 +1268,11 @@ class ChartingState extends MusicBeatState check_mustHitSection.checked = true; // _song.needsVoices = check_mustHit.checked; - check_altAnim = new FlxUICheckBox(10, 340, null, null, "Alternate Animation", 100); - check_altAnim.name = 'check_altAnim'; + check_p1AltAnim = new FlxUICheckBox(10, 340, null, null, "P1 Alternate Animation", 100); + check_p1AltAnim.name = 'check_p1AltAnim'; + + check_p2AltAnim = new FlxUICheckBox(200, 340, null, null, "P2 Alternate Animation", 100); + check_p2AltAnim.name = 'check_p2AltAnim'; var refresh = new FlxButton(10, 60, 'Refresh Section', function() { var section = getSectionByTime(Conductor.songPosition); @@ -1277,7 +1281,8 @@ class ChartingState extends MusicBeatState return; check_mustHitSection.checked = section.mustHitSection; - check_altAnim.checked = section.altAnim; + check_p1AltAnim.checked = section.p1AltAnim; + check_p2AltAnim.checked = section.p2AltAnim; }); var startSection:FlxButton = new FlxButton(10, 85, "Play Here", function() { @@ -1294,7 +1299,8 @@ class ChartingState extends MusicBeatState //tab_group_section.add(stepperCopy); //tab_group_section.add(stepperCopyLabel); tab_group_section.add(check_mustHitSection); - tab_group_section.add(check_altAnim); + tab_group_section.add(check_p1AltAnim); + tab_group_section.add(check_p2AltAnim); //tab_group_section.add(copyButton); tab_group_section.add(clearSectionButton); tab_group_section.add(swapSection); @@ -1511,8 +1517,10 @@ class ChartingState extends MusicBeatState var label = check.getLabel().text; switch (label) { - case "Alternate Animation": - getSectionByTime(Conductor.songPosition).altAnim = check.checked; + case "P1 Alternate Animation": + getSectionByTime(Conductor.songPosition).p1AltAnim = check.checked; + case "P2 Alternate Animation": + getSectionByTime(Conductor.songPosition).p2AltAnim = check.checked; } } else if (id == FlxUINumericStepper.CHANGE_EVENT && (sender is FlxUINumericStepper)) @@ -2073,7 +2081,8 @@ class ChartingState extends MusicBeatState { lastUpdatedSection = weird; check_mustHitSection.checked = weird.mustHitSection; - check_altAnim.checked = weird.altAnim; + check_p1AltAnim.checked = weird.p1AltAnim; + check_p2AltAnim.checked = weird.p2AltAnim; } } @@ -2554,12 +2563,14 @@ class ChartingState extends MusicBeatState if (sec == null) { check_mustHitSection.checked = true; - check_altAnim.checked = false; + check_p1AltAnim.checked = false; + check_p2AltAnim.checked = false; } else { check_mustHitSection.checked = sec.mustHitSection; - check_altAnim.checked = sec.altAnim; + check_p1AltAnim.checked = sec.p1AltAnim; + check_p2AltAnim.checked = sec.p2AltAnim; } } @@ -2688,7 +2699,8 @@ class ChartingState extends MusicBeatState mustHitSection: true, sectionNotes: [], typeOfSection: 0, - altAnim: false + p1AltAnim: false, + p2AltAnim: false }; _song.notes.push(sec); @@ -2798,7 +2810,7 @@ class ChartingState extends MusicBeatState updateGrid(); } - private function newSection(lengthInSteps:Int = 16,mustHitSection:Bool = false,altAnim:Bool = true):SwagSection + private function newSection(lengthInSteps:Int = 16,mustHitSection:Bool = false,p1AltAnim:Bool = true, p2AltAnim:Bool = true):SwagSection { var daPos:Float = 0; @@ -2826,7 +2838,8 @@ class ChartingState extends MusicBeatState mustHitSection: mustHitSection, sectionNotes: [], typeOfSection: 0, - altAnim: altAnim + p1AltAnim: p1AltAnim, + p2AltAnim: p2AltAnim }; @@ -2900,7 +2913,7 @@ class ChartingState extends MusicBeatState } for (daSection1 in 0..._song.notes.length) { - newSong.push(newSection(16,_song.notes[daSection1].mustHitSection,_song.notes[daSection1].altAnim)); + newSong.push(newSection(16,_song.notes[daSection1].mustHitSection,_song.notes[daSection1].p1AltAnim,_song.notes[daSection1].p2AltAnim)); } for (daSection in 0...(_song.notes.length)) @@ -2908,7 +2921,8 @@ class ChartingState extends MusicBeatState var aimtosetsection = daSection+Std.int((totaladdsection)); if(aimtosetsection<0) aimtosetsection = 0; newSong[aimtosetsection].mustHitSection = _song.notes[daSection].mustHitSection; - newSong[aimtosetsection].altAnim = _song.notes[daSection].altAnim; + newSong[aimtosetsection].p1AltAnim = _song.notes[daSection].p1AltAnim; + newSong[aimtosetsection].p2AltAnim = _song.notes[daSection].p2AltAnim; //trace("section "+daSection); for(daNote in 0...(_song.notes[daSection].sectionNotes.length)) { diff --git a/source/PlayState.hx b/source/PlayState.hx index e81ab74ef0..796bbf3601 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -3044,7 +3044,7 @@ class PlayState extends MusicBeatState if (SONG.notes[Math.floor(curStep / 16)] != null) { - if (SONG.notes[Math.floor(curStep / 16)].altAnim) + if (SONG.notes[Math.floor(curStep / 16)].p1AltAnim) altAnim = '-alt'; } @@ -4594,7 +4594,7 @@ class PlayState extends MusicBeatState // Dad doesnt interupt his own notes if ((!dad.animation.curAnim.name.startsWith("sing")) && dad.curCharacter != 'gf') if ((curBeat % idleBeat == 0 || !idleToBeat) || dad.curCharacter == "spooky") - dad.dance(idleToBeat, SONG.notes[Math.floor(curStep / 16)].altAnim); + dad.dance(idleToBeat, SONG.notes[Math.floor(curStep / 16)].p1AltAnim); } // FlxG.log.add('change bpm' + SONG.notes[Std.int(curStep / 16)].changeBPM); wiggleShit.update(Conductor.crochet); @@ -4628,7 +4628,7 @@ class PlayState extends MusicBeatState if (!boyfriend.animation.curAnim.name.startsWith("sing") && (curBeat % idleBeat == 0 || !idleToBeat)) { - boyfriend.playAnim('idle' + ((SONG.notes[Math.floor(curStep / 16)].altAnim && boyfriend.animation.getByName('idle-alt') != null) ? '-alt' : ''), idleToBeat); + boyfriend.playAnim('idle' + ((SONG.notes[Math.floor(curStep / 16)].p2AltAnim && boyfriend.animation.getByName('idle-alt') != null) ? '-alt' : ''), idleToBeat); } /*if (!dad.animation.curAnim.name.startsWith("sing")) diff --git a/source/Section.hx b/source/Section.hx index 48b1f14980..b4980d196b 100644 --- a/source/Section.hx +++ b/source/Section.hx @@ -10,7 +10,8 @@ typedef SwagSection = var mustHitSection:Bool; var bpm:Float; var changeBPM:Bool; - var altAnim:Bool; + var p1AltAnim:Bool; + var p2AltAnim:Bool; } class Section From cf9237c330ac776f54c3832cdd5e914dfc270e5f Mon Sep 17 00:00:00 2001 From: Spel0 <75626813+Spel0@users.noreply.github.com> Date: Fri, 13 Aug 2021 20:42:34 +0300 Subject: [PATCH 11/12] conversion --- source/ChartingState.hx | 4 +++- source/Section.hx | 1 + source/Song.hx | 7 +++++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/source/ChartingState.hx b/source/ChartingState.hx index 9bd80f7958..87512cae70 100644 --- a/source/ChartingState.hx +++ b/source/ChartingState.hx @@ -301,7 +301,7 @@ class ChartingState extends MusicBeatState { var renderer = new SectionRender(0,640 * awfgaw,GRID_SIZE); if (_song.notes[awfgaw] == null) - _song.notes.push(newSection(16,true,false)); + _song.notes.push(newSection(16,true,false,false)); renderer.section = _song.notes[awfgaw]; sectionRenderes.add(renderer); @@ -2699,6 +2699,7 @@ class ChartingState extends MusicBeatState mustHitSection: true, sectionNotes: [], typeOfSection: 0, + altAnim: false, p1AltAnim: false, p2AltAnim: false }; @@ -2838,6 +2839,7 @@ class ChartingState extends MusicBeatState mustHitSection: mustHitSection, sectionNotes: [], typeOfSection: 0, + altAnim: false, p1AltAnim: p1AltAnim, p2AltAnim: p2AltAnim }; diff --git a/source/Section.hx b/source/Section.hx index b4980d196b..cd17e25289 100644 --- a/source/Section.hx +++ b/source/Section.hx @@ -10,6 +10,7 @@ typedef SwagSection = var mustHitSection:Bool; var bpm:Float; var changeBPM:Bool; + var altAnim:Bool; var p1AltAnim:Bool; var p2AltAnim:Bool; } diff --git a/source/Song.hx b/source/Song.hx index 36cd9238b7..00292c7c70 100644 --- a/source/Song.hx +++ b/source/Song.hx @@ -125,7 +125,6 @@ class Song if (song.eventObjects == null) song.eventObjects = []; - for(i in song.eventObjects) { var name = Reflect.field(i,"name"); @@ -176,7 +175,11 @@ class Song // conversion stuff - + for (section in swagShit.notes) + { + if (section.altAnim) + section.p1AltAnim = section.altAnim; + } return swagShit; } From 313047e209630892791e30e03efaf44230dfec64 Mon Sep 17 00:00:00 2001 From: Spel0 <75626813+Spel0@users.noreply.github.com> Date: Sat, 14 Aug 2021 04:21:28 +0300 Subject: [PATCH 12/12] Update ChartingState.hx --- source/ChartingState.hx | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/ChartingState.hx b/source/ChartingState.hx index 87512cae70..fb0ffe7fef 100644 --- a/source/ChartingState.hx +++ b/source/ChartingState.hx @@ -1632,7 +1632,6 @@ class ChartingState extends MusicBeatState { regenerateLines(); - updateGrid(); } public var shownNotes:Array = []; @@ -2317,7 +2316,6 @@ class ChartingState extends MusicBeatState i.lastUpdated = sect.mustHitSection; add(sectionicon); - check_mustHitSection.checked = sect.mustHitSection; trace("must hit " + sect.mustHitSection); } @@ -2600,7 +2598,6 @@ class ChartingState extends MusicBeatState curSelectedNote[3] = false; check_naltAnim.checked = false; } - updateGrid(); } }