Kenneth Lim

Results 443 comments of Kenneth Lim

It isn't really reliant on it being out of the canvas, if the second set of coordinates are negative and their magnitude (absolute value) is larger than the first set...

Hi @Michal8705, by Chrome do you mean Chrome on desktop or Chome on iOS? Conversely by iOS do you mean in Safari or just in general? Does this happen only...

Hi @Falling10fruit, I don't quite understand what you are referring to here in this issue, can you perhaps expand on it a bit more? Some sample code would be great...

Do you mean something like this: ```js function setup() { let canvas = createCanvas(400, 400); canvas.parent("myContainer"); } ``` where a container with id `myContainer` does not exist? If that's the...

Are you using p5.js (instead of p5.min.js) as FES is not included in the minified version.

@Falling10fruit Can you share a simplified version of your project with us (HTML and JS)?

Using the following sketch and p5.js 1.4.1 I'm still not able to replicate the issue ```js function setup(){ var Canvas = createCanvas(0, 0); Canvas.parent("Non-existent_Tag"); } ``` FES message in console:...

Have you tried replacing the script tag URL as mentioned?

But the error in the debug console doesn't show that the error comes from the CDN version but from a local file instead.

I'm not entirely sure how you are currently running the html file as I'm expecting console messages from the browser console but you are showing the debug console in VSCode...