From 9569a05857f30a49d8910f80150058525333a545 Mon Sep 17 00:00:00 2001 From: Ed Mackey Date: Fri, 15 Dec 2017 11:07:24 -0500 Subject: [PATCH] Fix busted Cesium animation controls --- CHANGELOG.md | 5 +++++ pages/cesiumView.js | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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 }); }