From 745a5d69e4a6e8b2134741f21b4fbd5f5f92820b Mon Sep 17 00:00:00 2001 From: PopSlime Date: Sat, 29 Oct 2022 00:42:56 +0800 Subject: [PATCH] Adjust event priority for judge event. --- Assets/Cryville/Crtr/Chart.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Assets/Cryville/Crtr/Chart.cs b/Assets/Cryville/Crtr/Chart.cs index d24beae..32c5493 100644 --- a/Assets/Cryville/Crtr/Chart.cs +++ b/Assets/Cryville/Crtr/Chart.cs @@ -341,7 +341,7 @@ namespace Cryville.Crtr { public float sumfix = 0.0f; public override int Priority { - get { return -2; } + get { return -4; } } public Motion() { @@ -406,7 +406,7 @@ namespace Cryville.Crtr { public class Judge : ChartEvent { public string name; public override int Priority { - get { return 4; } + get { return -2; } } public Judge() { @@ -422,7 +422,7 @@ namespace Cryville.Crtr { public float? tempo; public override int Priority { - get { return -4; } + get { return -6; } } }