SetLayoutVertical() public method

Called by the layout system.

public SetLayoutVertical ( ) : void
return void
 static public int SetLayoutVertical(IntPtr l)
 {
     try {
                     #if DEBUG
         var    method     = System.Reflection.MethodBase.GetCurrentMethod();
         string methodName = GetMethodName(method);
                     #if UNITY_5_5_OR_NEWER
         UnityEngine.Profiling.Profiler.BeginSample(methodName);
                     #else
         Profiler.BeginSample(methodName);
                     #endif
                     #endif
         UnityEngine.UI.VerticalLayoutGroup self = (UnityEngine.UI.VerticalLayoutGroup)checkSelf(l);
         self.SetLayoutVertical();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
             #if DEBUG
     finally {
                     #if UNITY_5_5_OR_NEWER
         UnityEngine.Profiling.Profiler.EndSample();
                     #else
         Profiler.EndSample();
                     #endif
     }
             #endif
 }
コード例 #2
0
 static public int SetLayoutVertical(IntPtr l)
 {
     try {
         UnityEngine.UI.VerticalLayoutGroup self = (UnityEngine.UI.VerticalLayoutGroup)checkSelf(l);
         self.SetLayoutVertical();
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 public static int SetLayoutVertical(IntPtr l)
 {
     try {
         UnityEngine.UI.VerticalLayoutGroup self=(UnityEngine.UI.VerticalLayoutGroup)checkSelf(l);
         self.SetLayoutVertical();
         pushValue(l,true);
         return 1;
     }
     catch(Exception e) {
         return error(l,e);
     }
 }
コード例 #4
0
 static int QPYX_SetLayoutVertical_YXQP(IntPtr L_YXQP)
 {
     try
     {
         ToLua.CheckArgsCount(L_YXQP, 1);
         UnityEngine.UI.VerticalLayoutGroup QPYX_obj_YXQP = (UnityEngine.UI.VerticalLayoutGroup)ToLua.CheckObject <UnityEngine.UI.VerticalLayoutGroup>(L_YXQP, 1);
         QPYX_obj_YXQP.SetLayoutVertical();
         return(0);
     }
     catch (Exception e_YXQP)                {
         return(LuaDLL.toluaL_exception(L_YXQP, e_YXQP));
     }
 }
コード例 #5
0
 static int SetLayoutVertical(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         UnityEngine.UI.VerticalLayoutGroup obj = (UnityEngine.UI.VerticalLayoutGroup)ToLua.CheckObject <UnityEngine.UI.VerticalLayoutGroup>(L, 1);
         obj.SetLayoutVertical();
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }