mirror of
https://git.mirrors.martin98.com/https://github.com/syoyo/tinygltf.git
synced 2025-08-14 09:05:54 +08:00
Merge pull request #107 from Selmar/serialization_fixes
Add missing serialization of `sampler.wrapR`
This commit is contained in:
commit
6af9e886cd
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user