mirror of
https://github.com/syoyo/tinygltf.git
synced 2026-08-12 16:29:41 +00:00
Import texture names as well.
Every other structure has it already.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user