mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-21 10:48:21 -05:00
also account for instrumental offset
It seems that it is tied to both of them
This commit is contained in:
parent
caa4d290f7
commit
a87615ff7c
1 changed files with 2 additions and 2 deletions
|
@ -409,11 +409,11 @@ class ChartEditorState extends UIState // UIState derives from MusicBeatState
|
|||
{
|
||||
if (id == 1)
|
||||
{
|
||||
member.time = (scrollPositionInMs - currentVocalOffsetOpponent) / Constants.MS_PER_SEC;
|
||||
member.time = ((scrollPositionInMs - currentVocalOffsetOpponent) - currentInstrumentalOffset) / Constants.MS_PER_SEC;
|
||||
}
|
||||
else
|
||||
{
|
||||
member.time = (scrollPositionInMs - currentVocalOffsetPlayer) / Constants.MS_PER_SEC;
|
||||
member.time = ((scrollPositionInMs - currentVocalOffsetOpponent) - currentInstrumentalOffset) / Constants.MS_PER_SEC;
|
||||
}
|
||||
id++;
|
||||
// Doing this desyncs the waveforms from the grid.
|
||||
|
|
Loading…
Reference in a new issue