设置扩展

This commit is contained in:
SoulliesOfficial
2026-07-19 16:44:58 -04:00
parent dda354ebb9
commit 9fd5f098ab
110 changed files with 8386 additions and 2311 deletions

View File

@@ -21,7 +21,7 @@ namespace Ichni.RhythmGame.Beatmap
#if UNITY_STANDALONE
return new FullScreenNearTimeJudgeUnit(attachedNote);
#elif UNITY_ANDROID || UNITY_IOS
if (SettingsManager.instance.gameSettings.ShouldUseFullScreenJudge())
if (SettingsManager.instance.ShouldUseFullScreenJudge())
{
return new FullScreenNearTimeJudgeUnit(attachedNote);
}
@@ -30,7 +30,7 @@ namespace Ichni.RhythmGame.Beatmap
return new TouchAreaJudgeUnit(attachedNote, areaRadius);
}
#else
return SettingsManager.instance.gameSettings.ShouldUseFullScreenJudge()
return SettingsManager.instance.ShouldUseFullScreenJudge()
? new FullScreenNearTimeJudgeUnit(attachedNote)
: new TouchAreaJudgeUnit(attachedNote, areaRadius);
#endif