if (instance instanceof Movie) {
instanceDesc = ((Movie) instance).symbol().name();
} else if (instance instanceof Texture) {
ImageLayer tLayer = ((Texture) instance).layer();
instanceDesc = "Texture (" + tLayer.width() + " x " + tLayer.height() + ")";
if (tLayer.destroyed()) {
instanceDesc += " (DESTROYED)";
}
} else if (instance != null) {
instanceDesc = instance.toString();
} else {