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

@@ -201,7 +201,12 @@ public class OsuHitObject {
if (index != -1)
tokens[5] = tokens[5].substring(0, index);
this.endTime = Integer.parseInt(tokens[5]);
/* TODO: 'addition' not implemented. */
if (tokens.length > 6) {
String[] additionTokens = tokens[6].split(":");
this.addition = new byte[additionTokens.length];
for (int j = 0; j < additionTokens.length; j++)
this.addition[j] = Byte.parseByte(additionTokens[j]);
}
}
}