mirror of
https://github.com/LinoSchmidt/StickExporterTX.git
synced 2026-03-21 10:00:47 +01:00
Added "could not start blender" error message
This commit is contained in:
@@ -17,7 +17,9 @@ const blenderStartString = [
|
||||
dataPath.replaceAll("\\", "/")
|
||||
]
|
||||
|
||||
let blenderConsole = spawn(blenderPath, blenderStartString);
|
||||
let blenderConsole = spawn(blenderPath, blenderStartString).on('error', function(err) {
|
||||
logger.errorMSG("Could not start blender: " + err.toString());
|
||||
});
|
||||
let readyToAcceptCommand = false;
|
||||
let renderingPicture = false;
|
||||
let renderingVideo = false;
|
||||
|
||||
Reference in New Issue
Block a user