if (spatial.getWorldBound() != null) {
str.append(spatial.getWorldBound()).append('\n');
}
str.append('\n');
final SceneHints sceneHints = spatial.getSceneHints();
str.append("Cull hint: ");
str.append(sceneHints.getCullHint()).append('\n');
str.append("Bucket: ");
str.append(sceneHints.getRenderBucketType()).append('\n');
textArea.setText(str.toString());
}