pub enum Channel {
BgaBase,
BgaLayer,
BgaPoor,
Bgm,
BpmChangeU8,
BpmChange,
ChangeOption,
Note {
kind: NoteKind,
is_player1: bool,
key: Key,
},
SectionLen,
Stop,
}
Expand description
The channel, or lane, where the note will be on.
Variants§
BgaBase
The BGA channel.
BgaLayer
The BGA channel but overlay to Channel::BgaBase
channel.
BgaPoor
The POOR BGA channel.
Bgm
For the note which will be auto-played.
BpmChangeU8
For the bpm change by an u8
integer.
BpmChange
For the bpm change object.
ChangeOption
For the change option object.
Note
Fields
For the note which the user can interact.
SectionLen
For the section length change object.
Stop
For the stop object.