Will McPherson

Results 6 comments of Will McPherson

One basic design idea is to have a `Processor` virtual class with some virtual methods like: ``` Audio thru(Audio in) MIDI thru(MIDI in) Audio thru(MIDI in) MIDI thru(Audio in) ```...

For completeness sake, kling suggested a node-based fx system many years ago... https://freenode.logbot.info/serenityos/20191206#c2938796 https://freenode.logbot.info/serenityos/20200210#c3219213 Simply converting Piano to use a proper object model where processors can be chained would be...

WIP: https://github.com/kleinesfilmroellchen/serenity

All [examples](https://mrk.sed.pl/bevy-showcase/) working on all browsers for me. - Apple M1 MacBook Air - macOS Big Sur 11.4 - Safari 14.1.1 - Firefox 89.0.1 - Chrome 91.0.4472.114

My solution to this is some rather unfortunate [glue code](https://github.com/willmcpherson2/maj/commit/4cb640c818759800a0695657ab5395a5fd398ff7). Essentially just an implementation of [this stackoverflow answer](https://stackoverflow.com/a/8486324/10908003). I'm not sure how quicksilver can make this easier, but I am...

@lenscas Thanks, I’ll try to do something like that. And I definitely think quicksilver’s resize event should be somehow connected to the JavaScript window resize event. At the moment quicksilver’s...