예제 #1
0
 /// <summary>
 /// Adds a key frame.
 /// </summary>
 /// <param name="progress">A progress value between 0.0 and 1.0.</param>
 /// <param name="value">A value.</param>
 /// <param name="alpha">The alpha function used to blend to the next keyframe.</param>
 /// <since_tizen> 3 </since_tizen>
 public void Add(float progress, PropertyValue value, AlphaFunction alpha)
 {
     Interop.KeyFrames.Add(SwigCPtr, progress, PropertyValue.getCPtr(value), AlphaFunction.getCPtr(alpha));
     if (NDalicPINVOKE.SWIGPendingException.Pending)
     {
         throw NDalicPINVOKE.SWIGPendingException.Retrieve();
     }
 }
예제 #2
0
 public void SetAlphaFunction(AlphaFunction alphaFunction)
 {
     Interop.FrameCallback.FrameUpdateCallback_SetAlphaFunction(swigCPtr, AlphaFunction.getCPtr(alphaFunction));
 }