DALi C# binding - Change Animte APIs to use values instead of DALi properties 89/92589/7
authorRavi Nanjundappa <nravi.n@samsung.com>
Mon, 17 Oct 2016 12:53:54 +0000 (18:23 +0530)
committerRavi Nanjundappa <nravi.n@samsung.com>
Fri, 21 Oct 2016 12:38:32 +0000 (18:08 +0530)
commit45a1d8415ea0a2265d31f5307ee3b0f681ef5279
tree7df3d6032039dcd3cf6ca37866b9d3e7b0ae5d51
parent2985aed6fcace8037f075d1598e8a454c2243ff7
DALi C# binding - Change Animte APIs to use values instead of DALi properties

- Injected the code using swig typemap to change the animate apis to make use of values instead of DALi properties.
- Modified hello-world.cs file to reflect these changes.

Earlier Usage :
_animation.AnimateTo(new Property(_text, Actor.Property.ORIENTATION), new Property.Value(new Quaternion( new Radian( new Degree( 180.0f ) ) ...)

New Usage :
_animation.AnimateTo(_text, Animation.ORIENTATION, new Quaternion( new Radian( new Degree( 180.0f ) ) ...)

Change-Id: Icf11007231f34708071b17e8ebca9d512cbc25c2
Signed-off-by: Ravi Nanjundappa <nravi.n@samsung.com>
plugins/dali-swig/SWIG/events/animation-event.i
plugins/dali-swig/examples/hello-world.cs