Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | import API from "renderer/lib/api"; import { DutyInstrument, NoiseInstrument, WaveInstrument, } from "shared/lib/uge/types"; export const playDutyNotePreview = ( note: number, instrument: DutyInstrument, channel: 0 | 1, effectCode: number, effectParam: number, ) => { API.music.sendToMusicWindow({ action: "preview", type: "duty", note, instrument, channel, effectCode, effectParam, }); }; export const playWaveNotePreview = ( note: number, instrument: WaveInstrument, waveForm: Uint8Array, effectCode: number, effectParam: number, ) => { API.music.sendToMusicWindow({ action: "preview", type: "wave", note: note, instrument, waveForm, effectCode, effectParam, }); }; export const playNoiseNotePreview = ( note: number, instrument: NoiseInstrument, effectCode: number, effectParam: number, ) => { API.music.sendToMusicWindow({ action: "preview", type: "noise", note: note, instrument, effectCode, effectParam, }); }; |