feat: polish VR gameplay and sync tools

This commit is contained in:
jongjae0305
2026-05-28 19:01:20 +09:00
parent ee34d79a66
commit 03105a4f85
50 changed files with 4986 additions and 328 deletions
+4 -1
View File
@@ -36,6 +36,8 @@ public class BeatSageNote
public static class BeatSageConverter
{
private static readonly bool LogConversions = false;
public static List<NoteData> Convert(string rawJson, float bpm)
{
var result = new List<NoteData>();
@@ -62,7 +64,8 @@ public static class BeatSageConverter
});
}
Debug.Log($"[BeatSageConverter] Converted {result.Count} notes.");
if (LogConversions)
Debug.Log($"[BeatSageConverter] Converted {result.Count} notes.");
return result;
}