usual experiments in the u3d exporting name files management
This commit is contained in:
parent
4bd2caa2e6
commit
1d7ca87fe2
wrap/io_trimesh
|
@ -113,7 +113,11 @@ private:
|
||||||
#if defined(Q_OS_WIN)
|
#if defined(Q_OS_WIN)
|
||||||
convstring = "\""+convstring + "\" -en 1 -rzf 0 -pq "+QString::number(par.positionQuality)+" -input \"" + par._input_file + "\" -output \"" + par._output_file +"\"";
|
convstring = "\""+convstring + "\" -en 1 -rzf 0 -pq "+QString::number(par.positionQuality)+" -input \"" + par._input_file + "\" -output \"" + par._output_file +"\"";
|
||||||
#else
|
#else
|
||||||
convstring = convstring + " -en 1 -rzf 0 -pq "+ QString::number(par.positionQuality)+" -input \"" + par._input_file + "\" -output \"" + par._output_file +"\"";
|
QString mac_input=par._input_file;
|
||||||
|
QString mac_output=par._output_file;
|
||||||
|
//mac_input.replace(QString(" "),QString("\\ "));
|
||||||
|
//mac_output.replace(QString(" "),QString("\\ "));
|
||||||
|
convstring = convstring + " -en 1 -rzf 0 -pq "+ QString::number(par.positionQuality)+" -input \"" + mac_input + "\" -output \"" + mac_output +"\"";
|
||||||
#endif
|
#endif
|
||||||
//QMessageBox::warning(0, QString("Saving Log"), QString("Started conversion executable '%1'").arg(convstring));
|
//QMessageBox::warning(0, QString("Saving Log"), QString("Started conversion executable '%1'").arg(convstring));
|
||||||
qDebug("Starting converter %s", qPrintable(convstring));
|
qDebug("Starting converter %s", qPrintable(convstring));
|
||||||
|
|
Loading…
Reference in New Issue