mirror of
https://github.com/LinoSchmidt/StickExporterTX.git
synced 2026-03-21 10:00:47 +01:00
Fixed default output path not found
This commit is contained in:
@@ -1,11 +1,10 @@
|
||||
import path from 'path';
|
||||
import {app} from '@electron/remote';
|
||||
import getPath from 'platform-folders';
|
||||
|
||||
export const dataPath = app.getPath('userData');
|
||||
export const SettingPath = path.join(dataPath, "settings.xml");
|
||||
|
||||
export const defaultOutputPath = path.join(getPath('videos') || "", "StickExporterTX");
|
||||
export const defaultOutputPath = path.join(app.getPath('videos'), "StickExporterTX");
|
||||
|
||||
export const blenderPath = path.join("assets", "blender", "blender");
|
||||
export const templatePath = path.join("assets", "template.blend");
|
||||
|
||||
Reference in New Issue
Block a user