mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-13 00:27:40 +02:00
Improve note parameters (#798)
* Add note parameter * Increase max semitones * Add previewing sounds for notes * Add note preview toggle setting * Fix Launch Party starting note * Fix preview sound pooling + add BTS preview sound * Add previewing note when slider handle is clicked
This commit is contained in:

committed by
minenice55

parent
194b4b6e04
commit
35b1120d01
@ -132,7 +132,8 @@ namespace HeavenStudio.Common
|
||||
bool letterboxFxEnable = true,
|
||||
int editorScale = 0,
|
||||
bool scaleWScreenSize = false,
|
||||
bool showParamTooltips = true
|
||||
bool showParamTooltips = true,
|
||||
bool previewNoteSounds = true
|
||||
)
|
||||
{
|
||||
this.showSplash = showSplash;
|
||||
@ -154,6 +155,7 @@ namespace HeavenStudio.Common
|
||||
this.editorScale = editorScale;
|
||||
this.scaleWScreenSize = scaleWScreenSize;
|
||||
this.showParamTooltips = showParamTooltips;
|
||||
this.previewNoteSounds = previewNoteSounds;
|
||||
|
||||
this.perfectChallengeType = perfectChallengeType;
|
||||
this.isMedalOn = isMedalOn;
|
||||
@ -194,6 +196,7 @@ namespace HeavenStudio.Common
|
||||
public int editorScale;
|
||||
public bool scaleWScreenSize;
|
||||
public bool showParamTooltips;
|
||||
public bool previewNoteSounds;
|
||||
// public bool showCornerTooltips;
|
||||
|
||||
// Gameplay Settings
|
||||
|
Reference in New Issue
Block a user