X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=plugins%2Fdali-script-v8%2Fdocs%2Fcontent%2Fanimation.js;h=33c64f8114b04a48318424ed7fe45487051c9cbd;hp=ec587fee5c03df3e4dc0d0e9e956197fc21e500b;hb=070dc0823710d9776fb368151f0a9e4d82bdf158;hpb=c350c8cf7b59f38ab4cf1e10d27933d98a208d28;ds=sidebyside diff --git a/plugins/dali-script-v8/docs/content/animation.js b/plugins/dali-script-v8/docs/content/animation.js index ec587fe..33c64f8 100644 --- a/plugins/dali-script-v8/docs/content/animation.js +++ b/plugins/dali-script-v8/docs/content/animation.js @@ -68,8 +68,8 @@ myActor2.position=[ 100,0,-2000]; // x = 100, y = 0 , z = -2000 function createAnimation() { var startRotation = new dali.Rotation(180, -180, 0); - myActor1.rotation = startRotation; - myActor2.rotation = startRotation; + myActor1.orientation = startRotation; + myActor2.orientation = startRotation; dali.stage.add( myActor1 ); dali.stage.add( myActor2 ); @@ -90,7 +90,7 @@ function createAnimation() { var endRotation = new dali.Rotation(0,0,0); animOptions.alpha = "easeInOutSine"; - anim.animateTo(myActor1, "rotation", endRotation, animOptions); + anim.animateTo(myActor1, "orientation", endRotation, animOptions); // Delay the myActor2 by a second animOptions.delay = 0.0; @@ -99,7 +99,7 @@ function createAnimation() { // rotate back to correct orientation animOptions.alpha = "easeInOutSine"; - anim.animateTo(myActor2, "rotation", endRotation, animOptions); + anim.animateTo(myActor2, "orientation", endRotation, animOptions); return anim; } @@ -209,7 +209,7 @@ var shaderAnim = createShaderAnimation( shaderEffect, color,zoom, duration, dela // also rotate the imageActor 90 degrees at the same time. var rotation = new dali.Rotation(90,0,0,1); -shaderAnim.animateTo(imageActor, "rotation", rotation, { alpha:"linear", duration:duration, delay:delay }); +shaderAnim.animateTo(imageActor, "orientation", rotation, { alpha:"linear", duration:duration, delay:delay }); shaderAnim.play();