static public int Set(IntPtr l) { try { int argc = LuaDLL.lua_gettop(l); if (matchType(l, argc, 2, typeof(Dsl.ISyntaxComponent))) { SkillSystem.SkillDoubleParam self = (SkillSystem.SkillDoubleParam)checkSelf(l); Dsl.ISyntaxComponent a1; checkType(l, 2, out a1); self.Set(a1); pushValue(l, true); return(1); } else if (matchType(l, argc, 2, typeof(double))) { SkillSystem.SkillDoubleParam self = (SkillSystem.SkillDoubleParam)checkSelf(l); System.Double a1; checkType(l, 2, out a1); self.Set(a1); pushValue(l, true); return(1); } pushValue(l, false); LuaDLL.lua_pushstring(l, "No matched override function to call"); return(2); } catch (Exception e) { return(error(l, e)); } }
static public int get_EditableValue(IntPtr l) { try { SkillSystem.SkillDoubleParam self = (SkillSystem.SkillDoubleParam)checkSelf(l); pushValue(l, true); pushValue(l, self.EditableValue); return(2); } catch (Exception e) { return(error(l, e)); } }
static public int constructor(IntPtr l) { try { SkillSystem.SkillDoubleParam o; o = new SkillSystem.SkillDoubleParam(); pushValue(l, true); pushValue(l, o); return(2); } catch (Exception e) { return(error(l, e)); } }
static public int CopyFrom(IntPtr l) { try { SkillSystem.SkillDoubleParam self = (SkillSystem.SkillDoubleParam)checkSelf(l); SkillSystem.SkillNonStringParam <System.Double> a1; checkType(l, 2, out a1); self.CopyFrom(a1); pushValue(l, true); return(1); } catch (Exception e) { return(error(l, e)); } }
static public int set_EditableValue(IntPtr l) { try { SkillSystem.SkillDoubleParam self = (SkillSystem.SkillDoubleParam)checkSelf(l); System.Object v; checkType(l, 2, out v); self.EditableValue = v; pushValue(l, true); return(1); } catch (Exception e) { return(error(l, e)); } }
static public int Get(IntPtr l) { try { SkillSystem.SkillDoubleParam self = (SkillSystem.SkillDoubleParam)checkSelf(l); SkillSystem.SkillInstance a1; checkType(l, 2, out a1); var ret = self.Get(a1); pushValue(l, true); pushValue(l, ret); return(2); } catch (Exception e) { return(error(l, e)); } }