javae_logo_small
color getBG();

Function:
Returns background color from After Effects comp.

Send:
Nothing.

Returns:
comp background (color)

example:
void setup(){
myAE.setUp();
framerate (myAE.getFPS());
size(myAE.getCompX(), myAE.getCompY());
background(myAE.getBG);
}

void draw{
background(myAE.getBG);
myAE.drawAll();
}