-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUGFIX] Made the chart editor use correct song IDs when using templates #3018
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ork for fnfc as well.
AppleHair
changed the title
[BUGFIX] Made the chart editor use correct song IDs when using templates
[BUGFIX] Made the chart editor use correct song IDs when using templates and FNFC files
Jul 13, 2024
EliteMasterEric
added
the
status: pending triage
The bug or PR has not been reviewed yet.
label
Jul 14, 2024
I realized that the way I set the song ID when opening a `.fnfc` file doesn't let the user edit the song ID using the editor, so I reverted this functionality for FNFC.
AppleHair
changed the title
[BUGFIX] Made the chart editor use correct song IDs when using templates and FNFC files
[BUGFIX] Made the chart editor use correct song IDs when using templates
Jul 14, 2024
…ugfix/chart-selection
Wrong Link, Whoops!
Fix Completion Overwrite
Add FPS Option
…ection [BUGFIX] Player's left notes being selected when they shouldn't
…-fix Fix onSubStateOpenEnd not being called from Substates
ninjamuffin99
force-pushed
the
develop
branch
2 times, most recently
from
October 4, 2024 01:25
e0b1b01
to
410cfe9
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Instead of always using the song name from the metadata to infer the song ID, the chart editor will now try to use the correct song ID when loading a song template, and will only use the song name to infer the song ID as a fallback (usually when you create a new song or open a
.fnfc
file).This fix helps song scripts load on all variations when playtesting, and not only on variations where the song name matches the song ID (usually
default
). You can see the effect very clearly when playtesting eggnog on theerect
variations with song scripts enabled because the cutscene that's supposed to play when the song ends won't play without this fix.Note
Previously, I tried to apply this functionality to
.fnfc
files as well, by using the song ID from the manifest file, but then I realized that this prevents the user from editing the song ID of an opened.fnfc
file, so I ended up reverting that functionality.