-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start implementing
beatmap
module, plus refinements
- Make all types implement `Clone` and some `Copy - Wrap long doc comments - Rename non-self-explanatory fields
- Loading branch information
1 parent
75d6d67
commit 84e030c
Showing
6 changed files
with
572 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
{ | ||
"version": "4.0.0", | ||
"colorNotes": [ | ||
{ | ||
"b": 10, | ||
"r": 0, | ||
"i": 0 | ||
} | ||
], | ||
"colorNotesData": [ | ||
{ | ||
"x": 1, | ||
"y": 0, | ||
"c": 0, | ||
"d": 1, | ||
"a": 0 | ||
}, | ||
{ | ||
"x": 2, | ||
"y": 2, | ||
"c": 0, | ||
"d": 0, | ||
"a": 0 | ||
} | ||
], | ||
"bombNotes": [ | ||
{ | ||
"b": 10, | ||
"r": 0, | ||
"i": 0 | ||
} | ||
], | ||
"bombNotesData": [ | ||
{ | ||
"x": 1, | ||
"y": 0 | ||
} | ||
], | ||
"obstacles": [ | ||
{ | ||
"b": 10, | ||
"r": 0, | ||
"i": 0 | ||
} | ||
], | ||
"obstaclesData": [ | ||
{ | ||
"d": 5, | ||
"x": 1, | ||
"y": 0, | ||
"w": 1, | ||
"h": 5 | ||
} | ||
], | ||
"arcs": [ | ||
{ | ||
"hb": 10, | ||
"tb": 15, | ||
"hr": 0, | ||
"tr": 0, | ||
"hi": 0, | ||
"ti": 1, | ||
"ai": 0 | ||
} | ||
], | ||
"arcsData": [ | ||
{ | ||
"m": 1, | ||
"tm": 1, | ||
"a": 0 | ||
} | ||
], | ||
"chains": [ | ||
{ | ||
"hb": 10, | ||
"tb": 15, | ||
"hr": 0, | ||
"tr": 0, | ||
"i": 0, | ||
"ci": 0 | ||
} | ||
], | ||
"chainsData": [ | ||
{ | ||
"tx": 2, | ||
"ty": 2, | ||
"c": 3, | ||
"s": 0.5 | ||
} | ||
], | ||
"spawnRotations": [ | ||
{ | ||
"b": 10, | ||
"i": 0 | ||
}, | ||
{ | ||
"b": 15, | ||
"i": 1 | ||
} | ||
], | ||
"spawnRotationsData": [ | ||
{ | ||
"t": 0, | ||
"r": 15 | ||
}, | ||
{ | ||
"t": 1, | ||
"r": 15 | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.