Added Gorrilla-Audio and Tinygltf Library

Started laying out a assetManager / ModelImporter
This commit is contained in:
2022-05-04 11:10:26 +02:00
parent 8efa1d1d0a
commit 9c92cc05b7
14 changed files with 8810 additions and 33 deletions

View File

@ -0,0 +1,22 @@
#pragma once
#define TINYGLTF_IMPLEMENTATION
#define STB_IMAGE_IMPLEMENTATION
#define STB_IMAGE_WRITE_IMPLEMENTATION
#define TINYGLTF_NO_EXTERNAL_IMAGE
#include <tiny_gltf.h>
#include <spdlog/spdlog.h>
#include <string>
class ModelImporter {
private:
void ImportFBX(std::string path);
void ImportBlend(std::string path);
void ImportGLTF(std::string path);
void ImportOBJ(std::string path);
public:
void Import(std::string path);
static void Test();
};