Thomas Rutzer
Thomas Rutzer
Do you use `gm`or subClass `imageMagick`? If the latter, one way would be to use imageMagick commands directly: ``` gm("img.png") .out("-size").out("100x60") .out("-fill").out("white") .out("-stroke").out("black") .out("-strokeWidth").out("5") .draw("line 20,50 100,50") ``` See [imageMagick...
Seems like adding it to _depends_-List of linePlugin could do that job: ``` var linePlugin = createPlugin( /*by: */ 'lines', /*depends: */ [WORDS, CHARS], /*key: */ 'line', /*split: */ function(el,...
Hi @joshuaellis, when I use your suggested solution, would that mean that I might overwrite [r3f Canvas setting `frameloop`](https://docs.pmnd.rs/react-three-fiber/API/canvas) as well?
hm, I am still unsure what `Globals.assign({ frameLoop: "always" })` means. Let's say, I have a hybrid app with a HTML part and a Canvas part. And at some point...
Hi @nevernotsean, is there any progress on that matter? I try to get something similar working, but would much appreciate to have a look at your approach
Hi, @nevernotsean thanks for your quick response – would be awesome if you could share a sandbox. Nevertheless, I'm not sure if this is out of the scope of this...