You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# onset timestamps in the beatmap file given audio fileonset_times=self.read_beatmap_file(beatmap_path)
# assign tracks randomly in advance since generating on the fly is too slowself.random_track_indices= [
renpy.random.randint(0, self.num_track_bars-1) for_inrange(self.num_notes)
]
self.random_track_indices has the same length as self.onset_times and denotes the track index of each onset. You can manually specify entries in self.random_track_indices to make sure a certain beat appears on a certain track.
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: