Inheritance: MonoBehaviour
Exemplo n.º 1
0
 static public int get_order(IntPtr l)
 {
     try {
         UIJoint self = (UIJoint)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.order);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Exemplo n.º 2
0
 static public int set_order(IntPtr l)
 {
     try {
         UIJoint      self = (UIJoint)checkSelf(l);
         System.Int32 v;
         checkType(l, 2, out v);
         self.order = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }