From fbc429577031f29f1fa0a93503ae1438fc8c918e Mon Sep 17 00:00:00 2001 From: Syoyo Fujita Date: Thu, 16 May 2019 16:54:28 +0900 Subject: [PATCH] Remove CATMULLROMSPLINE, which was removed in the final glTF 2.0 spec. --- tiny_gltf.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tiny_gltf.h b/tiny_gltf.h index 3c1015a..d7d59fb 100644 --- a/tiny_gltf.h +++ b/tiny_gltf.h @@ -437,8 +437,7 @@ struct AnimationChannel { struct AnimationSampler { int input; // required int output; // required - std::string interpolation; // in ["LINEAR", "STEP", "CATMULLROMSPLINE", - // "CUBICSPLINE"], default "LINEAR" + std::string interpolation; // "LINEAR", "STEP","CUBICSPLINE" or user defined string. default "LINEAR" Value extras; AnimationSampler() : input(-1), output(-1), interpolation("LINEAR") {}