Added interface for importing models in the Model Editor + fixed bugs

This commit is contained in:
parax0
2015-08-10 21:42:50 -04:00
parent 2967a483d9
commit 4d7774f19e
7 changed files with 130 additions and 30 deletions

View File

@@ -25,6 +25,7 @@ class CModelEditorWindow : public QMainWindow
Ui::CModelEditorWindow *ui;
CRenderer *mpRenderer;
CSceneManager *mpScene;
QString mOutputFilename;
CModel *mpCurrentModel;
CToken mModelToken;
CModelNode *mpCurrentModelNode;
@@ -115,6 +116,10 @@ private slots:
void on_ClearColorPicker_colorChanged(const QColor &);
void on_actionImport_triggered();
void on_actionSave_as_triggered();
signals:
void Closed();
};