-
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.
Probably will be manually set in-game but just in case
- Loading branch information
1 parent
fd194aa
commit c883ab8
Showing
1 changed file
with
60 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{ | ||
"General Information": [ | ||
{ | ||
"name": "Song Name", | ||
"optionType": "text" | ||
}, | ||
{ | ||
"name": "Song Artist", | ||
"optionType": "text" | ||
}, | ||
{ | ||
"name": "Song Sub-Name", | ||
"optionType": "text" | ||
} | ||
], | ||
"Resources": [ | ||
{ | ||
"name": "Song", | ||
"optionType": "audio" | ||
}, | ||
{ | ||
"name": "Cover", | ||
"optionType": "image" | ||
}, | ||
{ | ||
"name": "Background", | ||
"optionType": "image" | ||
} | ||
], | ||
"Timing": [ | ||
{ | ||
"name": "Song BPM", | ||
"optionType": "number" | ||
}, | ||
{ | ||
"name": "Song Offset", | ||
"description": "Beatmap will start at the specified time (in seconds).", | ||
"optionType": "number" | ||
}, | ||
{ | ||
"name": "Reaction Time", | ||
"description": "Auto-changes whenever BPM is changed.", | ||
"optionType": "number", | ||
"difficulty": true | ||
}, | ||
{ | ||
"name": "Number of Keys", | ||
"optionType": "slider", | ||
"sliderRange": {"min": 1, "max": 9}, | ||
"exclusive": "Mania", | ||
"difficulty": true | ||
}, | ||
{ | ||
"name": "Difficulty Level", | ||
"optionType": "slider", | ||
"sliderRange": {"min": 0, "max": 10, "disableRounding": true}, | ||
"difficulty": true | ||
} | ||
] | ||
} |