Package net.minecraftforge.event.level
Class NoteBlockEvent
java.lang.Object
net.minecraftforge.eventbus.api.Event
net.minecraftforge.event.level.BlockEvent
net.minecraftforge.event.level.NoteBlockEvent
- Direct Known Subclasses:
NoteBlockEvent.Change
,NoteBlockEvent.Play
Base class for Noteblock Events
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Fired when a Noteblock is changed.static enum
Information about the pitch of a Noteblock note.static enum
Describes the Octave of a Note being played by a Noteblock.static class
Fired when a Noteblock plays it's note.Nested classes/interfaces inherited from class net.minecraftforge.event.level.BlockEvent
BlockEvent.BlockToolModificationEvent, BlockEvent.BreakEvent, BlockEvent.CreateFluidSourceEvent, BlockEvent.CropGrowEvent, BlockEvent.EntityMultiPlaceEvent, BlockEvent.EntityPlaceEvent, BlockEvent.FarmlandTrampleEvent, BlockEvent.FluidPlaceBlockEvent, BlockEvent.NeighborNotifyEvent, BlockEvent.PortalSpawnEvent
Nested classes/interfaces inherited from class net.minecraftforge.eventbus.api.Event
net.minecraftforge.eventbus.api.Event.HasResult, net.minecraftforge.eventbus.api.Event.Result
-
Field Summary
-
Constructor Summary
ModifierConstructorDescriptionprotected
NoteBlockEvent
(Level world, BlockPos pos, BlockState state, int note) -
Method Summary
Modifier and TypeMethodDescriptiongetNote()
Get the Note the Noteblock is tuned toGet the Octave of the note this Noteblock is tuned toint
get the vanilla note-id, which contains information about both Note and Octave.void
setNote
(NoteBlockEvent.Note note, NoteBlockEvent.Octave octave) Set Note and Octave for this event.
If octave is Octave.HIGH, note may only be Note.F_SHARPMethods inherited from class net.minecraftforge.event.level.BlockEvent
getLevel, getPos, getState
Methods inherited from class net.minecraftforge.eventbus.api.Event
getListenerList, getPhase, getResult, hasResult, isCancelable, isCanceled, setCanceled, setPhase, setResult
-
Field Details
-
noteId
private int noteId
-
-
Constructor Details
-
NoteBlockEvent
-
-
Method Details
-
getNote
Get the Note the Noteblock is tuned to- Returns:
- the Note
-
getOctave
Get the Octave of the note this Noteblock is tuned to- Returns:
- the Octave
-
getVanillaNoteId
public int getVanillaNoteId()get the vanilla note-id, which contains information about both Note and Octave. Most modders should not need this.- Returns:
- an ID for the note
-
setNote
Set Note and Octave for this event.
If octave is Octave.HIGH, note may only be Note.F_SHARP- Parameters:
note
- the Noteoctave
- the Octave
-