aboutsummaryrefslogtreecommitdiff
path: root/js/panels/Timeline/Tween.reel
diff options
context:
space:
mode:
authorJonathan Duran2012-05-14 23:51:34 -0700
committerJonathan Duran2012-05-14 23:51:34 -0700
commit4438dae53bb528d94b9f21272f7c240dd546b0a8 (patch)
tree79c31262d9b8bee25a575a3136753680459ee65b /js/panels/Timeline/Tween.reel
parent13ebb58be961e92ba7c109298ef73daa7dea79c7 (diff)
downloadninja-4438dae53bb528d94b9f21272f7c240dd546b0a8.tar.gz
handle more prop types in subgroup keyframe rules
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.js19
1 files changed, 5 insertions, 14 deletions
diff --git a/js/panels/Timeline/Tween.reel/Tween.js b/js/panels/Timeline/Tween.reel/Tween.js
index 846c2f1c..63dabefe 100644
--- a/js/panels/Timeline/Tween.reel/Tween.js
+++ b/js/panels/Timeline/Tween.reel/Tween.js
@@ -201,28 +201,18 @@ var Tween = exports.Tween = Montage.create(Component, {
201 201
202 setAbsoluteTweenProperties:{ 202 setAbsoluteTweenProperties:{
203 value:function (eventDetail) { 203 value:function (eventDetail) {
204 //console.log(eventDetail);
205
206 // top
207 if(this.parentComponent.parentComponent.animatedElement.offsetTop != this.tweenedProperties["top"]){ 204 if(this.parentComponent.parentComponent.animatedElement.offsetTop != this.tweenedProperties["top"]){
208 this.tweenedProperties["top"] = this.parentComponent.parentComponent.animatedElement.offsetTop; 205 this.tweenedProperties["top"] = this.parentComponent.parentComponent.animatedElement.offsetTop;
209 } 206 }
210
211 // left
212 if(this.parentComponent.parentComponent.animatedElement.offsetLeft != this.tweenedProperties["left"]){ 207 if(this.parentComponent.parentComponent.animatedElement.offsetLeft != this.tweenedProperties["left"]){
213 this.tweenedProperties["left"] = this.parentComponent.parentComponent.animatedElement.offsetLeft; 208 this.tweenedProperties["left"] = this.parentComponent.parentComponent.animatedElement.offsetLeft;
214 } 209 }
215
216 // width
217 if (this.parentComponent.parentComponent.animatedElement.offsetWidth != this.tweenedProperties["width"]){ 210 if (this.parentComponent.parentComponent.animatedElement.offsetWidth != this.tweenedProperties["width"]){
218 this.tweenedProperties["width"] = this.parentComponent.parentComponent.animatedElement.offsetWidth; 211 this.tweenedProperties["width"] = this.parentComponent.parentComponent.animatedElement.offsetWidth;
219 } 212 }
220
221 // height
222 if (this.parentComponent.parentComponent.animatedElement.offsetHeight != this.tweenedProperties["height"]){ 213 if (this.parentComponent.parentComponent.animatedElement.offsetHeight != this.tweenedProperties["height"]){
223 this.tweenedProperties["height"] = this.parentComponent.parentComponent.animatedElement.offsetHeight; 214 this.tweenedProperties["height"] = this.parentComponent.parentComponent.animatedElement.offsetHeight;
224 } 215 }
225
226 // tell track to update css rule 216 // tell track to update css rule
227 this.parentComponent.parentComponent.updateKeyframeRule(); 217 this.parentComponent.parentComponent.updateKeyframeRule();
228 218
@@ -247,21 +237,22 @@ var Tween = exports.Tween = Montage.create(Component, {
247 // ignore top, left, width, and height 237 // ignore top, left, width, and height
248 console.log(eventDetail.data.value[0]); 238 console.log(eventDetail.data.value[0]);
249 this.tweenedProperties[this.parentComponent.parentComponent.trackEditorProperty] = eventDetail.data.value[0]; 239 this.tweenedProperties[this.parentComponent.parentComponent.trackEditorProperty] = eventDetail.data.value[0];
250 console.log(this.tweenedProperties); 240 this.parentComponent.parentComponent.updatePropKeyframeRule();
241
251 } else if(eventDetail.type == "setColor"){ 242 } else if(eventDetail.type == "setColor"){
252 var prop = this.parentComponent.parentComponent.trackEditorProperty; 243 var prop = this.parentComponent.parentComponent.trackEditorProperty;
253 this.tweenedProperties[prop] = eventDetail.data.value.color.css; 244 this.tweenedProperties[prop] = eventDetail.data.value.color.css;
254 this.parentComponent.parentComponent.updatePropKeyframeRule(); 245 this.parentComponent.parentComponent.updatePropKeyframeRule();
246
255 } else if(eventDetail.type == "setProperty"){ 247 } else if(eventDetail.type == "setProperty"){
256 // ignore top, left, width, and height 248 // ignore top, left, width, and height
257 console.log(eventDetail.data.value[0]); 249 console.log(eventDetail.data.value[0]);
258 this.tweenedProperties[this.parentComponent.parentComponent.trackEditorProperty] = eventDetail.data.value[0]; 250 this.tweenedProperties[this.parentComponent.parentComponent.trackEditorProperty] = eventDetail.data.value[0];
259 console.log(this.tweenedProperties); 251 this.parentComponent.parentComponent.updatePropKeyframeRule();
252
260 }else { 253 }else {
261 console.log("TWEEN Unhandled type - setStyleTweenProperty : " + eventDetail.type); 254 console.log("TWEEN Unhandled type - setStyleTweenProperty : " + eventDetail.type);
262 } 255 }
263
264
265 } 256 }
266 }, 257 },
267 258