G4P Lib - Slow Loading & GUI Builder Crashing Issues

G4P hooks into the Processing event cycle and draws the GUI after the draw() method has been executed so that the controls appear on top of the display so there is nothing in G4P to help.

I have not tried this so I have no idea if it works but might fit your needs …

void draw(){
    background(128); // choode your own colour
    if(frameCount <  2) return; // first two frames are blank but does not stop G4P
    // You normal drawing code
}

I deliberately avoided including menus and popup menus in G4P but tooltips is a good idea. :+1:

Ooops nearly forgot :partying_face: G4P V4.3.9 released 3th June 2023 includes tooltips (see example that comes with library)

2 Likes