diff --git a/CHANGES.md b/CHANGES.md index 1bdbba6beb4..2cd1c2c0c44 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,7 @@ Change Log ### 1.36 - 2017-08-01 +* Fixed a bug where a Model's compressed textures were not being displayed. [#5596](https://github.com/AnalyticalGraphicsInc/cesium/pull/5596) * Fixed a bug where jsep was undefined when using webpack [#5593](https://github.com/AnalyticalGraphicsInc/cesium/issues/5593) ### 1.35 - 2017-07-05 diff --git a/Source/Scene/Model.js b/Source/Scene/Model.js index 0759964059f..06425037b1f 100644 --- a/Source/Scene/Model.js +++ b/Source/Scene/Model.js @@ -1610,7 +1610,7 @@ define([ }); } else { ++model._loadResources.pendingTextureLoads; - var imagePath = joinUrls(model._baseUri, gltfImage.uri); + var imagePath = joinUrls(model._baseUri, uri); var promise; if (ktxRegex.test(imagePath)) {