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
* Modifies the note to be compatible with the Extended Octave Range Notes resource pack.<br>
135
+
* This includes shifting the note key to be within the Minecraft octave range and changing its instrument to a {@link ShiftedMinecraftInstrument} with the correct octaves shift.<br>
136
+
* The octaves shift value has to be appended to the sound name to play the note at the correct pitch. (For example: "block.note_block.harp_" + octavesShift)<br>
137
+
* {@link ShiftedMinecraftInstrument#mcSoundName()} can be used to get the correct sound name with the suffix already appended.<br>
138
+
* Link to the resource pack: <a href="https://github.com/RaphiMC/NoteBlockLib/raw/main/Extended%20Octave%20Range%20Notes%20Pack.zip">Extended Notes</a>
* Returns the octave delta to use as a suffix for the sound name and modifies the note key to be within the Minecraft octave range.<br>
135
162
* The octave delta value has to be appended to the sound name to play the note at the correct pitch. (For example: "block.note_block.harp_" + octaveDelta)<br>
136
163
* Link to the resource pack: <a href="https://github.com/RaphiMC/NoteBlockLib/raw/main/Extended%20Octave%20Range%20Notes%20Pack.zip">Extended Notes</a>
137
164
*
138
165
* @param note The note to modify
139
166
* @return The octave delta to use as a suffix for the sound name
167
+
* @deprecated Replaced by {@link #applyExtendedNotesResourcePack(Note)} which also sets the correct instrument automatically.
0 commit comments