コード例 #1
0
 static public int get_LuaFixedUpdateInterval(IntPtr l)
 {
     try {
         LBoot.LuaFixedUpdateBehaviour self = (LBoot.LuaFixedUpdateBehaviour)checkSelf(l);
         pushValue(l, self.LuaFixedUpdateInterval);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
コード例 #2
0
 static public int constructor(IntPtr l)
 {
     try {
         LBoot.LuaFixedUpdateBehaviour o;
         o = new LBoot.LuaFixedUpdateBehaviour();
         pushValue(l, o);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
コード例 #3
0
 static public int set_LuaFixedUpdateInterval(IntPtr l)
 {
     try {
         LBoot.LuaFixedUpdateBehaviour self = (LBoot.LuaFixedUpdateBehaviour)checkSelf(l);
         float v;
         checkType(l, 2, out v);
         self.LuaFixedUpdateInterval = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }