diff --git a/.gitignore b/.gitignore index 0b376e17..bd3347e3 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ *.blend1 armorlab/Assets/models/*.onnx armorlab/Assets/models/*.txt +armorlab/onnx glsl_to_spirv diff --git a/armorlab/README.md b/armorlab/README.md index 364fc169..2b5d0e30 100644 --- a/armorlab/README.md +++ b/armorlab/README.md @@ -12,6 +12,7 @@ armorlab ```bash git clone --recursive https://github.com/armory3d/armortools cd armortools/armorlab +git clone https://github.com/armory3d/onnx_bin onnx # Unpack `models.zip` from https://github.com/armory3d/armorai/releases into `Assets/models` using 7-Zip - Extract Here ``` diff --git a/armorlab/khafile.js b/armorlab/khafile.js index 295c6f3e..6adf445f 100644 --- a/armorlab/khafile.js +++ b/armorlab/khafile.js @@ -25,10 +25,10 @@ else if (flags.ios) { } if (process.platform === "win32") { - project.addAssets("../armorcore/Libraries/onnx/win32/*.dll", { destination: "{name}" }); + project.addAssets("onnx/win32/*.dll", { destination: "{name}" }); } else if (process.platform === "linux") { - project.addAssets("../armorcore/Libraries/onnx/linux/*.so.*", { destination: "{name}" }); // Versioned lib + project.addAssets("onnx/linux/*.so.*", { destination: "{name}" }); // Versioned lib } if (flags.raytrace) {