mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 07:58:59 +02:00
Removed unused library
This commit is contained in:
parent
6c553e5923
commit
2fa7c0a07d
3 changed files with 1 additions and 13 deletions
|
@ -51,16 +51,6 @@ FBXBaker::~FBXBaker() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//void FBXBaker::abort() {
|
|
||||||
// Baker::abort();
|
|
||||||
//
|
|
||||||
// // tell our underlying TextureBaker instances to abort
|
|
||||||
// // the FBXBaker will wait until all are aborted before emitting its own abort signal
|
|
||||||
// for (auto& textureBaker : bakingTextures) {
|
|
||||||
// textureBaker->abort();
|
|
||||||
// }
|
|
||||||
//}
|
|
||||||
|
|
||||||
void FBXBaker::bake() {
|
void FBXBaker::bake() {
|
||||||
qDebug() << "FBXBaker" << modelURL << "bake starting";
|
qDebug() << "FBXBaker" << modelURL << "bake starting";
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,6 @@ public:
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
virtual void bake() override;
|
virtual void bake() override;
|
||||||
//virtual void abort() override;
|
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void sourceCopyReadyToLoad();
|
void sourceCopyReadyToLoad();
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
|
|
||||||
#include "ModelBaker.h"
|
#include "ModelBaker.h"
|
||||||
|
|
||||||
#include <image\Image.h>
|
|
||||||
#include <PathUtils.h>
|
#include <PathUtils.h>
|
||||||
|
|
||||||
#include <FBXReader.h>
|
#include <FBXReader.h>
|
||||||
|
@ -45,7 +44,7 @@ void ModelBaker::abort() {
|
||||||
Baker::abort();
|
Baker::abort();
|
||||||
|
|
||||||
// tell our underlying TextureBaker instances to abort
|
// tell our underlying TextureBaker instances to abort
|
||||||
// the FBXBaker will wait until all are aborted before emitting its own abort signal
|
// the ModelBaker will wait until all are aborted before emitting its own abort signal
|
||||||
for (auto& textureBaker : bakingTextures) {
|
for (auto& textureBaker : bakingTextures) {
|
||||||
textureBaker->abort();
|
textureBaker->abort();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue