final Animation anim = RenderingScene._getLogoAnimation(applet, "/net/sf/jiga/xtended/impl/opengl", 0, 29, "", ".png", new Dimension(64, 30));
anim.setReverseEnabled(true);
JComponent renderSettingsPreview = Animation._makeAnimationJComponent(anim);
javax.swing.Timer animT = new javax.swing.Timer(10, new ActionListener() {
public void actionPerformed(ActionEvent e) {
anim.play();
}
});
animT.start();
final JPanel centerPanel = new JPanel(new GridBagLayout(), true);
GridBagConstraints c = new GridBagConstraints();