if (attrs.getValue("mass") != null)
mass = Float.parseFloat(attrs.getValue("mass"));
if (attrs.getValue("hologram") != null)
isHologram = parseBoolean(attrs.getValue("hologram"));
Domeoid dome = new Domeoid(world, center, planes, radialSamples, radius, outsideView, color, yaw, pitch, roll, mass, isHologram);
world.addWorldObject(dome);
}
else if (localName.equalsIgnoreCase("goody")) {
String type = attrs.getValue("type");
Vector3f center = (attrs.getValue("center") != null) ? parseVector(attrs.getValue("center")) : new Vector3f(0.0f, 0.0f, 0.0f);