1
0
forked from cgvr/DeltaVR

pipeline script passes generated model filepath to Unity

This commit is contained in:
Henri Sellis
2025-11-02 17:20:41 +02:00
parent f8ca8570af
commit 1b0d9fd0b0
2 changed files with 35 additions and 6 deletions

View File

@@ -104,7 +104,8 @@ def main():
print(f"Generated image file: {image_path}")
model_path = pipeline_folder / "models" / timestamp
image_to_3d(image_path, model_path)
print(f"Generated 3D model file: {model_path}")
model_file_path = model_path / "0" / "mesh.glb"
print(f"Generated 3D model file: {model_file_path}")
if __name__ == "__main__":