tabreturn

Results 68 comments of tabreturn

Use Processing 3.5.4 for Python Mode until there's better support for Processing 4.

Thanks @WayneKiely. Are you referring to this entry? https://py.processing.org/reference/noise.html

Your sketch folder and .pyde file should be named the same. So _circles_in_circle.pyde_ resides in a folder name _circles_in_circle_ (not _sketch_220712a_) Use Processing 3.5.4 for Python Mode (the are issues...

It looks like you're using Processing 4? Use Processing 3.5.4 for Python Mode instead.

There's an example included in the Processing IDE -- with Python Mode activated, File > Examples > Basics > Image > Alphamask

I’ve reported the issue. Hopefully it’s resolved soon. In the mean time, you can download the files you need here – https://raw.githubusercontent.com/tabreturn/processing.py-for-processing-4/main/PythonMode-for-Processing3.zip In your _Documents_ folder on Windows, there should...

I recommend using Processing 3.5.4 for Python Mode (at least while Processing 4 is in beta).

Can you provide the code you're trying to run?

Does placing this at the top of your sketch help? ```python from java.lang import System System.setProperty("jogl.disable.openglcore", "false") def setup(): size(200, 200, P3D) ... ```