예제 #1
0
 static public int get_SlicedFilled(IntPtr l)
 {
     try {
         mg.org.KUI.KSlider self = (mg.org.KUI.KSlider)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.SlicedFilled);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
예제 #2
0
 static public int set_SlicedFilled(IntPtr l)
 {
     try {
         mg.org.KUI.KSlider self = (mg.org.KUI.KSlider)checkSelf(l);
         bool v;
         checkType(l, 2, out v);
         self.SlicedFilled = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
예제 #3
0
 static public int OnPointerDown(IntPtr l)
 {
     try {
         mg.org.KUI.KSlider self = (mg.org.KUI.KSlider)checkSelf(l);
         UnityEngine.EventSystems.PointerEventData a1;
         checkType(l, 2, out a1);
         self.OnPointerDown(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }