SHOW:
|
|
- or go back to the newest paste.
| 1 | beat saber file structure : | |
| 2 | ||
| 3 | the beat saber beatmap format is a simple one line JSON file. | |
| 4 | ||
| 5 | Map properties : | |
| 6 | ||
| 7 | version : format version | |
| 8 | beatsPerMinute : describe itself | |
| 9 | - | beatsPerBar : Affect distance between notes and speed |
| 9 | + | beatsPerBar : value only used by the editor |
| 10 | - | noteJumpSpeed : unknown |
| 10 | + | noteJumpSpeed : movement speed of notes (now unused) |
| 11 | - | shuffle : unknown |
| 11 | + | shuffle : how random notes color are in no direction mode |
| 12 | - | shufflePeriod : unknown |
| 12 | + | shufflePeriod : how often notes should change color in no direction mode |
| 13 | ||
| 14 | Event : | |
| 15 | ||
| 16 | time : Event time position in beats | |
| 17 | type : Event type () | |
| 18 | value : Event value () | |
| 19 | ||
| 20 | Note : | |
| 21 | ||
| 22 | time : Note time position in beats | |
| 23 | lineIndex : Note horizontal position (0 to 3, start from left) | |
| 24 | lineLayer : Note vertical position (0 to 2, start from bottom) | |
| 25 | - | type : Note type (0 = red, 1 = blue, 2 = bomb) |
| 25 | + | type : Note type (0 = red, 1 = blue, 3 = bomb) |
| 26 | cutDirection : Note cut direction (0 = up, 1 = down, 2 = left, 3 = right, 4 = up left, 5 = up right, 6 = down left, 7 = down right, 8 = no direction) | |
| 27 | ||
| 28 | Obstacle : | |
| 29 | ||
| 30 | time : Obstacle time position in beats | |
| 31 | lineIndex : Obstacle horizontal position (0 to 3, start from left) | |
| 32 | type : Obstacle type (0 = wall, 1 = ceiling) | |
| 33 | duration : Obstacle length in beats | |
| 34 | width : Obstacle width in lines (extend to the right) |