Support BlendPoint of Animation 53/292453/2
authorseungho baek <sbsh.baek@samsung.com>
Mon, 8 May 2023 09:20:21 +0000 (18:20 +0900)
committerseungho baek <sbsh.baek@samsung.com>
Mon, 8 May 2023 09:21:34 +0000 (18:21 +0900)
Change-Id: Id42fa5e5eec1d5a8f977ccce346efe37f360c68e
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
dali-csharp-binder/src/animation-wrap.cpp

index 5b062b2..0cf06c9 100755 (executable)
@@ -557,7 +557,6 @@ SWIGEXPORT void SWIGSTDCALL CSharp_Dali_Animation_SetProgressNotification(void*
 
 }
 
-
 SWIGEXPORT float SWIGSTDCALL CSharp_Dali_Animation_GetProgressNotification(void * jarg1) {
   float jresult ;
   Dali::Animation* argp1 = (Dali::Animation *) jarg1 ;
@@ -574,6 +573,30 @@ SWIGEXPORT float SWIGSTDCALL CSharp_Dali_Animation_GetProgressNotification(void
   return jresult;
 }
 
+SWIGEXPORT void SWIGSTDCALL CSharp_Dali_Animation_SetBlendPoint(void* csAnimation, float blendPoint) {
+  Dali::Animation* animation = (Dali::Animation *) csAnimation ;
+
+  {
+    try {
+      animation->SetBlendPoint(blendPoint);
+    } CALL_CATCH_EXCEPTION();
+  }
+
+}
+
+SWIGEXPORT float SWIGSTDCALL CSharp_Dali_Animation_GetBlendPoint(void * csAnimation) {
+  Dali::Animation* animation = (Dali::Animation *) csAnimation ;
+  float result;
+
+  {
+    try {
+      result = animation->GetBlendPoint();
+    } CALL_CATCH_EXCEPTION(0);
+
+  }
+  return result;
+}
+
 SWIGEXPORT void SWIGSTDCALL CSharp_Dali_Animation_Clear(void * jarg1) {
   Dali::Animation *arg1 = (Dali::Animation *) 0 ;