more editor fixes (#574)

This commit is contained in:
Braedon Lewis
2023-10-27 16:19:16 -04:00
committed by GitHub
parent b22de5abdb
commit 4afa1f646c
68 changed files with 1754 additions and 62 deletions

View File

@ -113,7 +113,9 @@ namespace HeavenStudio.Common
bool timingDisplayMinMode = false,
bool overlaysInEditor = true,
bool letterboxBgEnable = true,
bool letterboxFxEnable = true
bool letterboxFxEnable = true,
int editorScale = 0,
bool scaleWScreenSize = false
)
{
this.showSplash = showSplash;
@ -132,6 +134,8 @@ namespace HeavenStudio.Common
this.discordRPCEnable = false;
else
this.discordRPCEnable = true;
this.editorScale = editorScale;
this.scaleWScreenSize = scaleWScreenSize;
this.perfectChallengeType = perfectChallengeType;
this.isMedalOn = isMedalOn;
@ -169,6 +173,8 @@ namespace HeavenStudio.Common
// Editor Settings
public bool editorCursorEnable;
public bool discordRPCEnable;
public int editorScale;
public bool scaleWScreenSize;
// Gameplay Settings
public PerfectChallengeType perfectChallengeType;