Spinner Changes

frame independent spin up/average
rpm for Auto/SpunOut
CCW rotation
fade in
addition
This commit is contained in:
fd
2015-03-05 23:33:40 -05:00
parent 078b765143
commit f4969de438
3 changed files with 92 additions and 40 deletions

View File

@@ -256,7 +256,7 @@ public class Utils {
* @return the clamped value
* @author fluddokt
*/
public static float clamp(float val, int low, int high) {
public static float clamp(float val, float low, float high) {
if (val < low)
return low;
if (val > high)