mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +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() {
|
||||
qDebug() << "FBXBaker" << modelURL << "bake starting";
|
||||
|
||||
|
|
|
@ -42,7 +42,6 @@ public:
|
|||
|
||||
public slots:
|
||||
virtual void bake() override;
|
||||
//virtual void abort() override;
|
||||
|
||||
signals:
|
||||
void sourceCopyReadyToLoad();
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
|
||||
#include "ModelBaker.h"
|
||||
|
||||
#include <image\Image.h>
|
||||
#include <PathUtils.h>
|
||||
|
||||
#include <FBXReader.h>
|
||||
|
@ -45,7 +44,7 @@ void ModelBaker::abort() {
|
|||
Baker::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) {
|
||||
textureBaker->abort();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue