Spinner Changes
frame independent spin up/average rpm for Auto/SpunOut CCW rotation fade in addition
This commit is contained in:
@@ -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]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user