14 lines
281 B
Batchfile
Executable file
14 lines
281 B
Batchfile
Executable file
ECHO OFF
|
|
|
|
IF "%1"=="" GOTO USAGE
|
|
|
|
"C:/Program Files/Blender Foundation/Blender 2.93/blender.exe" -b -P 2gltf2.py -- %1
|
|
GOTO END
|
|
|
|
:USAGE
|
|
ECHO To glTF 2.0 converter.
|
|
ECHO Supported file formats: .abc .blend .dae .fbx. .obj .ply .stl .wrl .x3d
|
|
ECHO.
|
|
ECHO 2gltf2.bat [filename]
|
|
|
|
:END
|