Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
prism/tools/modelcompiler/include/modeleditor.hpp
2020-08-11 12:07:21 -04:00

21 lines
398 B
C++
Executable file

#pragma once
#include "commoneditor.hpp"
class ModelEditor : public CommonEditor {
public:
ModelEditor();
void drawUI() override;
struct Flags {
bool hide_ui = false;
bool compile_static = false;
bool export_animations = true;
bool export_materials = true;
} flags;
std::string data_path, model_path;
void compile_model();
};