Skip to content

Commit

Permalink
Add GIN's BGM support
Browse files Browse the repository at this point in the history
  • Loading branch information
drojf committed Mar 8, 2023
1 parent 4d49235 commit 70c2ab2
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Update/flow.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
void main()
{
SetValidityOfSaving( FALSE );

ModGenericCall("ShowSetupMenuIfRequired", "");

CallSection("BrandLogo");
JumpSection("Title");
}
Expand Down
17 changes: 17 additions & 0 deletions Update/init.txt
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,11 @@ void main()

// GAltBGM controls which of these are selected
ModAddBGMset("New BGM", "Placeholder", "ExtraBGM:BGM");
ModAddBGMset("GIN's BGM", "Placeholder", "OGBGM:ExtraBGM:BGM");

// GAltSE controls which of these are selected
ModAddSEset("New SE", "Placeholder", "ExtraSE:SE");
ModAddSEset("GIN's SE", "Placeholder", "OGSE:ExtraSE:SE");

// Audio presets the user can select, consisting of a combination of the BGM and SE flags
ModAddAudioset(
Expand All @@ -163,6 +165,21 @@ void main()
0 // GAltSEFlow
);

ModAddAudioset(
"GIN's BGM/SE",
"This option uses GIN's Background Music (BGM) and Sound Effects (SE), which bring the BGM/SE closer to the original Japanese release.

Please click on the 'Open BGM/SE FAQ' button to view the 07th-mod wiki for more details.",
"JP: GIN's BGM/SE",
"JP: This option uses GIN's Background Music (BGM) and Sound Effects (SE), which bring the BGM/SE closer to the original Japanese release.

Please click on the 'Open BGM/SE FAQ' button to view the 07th-mod wiki for more details.",
1, // GAltBGM
1, // GAltBGMFlow
1, // GAltSE
1 // GAltSEFlow
);

ModGenericCall("LipSyncSettings", ".3, .7, true");

CallScript( "flow" );
Expand Down

0 comments on commit 70c2ab2

Please sign in to comment.