Move onnx to lab

This commit is contained in:
luboslenco
2023-12-01 16:48:47 +01:00
parent 1f61093527
commit c0bccb6599
3 changed files with 4 additions and 2 deletions
+1
View File
@@ -4,4 +4,5 @@
*.blend1
armorlab/Assets/models/*.onnx
armorlab/Assets/models/*.txt
armorlab/onnx
glsl_to_spirv
+1
View File
@@ -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
```
+2 -2
View File
@@ -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) {