Alasdair Mott
Alasdair Mott
The quantizer node snaps an incoming value or audio signal to the nearest value in a chosen scale. https://user-images.githubusercontent.com/25563790/166134230-330e6cd8-177b-42fc-902c-159b59798e90.mp4 **Background** It works by first converting the incoming frequency to a...
I can use the scale generation from music.js ``` this.midiScale = music.genScale(state.scaleRoot, state.scaleName, 10); ``` Then map to the nearest midi note from there ``` const note = (( 12...
I had the same issue, 2019 intel MacBook. Adding this to the example fixed the issue: ```py fbo = ctx.simple_framebuffer((512, 512)) fbo.use() fbo.clear(0.0, 0.0, 0.0, 1.0) ``` I'm not sure...
thanks @geirsagberg same problem was happening to me, disabling magnet fixed it