mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-14 08:16:03 +02:00
Merge pull request #5637 from hyperlogic/tony/fbx-texture-fix
Resource fix for textures in FBX files.
This commit is contained in:
commit
2bfa121925
1 changed files with 1 additions and 1 deletions
|
@ -1723,7 +1723,7 @@ void GeometryReader::run() {
|
|||
NetworkGeometry::NetworkGeometry(const QUrl& url, bool delayLoad, const QVariantHash& mapping, const QUrl& textureBaseUrl) :
|
||||
_url(url),
|
||||
_mapping(mapping),
|
||||
_textureBaseUrl(textureBaseUrl) {
|
||||
_textureBaseUrl(textureBaseUrl.isValid() ? textureBaseUrl : url) {
|
||||
|
||||
if (delayLoad) {
|
||||
_state = DelayState;
|
||||
|
|
Loading…
Reference in a new issue