aboutsummaryrefslogtreecommitdiff
path: root/js/panels/Timeline/Tween.reel
diff options
context:
space:
mode:
authorJonathan Duran2012-07-02 09:13:21 -0700
committerJonathan Duran2012-07-02 09:13:21 -0700
commit2bba5361f817e96b4f84bdf5e472358da3dcec77 (patch)
tree56412c2fc488a051fd5c10026da763fdcf4bb937 /js/panels/Timeline/Tween.reel
parent2fa7782ef03fcbcd4cd176ca4850b764478da342 (diff)
downloadninja-2bba5361f817e96b4f84bdf5e472358da3dcec77.tar.gz
Fix 3d rotate tweens not showing up
Signed-off-by: Jonathan Duran <jduran@motorola.com>
Diffstat (limited to 'js/panels/Timeline/Tween.reel')
-rw-r--r--js/panels/Timeline/Tween.reel/Tween.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/panels/Timeline/Tween.reel/Tween.js b/js/panels/Timeline/Tween.reel/Tween.js
index fe9b70d3..ae8acc57 100644
--- a/js/panels/Timeline/Tween.reel/Tween.js
+++ b/js/panels/Timeline/Tween.reel/Tween.js
@@ -250,7 +250,7 @@ var Tween = exports.Tween = Montage.create(Component, {
250 this.isTweenAnimated = true; 250 this.isTweenAnimated = true;
251 } 251 }
252 252
253 if (eventDetail.source === "translateTool") { 253 if (eventDetail.source === "translateTool" || eventDetail.source === "rotateTool") {
254 var arrMat = eventDetail.data.value[0].properties.mat, 254 var arrMat = eventDetail.data.value[0].properties.mat,
255 strTweenProperty = "perspective(1400) matrix3d(" + arrMat.join() + ")"; 255 strTweenProperty = "perspective(1400) matrix3d(" + arrMat.join() + ")";
256 256