We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 272f862 commit be812cdCopy full SHA for be812cd
source/funkin/editors/charter/Charter.hx
@@ -648,7 +648,14 @@ class Charter extends UIState {
648
if (lastEvents != null && lastTime == e.time) lastEvents.events.push(e);
649
else {
650
lastEvents = new CharterEvent(Conductor.getStepForTime(lastTime = e.time), [e], e.global);
651
- (e.global ? rightEventsGroup : leftEventsGroup).add(lastEvents);
+ if (e.global) {
652
+ rightEventsGroup.add(lastEvents);
653
+ lastRightEvents = lastEvents;
654
+ }
655
+ else {
656
+ leftEventsGroup.add(lastEvents);
657
+ lastLeftEvents = lastEvents;
658
659
}
660
661
0 commit comments