From af4109e6e3ab1c85ddf5102bb3eadfa4e2d6f906 Mon Sep 17 00:00:00 2001 From: Syoyo Fujita Date: Thu, 24 Nov 2016 16:20:57 +0900 Subject: [PATCH] Update glTF sample model repo path. --- test_runner.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test_runner.py b/test_runner.py index 9c481b9..89ebfbe 100644 --- a/test_runner.py +++ b/test_runner.py @@ -10,8 +10,9 @@ import subprocess # -- config ----------------------- -# Absolute path pointing to your cloned git repo of https://github.com/KhronosGroup/glTF/sampleModels -base_model_dir = "/home/syoyo/work/glTF/sampleModels" +# Absolute path pointing to your cloned git repo of https://github.com/KhronosGroup/glTF-Sample-Models +sample_model_dir = "/home/syoyo/work/glTF-Sample-Models" +base_model_dir = os.path.join(sample_model_dir, "1.0") kinds = [ "glTF", "glTF-Binary", "glTF-Embedded", "glTF-MaterialsCommon"] # ---------------------------------