corrected bug in the exporting of the texture file name (removed extra space) (thnx to anonymous bug submitter)
This commit is contained in:
parent
355edd042e
commit
96d770c828
|
@ -271,7 +271,7 @@ namespace vcg {
|
||||||
if(m.textures.size())
|
if(m.textures.size())
|
||||||
{
|
{
|
||||||
fprintf(fp,
|
fprintf(fp,
|
||||||
" texture ImageTexture { url \" %s \" }\n"
|
" texture ImageTexture { url \"%s\" }\n"
|
||||||
,m.textures[0].c_str()
|
,m.textures[0].c_str()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue