예제 #1
0
 public void Execute()
 {
     if (content == null)
     {
         content = GetComponent <EnvelopContent>();
     }
     content.Execute();
 }
예제 #2
0
 static public int Execute(IntPtr l)
 {
     try {
         EnvelopContent self = (EnvelopContent)checkSelf(l);
         self.Execute();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
예제 #3
0
 static public int get_padRight(IntPtr l)
 {
     try {
         EnvelopContent self = (EnvelopContent)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.padRight);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
예제 #4
0
 static public int set_padRight(IntPtr l)
 {
     try {
         EnvelopContent self = (EnvelopContent)checkSelf(l);
         System.Int32   v;
         checkType(l, 2, out v);
         self.padRight = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
예제 #5
0
 static public int set_targetRoot(IntPtr l)
 {
     try {
         EnvelopContent        self = (EnvelopContent)checkSelf(l);
         UnityEngine.Transform v;
         checkType(l, 2, out v);
         self.targetRoot = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }