Fixed math problem and display submeshes in editor panel

This commit is contained in:
a.pilote
2022-07-16 21:49:17 -04:00
parent 7d9e5b07b5
commit dbec248d8a
8 changed files with 78 additions and 20 deletions

View File

@@ -0,0 +1,16 @@
#pragma once
#include <src/Core/Core.h>
#include <src/Resource/Model.h>
class ModelResourceInspector
{
private:
Ref<Nuake::Model> _model;
public:
ModelResourceInspector(Ref<Nuake::Model> model);
ModelResourceInspector() = default;
~ModelResourceInspector() = default;
void Draw();
};