Render
GetFont
Parameters: name, size, is_windows_font
Return values: returns font identifier
[EN] Used to add custom font. [RU] Используется для добавления собственного шрифта.
TextSize
Parameters: text, font
Return values: width, height
[EN] Finds the text size of the given string and font. [RU] Находит размер текста для заданной строки и шрифта.
String
Parameters: x, y, centered, text, color, font
Rendering text now always requires a custom font you make yourself!
[EN] Draws a string with the given position, align, RGBA color and font. [RU] Рисует строку с заданным положением, выравниванием, цветом RGBA и шрифтом.
FilledCircle
Parameters: x, y, r, color
That all render functions must be called from within "Draw" callback and that rendering only supports ASCII character table.
Return values: returns true on success or false on failure.
[EN] Draws a filled circle with the given position, radius, and RGBA color. [RU] Рисует заполненный круг с заданными положением, радиусом и цветом RGBA.
TexturedRect
Parameters: x, y, width, height, texture identifier
Return values: returns true on success or false on failure.
[EN] Draws a textured rectangle with the given position, size, and texture. [RU] Рисует текстурированный прямоугольник с заданными положением, размером и текстурой.
AddTexture
Parameters: path
- Path is relative to CSGO folder, so you don't need full path. - Supports the following formats:
.bmp
.dds
.dib
.hdr
.jpg
.pfm
.png
.ppm
.tga
Return values: returns texture identifier.
[EN] Adds a texture. [RU] Добавляет текстуру.
Polygon
Parameters: array of 3 screen positions, color
[EN] Draws a polygon with shape based on arguments passed. [RU] Рисует многоугольник с формой на основе переданных аргументов.
GradientRect
Parameters: x, y, w, h, dir, [ col1 ], [ col2 ]
Dir argument stands for direction and 0 is vertical while 1 is horizontal
Return values: returns true on success or false on failure.
[EN] Draws a gradient rectangle with the given position, size, and RGBA color. [RU] Рисует прямоугольник градиента с заданными положением, размером и цветом RGBA.
GetScreenSize
[EN] Returns width and height of your screen. [RU] Возвращает ширину и высоту вашего экрана.
WorldToScreen
Parameters: [x, y, z]
The third array object will be 1 if the world position is in front of you, 0 if it is behind you.
Please note that all render functions must be called from within "Draw" callback.
Return values: returns the value of the parameter or false.
[EN] Finds the world position for the given screen position. [RU] Находит мировую позицию для данной позиции на экране.
Circle
Parameters: x, y, r, color
Please note that all render functions must be called from within "Draw" callback and that rendering only supports ASCII character table.
Return values: returns true on success or false on failure.
[EN] Draws a circle with the given position, radius, and RGBA color. [RU] Рисует круг с заданными положением, радиусом и цветом RGBA.
FilledRect
Parameters: x, y, width, height, color
Please note that all render functions must be called from within "Draw" callback and that rendering only supports ASCII character table.
Return values: returns true on success or false on failure.
[EN] Draws a filled rectangle with the given position, size, and RGBA color. [RU] Рисует заполненный прямоугольник с заданными положением, размером и цветом RGBA.
Rect
Parameters: x, y, width, height, color
Please note that all render functions must be called from within "Draw" callback and that rendering only supports ASCII character table.
Return values: returns true on success or false on failure.
[EN] Draws a rectangle with the given position, size, and RGBA color. [RU] Рисует прямоугольник с заданными положением, размером и цветом RGBA.
Line
Parameters: x, y, x1, y1, color
Please note that all render functions must be called from within "Draw" callback and that rendering only supports ASCII character table.
Return values: Returns true on success or false on failure.
[EN] Draws a line with the given position RGBA color. [RU] Рисует линию с заданным цветом RGBA позиции.
Last updated