javae_logo_small
void pauseAll();

Function:
pauses/ un-pauses the keyframe calculation for all layers.

Send:
Nothing.

Returns:
Nothing.

example:
boolean mouseClicked = false;

void draw(){
background(AE.getBG());
AE.drawAll();
if (mouseClicked == true){
AE.pauseAll()
}
}

void mousePressed(){
mouseClicked != mouseClicked;
}