mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-12 09:57:38 +02:00
Further input latency fixes
This commit is contained in:
@ -6,7 +6,28 @@ namespace RhythmHeavenMania.Games
|
||||
{
|
||||
public class Minigame : MonoBehaviour
|
||||
{
|
||||
public static float earlyTime = 0.38f, perfectTime = 0.41f, lateTime = 0.535f, endTime = 1f;
|
||||
public static float earlyTime = 0.77f, perfectTime = 0.87f, lateTime = 1.09f, endTime = 1.15f;
|
||||
|
||||
// hopefully these will fix the lowbpm problem
|
||||
public static float EarlyTime()
|
||||
{
|
||||
return earlyTime;
|
||||
}
|
||||
|
||||
public static float PerfectTime()
|
||||
{
|
||||
return perfectTime;
|
||||
}
|
||||
|
||||
public static float LateTime()
|
||||
{
|
||||
return lateTime;
|
||||
}
|
||||
|
||||
public static float EndTime()
|
||||
{
|
||||
return endTime;
|
||||
}
|
||||
|
||||
public int firstEnable = 0;
|
||||
|
||||
|
Reference in New Issue
Block a user