String szText = super.getInfo( obj );
szText = insertSectionBreak( szText );
szText += "SpotLight\r\n";
SpotLight spotLight = (SpotLight) obj;
szText += "Concentration: " + spotLight.getConcentration() + "\r\n";
Vector3f direction = new Vector3f();
spotLight.getDirection( direction );
szText += "Direction: " + direction + "\r\n";
szText += "Spread Angle: " + spotLight.getSpreadAngle() + "\r\n";
return szText;