mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-16 09:34:36 +00:00
imagetexture url must be a MFString (double quote)
This commit is contained in:
parent
b5f5e886b8
commit
aac6cdac3d
@ -234,7 +234,7 @@ namespace io {
|
||||
{
|
||||
QDomElement appearance = doc.createElement("Appearance");
|
||||
QDomElement imageTexture = doc.createElement("ImageTexture");
|
||||
imageTexture.setAttribute("url", m.textures[indexTexture].c_str());
|
||||
imageTexture.setAttribute("url", ("\"" + m.textures[indexTexture] + "\"").c_str());
|
||||
appearance.appendChild(imageTexture);
|
||||
shape.appendChild(appearance);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user