anchoredPosition3D() public method

anchoredPosition3D tween
public anchoredPosition3D ( Vector3 endValue, bool isRelative = false ) : GoTweenConfig,
endValue Vector3
isRelative bool
return GoTweenConfig,
Exemplo n.º 1
0
 static public int anchoredPosition3D(IntPtr l)
 {
     try {
         GoTweenConfig       self = (GoTweenConfig)checkSelf(l);
         UnityEngine.Vector3 a1;
         checkType(l, 2, out a1);
         System.Boolean a2;
         checkType(l, 3, out a2);
         var ret = self.anchoredPosition3D(a1, a2);
         pushValue(l, ret);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }