I was doing some discovery work around loop - no_loop and found about https://p5js.org/reference/p5/isLooping/ Trying to use that method with py5, Sketch.is_looping doesn't exist but Sketch._instance.isLooping() exists and works.
Coming from
|
is_looping,isLooping,,method,,,SKIP,methods that are not part of the processing framework |
The doc says methods that are not part of the processing framework for it and it's skipped, but I'm missing why. First I thought this was part of p5 but not Processing, and py5 trying to stay true to Processing, but now seeing it already exists and usable under processing.core.PApplet.isLooping, I'm confused about the table and why the implementation was skipped.
I was doing some discovery work around loop - no_loop and found about https://p5js.org/reference/p5/isLooping/ Trying to use that method with
py5,Sketch.is_loopingdoesn't exist butSketch._instance.isLooping()exists and works.Coming from
py5generator/py5-resources/data/sketch.csv
Line 350 in e73ce23
The doc says
methods that are not part of the processing frameworkfor it and it's skipped, but I'm missing why. First I thought this was part of p5 but not Processing, and py5 trying to stay true to Processing, but now seeing it already exists and usable underprocessing.core.PApplet.isLooping, I'm confused about the table and why the implementation was skipped.