Skip to content

Commit

Permalink
Update to Sonolus 0.8.6
Browse files Browse the repository at this point in the history
  • Loading branch information
LittleYang0531 committed Oct 4, 2024
1 parent 2c81c0b commit f9bedbd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion engine/play/notes/DragNote.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class DragNote: public Archetype {
// id = EntityDataArray[id].get(3);
// } DONE
// appearTime = Max(0, Min(appearTime, time - 0.5));
PlayScheduled(Clips.Drag, time / levelSpeed, minSFXDistance);
IF (hasSFX && autoSFX) PlayScheduled(Clips.Drag, time / levelSpeed, minSFXDistance); FI
return VOID;
}

Expand Down
2 changes: 1 addition & 1 deletion engine/play/notes/FlickNote.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class FlickNote: public Archetype {
// id = EntityDataArray[id].get(3);
// } DONE
// appearTime = Max(0, Min(appearTime, time - 0.5));
PlayScheduled(Clips.Flick, time / levelSpeed, minSFXDistance);
IF (hasSFX && autoSFX) PlayScheduled(Clips.Flick, time / levelSpeed, minSFXDistance); FI
return VOID;
}

Expand Down
2 changes: 1 addition & 1 deletion engine/play/notes/HoldNote.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class HoldNote: public Archetype {
// id = EntityDataArray[id].get(3);
// } DONE
// appearTime = Max(0, Min(appearTime, time - 0.5));
PlayScheduled(Clips.Note, time / levelSpeed, minSFXDistance);
IF (hasSFX && autoSFX) PlayScheduled(Clips.Note, time / levelSpeed, minSFXDistance); FI
return VOID;
}

Expand Down
2 changes: 1 addition & 1 deletion engine/play/notes/NormalNote.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class NormalNote: public Archetype {
// id = EntityDataArray[id].get(3);
// } DONE
// appearTime = Max(0, Min(appearTime, time - 0.5));
PlayScheduled(Clips.Note, time / levelSpeed, minSFXDistance);
IF (hasSFX && autoSFX) PlayScheduled(Clips.Note, time / levelSpeed, minSFXDistance); FI
return VOID;
}

Expand Down

0 comments on commit f9bedbd

Please sign in to comment.