Hi,
Xith3DLogoTest throws NPE:
java.lang.NullPointerException
at org.xith3d.scenegraph.utils.ShapeUtils.setShapesTransparency(ShapeUtils.java:68)
at org.xith3d.ui.hud.widgets.Label.setTransparency(Label.java:575)
at org.xith3d.utility.general.Xith3DLogo.createHUD(Xith3DLogo.java:211)
at org.xith3d.utility.general.Xith3DLogo.<init>(Xith3DLogo.java:395)
at org.xith3d.test.etc.Xith3DLogoTest.<init>(Xith3DLogoTest.java:76)
...
possible solution: null-check before calling setShapesTransparency()
Label.java
public void setTransparency( float transparency )
{
super.setTransparency( transparency );
if( shape != null )
ShapeUtils.setShapesTransparency( shape, transparency, true );
}
Regards