javae_logo_small
void printLayers();

Function:
Prints a list of layer numbers and files to the console. This is useful for troubleshooting.

Send:
Nothing.

Returns:
listing to the console.

example:
void draw(){
//This example will intentionally skip the first layer (0)
for (int i = 1; i < myAE.layerCount(); i++){
myAE.addPX(i,x);
myAE.addPY(i,y);
}
if (showMeList == true){
myAE.printLayers();
}
}