Merge branch 'feat/add-engines-and-add-cleaning' into 'master'
Add Render engines and add clean after error See merge request sheepitrenderfarm/client!230
This commit is contained in:
@@ -1073,10 +1073,12 @@ import java.util.regex.Pattern;
|
|||||||
// Saved: '/tmp/cache/8_0001.png'
|
// Saved: '/tmp/cache/8_0001.png'
|
||||||
return Error.Type.GPU_NOT_SUPPORTED;
|
return Error.Type.GPU_NOT_SUPPORTED;
|
||||||
}
|
}
|
||||||
else if (line.contains("Engine 'CYCLES' not available for scene") || line.contains("Engine 'BLENDER_EEVEE' not available for scene")) {
|
else if (line.contains("Engine 'CYCLES' not available for scene") || line.contains("Engine 'BLENDER_EEVEE' not available for scene") || line.contains("Engine 'BLENDER_WORKBENCH' not available for scene") || line.contains("Engine 'HYDRA_STORM' not available for scene")) {
|
||||||
|
this.configuration.cleanWorkingDirectory();
|
||||||
return Error.Type.ENGINE_NOT_AVAILABLE;
|
return Error.Type.ENGINE_NOT_AVAILABLE;
|
||||||
}
|
}
|
||||||
else if (line.contains("Warning: Cycles is not enabled!")) {
|
else if (line.contains("Warning: Cycles is not enabled!")) {
|
||||||
|
this.configuration.cleanWorkingDirectory();
|
||||||
return Error.Type.ENGINE_NOT_AVAILABLE;
|
return Error.Type.ENGINE_NOT_AVAILABLE;
|
||||||
}
|
}
|
||||||
else if (line.contains("OpenImageDenoise error: SSE4.1 support is required at minimum") || line.contains("OpenImageDenoiser is not supported on this CPU:") || line.contains("No device available to denoise on")) {
|
else if (line.contains("OpenImageDenoise error: SSE4.1 support is required at minimum") || line.contains("OpenImageDenoiser is not supported on this CPU:") || line.contains("No device available to denoise on")) {
|
||||||
|
|||||||
Reference in New Issue
Block a user