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
Looks like the code in GameModifiersBehavior.cs for
beatmapData.GetBeatmapDataItems<NoteData>()
has now changed to take an int subtypeGroupIdentifier parameter for getting special events and other things. The type it really wants for regular notes is just 0 (Event0).
Unfortunately we can't use the actual BasicBeatmapEventType enum that it is based on since the type is int. Beware of future changes where they fix this and break this again.
The text was updated successfully, but these errors were encountered:
Looks like the code in GameModifiersBehavior.cs for
has now changed to take an
int subtypeGroupIdentifier
parameter for getting special events and other things. The type it really wants for regular notes is just 0 (Event0).Unfortunately we can't use the actual
BasicBeatmapEventType
enum that it is based on since the type isint
. Beware of future changes where they fix this and break this again.The text was updated successfully, but these errors were encountered: