Add SHEEPIT_DETECT_DEVICE_ERROR

This commit is contained in:
Raimund58
2023-01-12 16:02:03 +00:00
committed by harlekin
parent d88b1e829b
commit a762fc3d97
2 changed files with 11 additions and 0 deletions

View File

@@ -55,6 +55,7 @@ public class Error {
CURRENTLY_HEADLESS(28),
DENOISING_NOT_SUPPORTED(29),
CANNOT_READ_FILE(30),
SHEEPIT_DETECT_DEVICE_ERROR(31),
// internal error handling
NO_SPACE_LEFT_ON_DEVICE(100),
@@ -225,6 +226,8 @@ public class Error {
return "Blender can not open a display to create an OpenGL context needed for EEVEE/GPencil. Will try another project in a few minutes.";
case CANNOT_READ_FILE:
return "Blender failed to read the project files. Will try another project in a few minutes.";
case SHEEPIT_DETECT_DEVICE_ERROR:
return "Blender failed to detect the render device. Please check if you have all the necessary libraries installed and if your drivers are up to date.";
default:
return in.toString();
}