diff --git a/CHANGELOG.md b/CHANGELOG.md index 23d93ce..b10951d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +### 2.1.3 - UNRELEASED + +* Fixed a broken animation control in the Cesium preview. +* Fixed some bugs exposed by Project Polly from the Khronos Blender Exporter. + ### 2.1.2 - 2017-12-01 * Fixed file path problems in glTF Preview window for Mac and Linux systems. diff --git a/pages/cesiumView.js b/pages/cesiumView.js index 75ef4bd..d803801 100644 --- a/pages/cesiumView.js +++ b/pages/cesiumView.js @@ -33,7 +33,7 @@ var CesiumView = function() { anim.animation = undefined; } else { anim.animation = model.activeAnimations.add({ - name: anim.index, + index: anim.index, loop: Cesium.ModelAnimationLoop.REPEAT }); }