Kenneth Lim
Kenneth Lim
I think this would be good to have. For canvases, a conditional of `canvas instanceof p5.Renderer2D/GL` and for graphics `graphic._renderer instanceof p5.Renderer2D/GL` should be enough for a check for now.
I would suggest going with `.isWebGL` as well, one to be consistent with how the canvas is created in the first place (`createCanvas(400, 400, WEBGL`), and two leave open the...
Hi @EnginKARATAS, can you share a more complete example? Even better if it is running on https://editor.p5js.org. I can't tell where the problem could be with the two lines of...
@EnginKARATAS You don't have to share the code you are working on, just a minimal example that isolate and shows the problem. I can't help otherwise.
@aquaresima Loading external files including fonts will require running a server. Loading files will not work locally over the `file://` protocol usually seen when running the html file directly instead...
If your sketch and the web server hosting the resource is not on the same domain, the server hosting the resource will need to include the 'Access-Control-Allow-Origin' header with the...
Pretty complex regex there that took some time to wrap my head around. If we didn't miss anything obvious it should be good enough for now. Thanks!
@jakerockland There were some release problems back when 1.0.0 was released #4336. As noticed, the only difference should be the headers only. @maxgmer Before digging deeper, is there a specific...
I seemed to remember the non-minified version might have some publishing issue that's causing this but I may be misremembering. In any case, if there really is a mismatch between...
Good find. I wonder in this case should `circle` simply bypass `ellipseMode` or does it need to calculate the corners manually? What happens when `ellipseMode` is `CORNERS` but only passed...