setEaseCurve() public méthode

sets the ease curve for the Tween
public setEaseCurve ( AnimationCurve easeCurve ) : GoTweenConfig
easeCurve AnimationCurve
Résultat GoTweenConfig
Exemple #1
0
 static public int setEaseCurve(IntPtr l)
 {
     try {
         GoTweenConfig self = (GoTweenConfig)checkSelf(l);
         UnityEngine.AnimationCurve a1;
         checkType(l, 2, out a1);
         var ret = self.setEaseCurve(a1);
         pushValue(l, ret);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }