mirror of
https://git.mirrors.martin98.com/https://github.com/syoyo/tinygltf.git
synced 2025-08-14 00:36:00 +08:00
Merge pull request #80 from mosra/texture-name
Import texture names as well
This commit is contained in:
commit
a71be9cc98
@ -456,6 +456,8 @@ struct Image {
|
||||
};
|
||||
|
||||
struct Texture {
|
||||
std::string name;
|
||||
|
||||
int sampler;
|
||||
int source; // Required (not specified in the spec ?)
|
||||
Value extras;
|
||||
@ -2224,6 +2226,8 @@ static bool ParseTexture(Texture *texture, std::string *err, const json &o,
|
||||
ParseExtensionsProperty(&texture->extensions, err, o);
|
||||
ParseExtrasProperty(&texture->extras, o);
|
||||
|
||||
ParseStringProperty(&texture->name, err, o, "name", false);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user