public EleVertScrollRgn(EleBaseRect parent, ScrollInfo horiz, ScrollInfo vert, bool showBack, float sensitivity, string name = "") : base(parent, horiz, vert, showBack, sensitivity, name) { this._Create(parent, horiz, vert, showBack, new Vector2(-1.0f, -1.0f), sensitivity, name); }
public EleImg(EleBaseRect parent, Sprite sprite, Vector2 size, string name = "") : base(parent, size, name) { this._Create(parent, sprite, size, name); }
public EleImg(EleBaseRect parent, Sprite sprite) : base(parent) { this._Create(parent, sprite, new Vector2(-1.0f, -1.0f), ""); }
public EleTex(EleBaseRect parent, Texture t, Vector2 size, string name = "") : base(parent, size, name) { this._Create(parent, t, size, name); }
public EleTex(EleBaseRect parent, Texture t) : base(parent) { this._Create(parent, t, new Vector2(-1.0f, -1.0f), ""); }
public EleGenButton(EleBaseRect parent, Sprite plateSprite) : base(parent) { this._Create(parent, null, 0, Color.black, null, plateSprite, new Vector2(-1.0f, -1.0f), ""); }
public EleGenButton(EleBaseRect parent, Sprite plateSprite, Vector2 size, string name = "") : base(parent, size, name) { this._Create(parent, null, 0, Color.black, null, plateSprite, size, name); }
public EleGenButton(EleBaseRect parent, Font font, int fontSize, Color fontColor, string text, Sprite plateSprite) : base(parent) { this._Create(parent, font, fontSize, fontColor, text, plateSprite, new Vector2(-1.0f, -1.0f), ""); }
public EleGenButton(EleBaseRect parent, Font font, int fontSize, Color fontColor, string text, Sprite plateSprite, Vector2 size, string name = "") : base(parent, size, name) { this._Create(parent, font, fontSize, fontColor, text, plateSprite, size, name); }
public EleGridSizer(EleBaseRect parent, int col, string name) : base(parent, name) { this.columns = col; }