This commit is contained in:
SoulliesOfficial
2026-01-12 03:19:38 -05:00
parent 8d6e9de9d7
commit 66a1701087
52 changed files with 899 additions and 5161 deletions

View File

@@ -89,8 +89,14 @@ namespace Ichni.RhythmGame
#if UNITY_STANDALONE
return new FullScreenNearTimeJudgeUnit(attachedNote);
#elif UNITY_ANDROID || UNITY_IOS
//return new FullScreenNearTimeJudgeUnit(attachedNote);
return new TouchAreaJudgeUnit(attachedNote, areaRadius);
if (SettingsManager.instance.gameSettings.judgeType)
{
return new FullScreenNearTimeJudgeUnit(attachedNote);
}
else
{
return new TouchAreaJudgeUnit(attachedNote, areaRadius);
}
#endif
}
}