1
0

Load vertex coordinates from glTF buffer

This commit is contained in:
JosiahWI
2022-11-06 07:55:09 -06:00
parent 48751c15f6
commit 46148bbf61
3 changed files with 58 additions and 10 deletions

View File

@@ -6,6 +6,8 @@
#include "IReadFile.h"
#include "path.h"
#include <tiny_gltf.h>
namespace irr
{
@@ -22,7 +24,7 @@ public:
IAnimatedMesh* createMesh(io::IReadFile* file) override;
private:
bool tryParseGLTF(io::IReadFile* file) const;
bool tryParseGLTF(io::IReadFile* file, tinygltf::Model& model) const;
};
} // namespace scene