* @param dNode
* @return a new Ardor3D node, created from the given <node> element
*/
@SuppressWarnings("unchecked")
private Node buildNode(final Element dNode, JointNode jointNode) {
final NodeType nodeType = getNodeType(dNode);
final JointNode jointChildNode;
if (nodeType == NodeType.JOINT) {
String name = dNode.getAttributeValue("name");
if (name == null) {
name = dNode.getAttributeValue("id");