if (attrs.getValue("thickness") != null)
thickness = Float.parseFloat(attrs.getValue("thickness"));
if (attrs.getValue("hologram") != null)
isHologram = parseBoolean(attrs.getValue("hologram"));
Ramp ramp = new Ramp(world, base, top, width, thickness, color, isHologram);
world.addWorldObject(ramp);
}
else if (localName.equalsIgnoreCase("dome")) {
Vector3f center;
ColorRGBA color;