vrml addon edit

Hi all,

I’ve a little problem with the vrml exporter:

when I export a vrml with texture, on texture field it write the same texture in 3 ways

Shape {
	appearance Appearance {
		texture ImageTexture {
			url [ "texture_diff.jpeg" "texture_diff.jpeg" C:\file_path	exture_diff.jpeg" ]
		}
	}

but it cause a problem with different app I use for 3D printing, also with Meshlab; of course, deleting two of them and keeping only the texture as following

Shape {
	appearance Appearance {
		texture ImageTexture {
			url [ "texture_diff.jpeg" ]
		}
	}

it works.

Now, the question is:

What I’ve to change on the addon to make it writing only the texture?

thanks in advance, :slight_smile:

n1k0l4