Daniel Shiffman
Daniel Shiffman
Oh, I thought #11 was merged but it was not! Re-opening...
For reference: https://editor.p5js.org/natureofcode/sketches/Y8hseRvYe Probably should namespace everything here too...
Any thoughts on what naming would make the most sense, is the most typical for JS libraries? Should we break the classes out into separate files and have a simple...
I just returned to this (quite a while later!) and merged a few pull requests so this issue can be updated to reflect the current status now!
Thank you @crhallberg for continuing to help maintain this repo!
@yining1023 it's working for me when I run the sketch, what specifically is not working for you?
Another note re: save as. When you save as a project the `new project name` is changed in the HTML file. However, the editor often does not reflect if the...
Here's an example related to using an `undefined` string with `text()`: ```javascript let txt; function setup() { createCanvas(400, 400); text(txt,100,100); } ``` JS console error: `Cannot read property 'toString' of...
Here's an example related to "file not found": ```javascript let img; function preload() { img = loadImage('missingfile.png'); } function setup() {} ``` JS console error: `GET http://alpha.editor.p5js.org//missingfile.png 404 (Not Found)`
Incorrect renderer: ```javascript function setup() { createCanvas(400, 400); } function draw() { background(220); rotateZ(100); } ``` Error should read: `Uncaught not supported in p2d. Please use webgl mode`