Exemplo n.º 1
0
 static public int get_list(IntPtr l)
 {
     try {
         BindDropdownData self = (BindDropdownData)checkSelf(l);
         pushValue(l, self.list);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Exemplo n.º 2
0
 static public int RefreshDropdownData(IntPtr l)
 {
     try {
         BindDropdownData self = (BindDropdownData)checkSelf(l);
         self.RefreshDropdownData();
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Exemplo n.º 3
0
 static public int set_list(IntPtr l)
 {
     try {
         BindDropdownData self = (BindDropdownData)checkSelf(l);
         System.Collections.Generic.List <UnityEngine.UI.Dropdown.OptionData> v;
         checkType(l, 2, out v);
         self.list = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Exemplo n.º 4
0
 static public int SetItems(IntPtr l)
 {
     try {
         BindDropdownData self = (BindDropdownData)checkSelf(l);
         System.String    a1;
         checkType(l, 2, out a1);
         self.SetItems(a1);
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Exemplo n.º 5
0
 static public int set_dropdown(IntPtr l)
 {
     try {
         BindDropdownData        self = (BindDropdownData)checkSelf(l);
         UnityEngine.UI.Dropdown v;
         checkType(l, 2, out v);
         self.dropdown = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }