static public int SetID(IntPtr l) { try { UnityEngine.UI.Extensions.ObjectIdentifier self = (UnityEngine.UI.Extensions.ObjectIdentifier)checkSelf(l); self.SetID(); return(0); } catch (Exception e) { return(error(l, e)); } }
static public int get_idParent(IntPtr l) { try { UnityEngine.UI.Extensions.ObjectIdentifier self = (UnityEngine.UI.Extensions.ObjectIdentifier)checkSelf(l); pushValue(l, self.idParent); return(1); } catch (Exception e) { return(error(l, e)); } }
static public int set_idParent(IntPtr l) { try { UnityEngine.UI.Extensions.ObjectIdentifier self = (UnityEngine.UI.Extensions.ObjectIdentifier)checkSelf(l); System.String v; checkType(l, 2, out v); self.idParent = v; return(0); } catch (Exception e) { return(error(l, e)); } }
static public int set_dontSave(IntPtr l) { try { UnityEngine.UI.Extensions.ObjectIdentifier self = (UnityEngine.UI.Extensions.ObjectIdentifier)checkSelf(l); System.Boolean v; checkType(l, 2, out v); self.dontSave = v; return(0); } catch (Exception e) { return(error(l, e)); } }