Method | Description | |
---|---|---|
DrawBox ( float x, float y, float w, float h, float linewidth, Color color ) : void |
Draws a Box
|
|
DrawBoxBordered ( float x, float y, float w, float h, float borderWidth, Color color, Color colorBorder ) : void |
Draws a bordered Box
|
|
DrawBoxBordered ( float x, float y, float w, float h, float borderWidth, DotaTexture texture, Color colorBorder ) : void | ||
DrawBoxFilled ( float x, float y, float w, float h, Color color ) : void |
Draws a filled Box
|
|
DrawLine ( float xa, float ya, float xb, float yb, float dwWidth, Color color ) : void |
Draws a line from X to Y with a width and a color
|
|
RoundedRectangle ( System.Vector2 position, System.Vector2 size, Color color ) : void |
The rounded rectangle.
|
|
RoundedRectangle ( float x, int y, int w, int h, int iSmooth, Color color ) : void |
Draws a rounded Rectangle
|
Method | Description | |
---|---|---|
MainMenuDraw ( |
The main menu draw.
|
public static DrawBox ( float x, float y, float w, float h, float linewidth, Color color ) : void | ||
x | float | Position X |
y | float | Position Y |
w | float | Width |
h | float | Height |
linewidth | float | Line Width |
color | Color | Color |
return | void |
public static DrawBoxBordered ( float x, float y, float w, float h, float borderWidth, Color color, Color colorBorder ) : void | ||
x | float | Position X |
y | float | Position Y |
w | float | Width |
h | float | Height |
borderWidth | float | The border width |
color | Color | Color |
colorBorder | Color | Border Color |
return | void |
public static DrawBoxBordered ( float x, float y, float w, float h, float borderWidth, DotaTexture texture, Color colorBorder ) : void | ||
x | float | |
y | float | |
w | float | |
h | float | |
borderWidth | float | |
texture | DotaTexture | |
colorBorder | Color | |
return | void |
public static DrawBoxFilled ( float x, float y, float w, float h, Color color ) : void | ||
x | float | Position X |
y | float | Position Y |
w | float | Width |
h | float | Height |
color | Color | Color |
return | void |
public static DrawLine ( float xa, float ya, float xb, float yb, float dwWidth, Color color ) : void | ||
xa | float | Position X1 |
ya | float | Position Y1 |
xb | float | Position X2 |
yb | float | Position Y2 |
dwWidth | float | Width |
color | Color | Color |
return | void |
public static RoundedRectangle ( System.Vector2 position, System.Vector2 size, Color color ) : void | ||
position | System.Vector2 | /// The position. /// |
size | System.Vector2 | /// The size. /// |
color | Color | /// The color. /// |
return | void |
public static RoundedRectangle ( float x, int y, int w, int h, int iSmooth, Color color ) : void | ||
x | float | Position X |
y | int | Position Y |
w | int | Width |
h | int | Height |
iSmooth | int | Smooth |
color | Color | Color |
return | void |