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

@ -3,7 +3,6 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Starpelly;
using Jukebox;
using HeavenStudio.Util;
using System.Data.Common;
@ -469,7 +468,7 @@ namespace HeavenStudio
{
beat = Mathf.Max(beat, 0);
}
float a = Mathp.Normalize(beat, (float)startBeat, (float)(startBeat + length));
float a = MathUtils.Normalize(beat, (float)startBeat, (float)(startBeat + length));
return a;
}