You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ELodMethod m_eLodMethod = ELodMethod::Undefined; // WARNING: May need to change this to type int to support additional values in subclasses, depending on compiler handling of enum
if (fEstimatedLodGenerationTime > 5.0 && !bWarningShown)
179
+
{
180
+
QString sWarningString = QString(tr("The estimated LOD generation time may be more than %1 minutes. Times will vary depending on your CPU.")).arg((int)fEstimatedLodGenerationTime);
181
+
// Warn User with Popup that estimated LOD generation will be more than 5 minutes
if (fEstimatedLodGenerationTime > 5.0 && !bWarningShown)
200
+
{
201
+
QString sWarningString = QString(tr("The estimated LOD generation time may be more than %1 minutes. Times will vary depending on your CPU.")).arg((int)fEstimatedLodGenerationTime);
202
+
// Warn User with Popup that estimated LOD generation will be more than 5 minutes
if (fEstimatedLodGenerationTime > 5.0 && !bWarningShown)
192
215
{
193
216
QString sWarningString = QString(tr("The estimated LOD generation time may be more than %1 minutes. Times will vary depending on your CPU.")).arg((int) fEstimatedLodGenerationTime);
194
217
// Warn User with Popup that estimated LOD generation will be more than 5 minutes
195
218
QMessageBox::warning(0, "Daz Bridge",
196
219
sWarningString, QMessageBox::Ok);
220
+
bWarningShown = true;
197
221
}
198
222
199
223
}
@@ -282,9 +306,9 @@ int DzBridgeLodSettingsDialog::getSourceVertexCount()
0 commit comments