* class Entity as the parent
*/
protected void addSubEntity(Entity subEntity, Node subNode) {
// Create the render component that associates the node with the Entity
RenderManager rm = ClientContextJME.getWorldManager().getRenderManager();
RenderComponent thisRC = rm.createRenderComponent(subNode);
subEntity.addComponent(RenderComponent.class, thisRC);
// Add this Entity to the parent Entity
RenderComponent parentRC = this.getComponent(RenderComponent.class);
thisRC.setAttachPoint(parentRC.getSceneRoot());
this.addEntity(subEntity);
}