Change Project License to MIT (#700)

* license change

replace unneeded package

* reword this
This commit is contained in:
minenice55
2024-02-16 01:17:16 -05:00
parent abde52b531
commit 6e12e5dafe
151 changed files with 159 additions and 5431 deletions

View File

@ -6,7 +6,7 @@ using UnityEngine;
using HeavenStudio.Util;
using HeavenStudio.Common;
using HeavenStudio.InputSystem;
using Starpelly;
using System.Linq;
using SFB;
@ -472,7 +472,7 @@ namespace HeavenStudio
public float GetPositionFromBeat(float startBeat, float length)
{
float a = Mathp.Normalize((float)songPosBeat, startBeat, startBeat + length);
float a = MathUtils.Normalize((float)songPosBeat, startBeat, startBeat + length);
return a;
}