String szText = super.getInfo( obj );
szText = insertSectionBreak( szText );
szText += "Texture Attributes\r\n";
TextureAttributes textureAttribs = (TextureAttributes) obj;
szText += "Perspective Correction Mode: " + textureAttribs.getPerspectiveCorrectionMode() + "\r\n";
Color4f color = new Color4f();
textureAttribs.getTextureBlendColor( color );
szText += "Blend Color: " + color + "\r\n";
szText += "Mode: " + textureAttribs.getTextureMode() + "\r\n";
Transform3D t3d = new Transform3D();
textureAttribs.getTextureTransform( t3d );
szText += "Transform -> \r\n";
szText += t3d + "\r\n";
return szText;