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=727c1393e9956e2627dea383a9999e21fa77290d;hp=ec587fee5c03df3e4dc0d0e9e956197fc21e500b;hb=6843654a76dd5ac486ec3dc69e32798023dda176;hpb=928136dbb9e23970f3894eabc7c8b224003b77be diff --git a/plugins/dali-script-v8/docs/content/animation.js b/plugins/dali-script-v8/docs/content/animation.js index ec587fe..727c139 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; } @@ -118,7 +118,8 @@ The example below does the following with a single animation object: - rotates the image actor - magnifies and color shifts the image using a fragment shader - +![ ](../assets/img/shaders/shader-animation.png) + ``` @@ -209,7 +210,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();