-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can I make my own beatmap? #2
Comments
Does this help? https://github.com/RuolinZheng08/renpy-rhythm#automatic-generation-of-beat-map-files The variables of interest are on these lines: # onset timestamps in the beatmap file given audio file
onset_times = self.read_beatmap_file(beatmap_path)
# assign tracks randomly in advance since generating on the fly is too slow
self.random_track_indices = [
renpy.random.randint(0, self.num_track_bars - 1) for _ in range(self.num_notes)
]
|
Alright, I think that'll do it! Thanks! |
I'd like to make a beatmap for this, but I'd like to know if I can make a beatmap that is not randomized keys. How can I do that?
Example is like osu!mania charts or something like that
The text was updated successfully, but these errors were encountered: