Hello @Aryszin,
Please include version of Processing that you are using in topics.
FX2D and Processing 4 GitHub issue:
If you are using the FX2D renderer (see issues above for other use) with Processing 4.2 you must install the library first:
import processing.javafx.*;
void setup()
{
size (500, 500, FX2D);
println("Renderer: " + g.getClass().getName());
}
void draw()
{
}
Related:
When sifting through information and history be mindful of the chronology and seek out the most current information.
:)