Could someone please add these lines to the xith core?
com.xith3d.scenegraph.Node
private static boolean defaultPickable = false;
private boolean pickable = defaultPickable;
/**
* Is a Node object pickable when created?
*/
public static boolean getDefaultPickable()
{
return(defaultPickable);
}
/**
* Each Node object will be pickable by default following this static flag
*
* @param b pickable by default?
*/
public static void setDefaultPickable(boolean b)
{
defaultPickable = b;
}
With these changes we could use the setPickable flag with the PickingLibrary.