diff --git a/tiny_gltf.h b/tiny_gltf.h index 464fc5a..c7710fc 100644 --- a/tiny_gltf.h +++ b/tiny_gltf.h @@ -4441,6 +4441,7 @@ static void SerializeGltfNode(Node &node, json &o) { static void SerializeGltfSampler(Sampler &sampler, json &o) { SerializeNumberProperty("magFilter", sampler.magFilter, o); SerializeNumberProperty("minFilter", sampler.minFilter, o); + SerializeNumberProperty("wrapR", sampler.wrapR, o); SerializeNumberProperty("wrapS", sampler.wrapS, o); SerializeNumberProperty("wrapT", sampler.wrapT, o);