StyleBoxFlat
Hereda: StyleBox < Resource < RefCounted < Object
Un StyleBox personalizable que no utiliza textura.
Descripción
By configuring various properties of this style box, you can achieve many common looks without the need of a texture. This includes optionally rounded borders, antialiasing, shadows, and skew.
Setting corner radius to high values is allowed. As soon as corners overlap, the stylebox will switch to a relative system:
height = 30
corner_radius_top_left = 50
corner_radius_bottom_left = 100
The relative system now would take the 1:2 ratio of the two left corners to calculate the actual corner width. Both corners added will never be more than the height. Result:
corner_radius_top_left: 10
corner_radius_bottom_left: 20
Propiedades
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
Métodos
get_border_width(margin: Side) const |
|
get_border_width_min() const |
|
get_corner_radius(corner: Corner) const |
|
get_expand_margin(margin: Side) const |
|
void |
set_border_width(margin: Side, width: int) |
void |
set_border_width_all(width: int) |
void |
set_corner_radius(corner: Corner, radius: int) |
void |
set_corner_radius_all(radius: int) |
void |
set_expand_margin(margin: Side, size: float) |
void |
set_expand_margin_all(size: float) |
Descripciones de Propiedades
Antialiasing draws a small ring around the edges, which fades to transparency. As a result, edges look much smoother. This is only noticeable when using rounded corners or skew.
Note: When using beveled corners with 45-degree angles (corner_detail = 1), it is recommended to set anti_aliasing to false to ensure crisp visuals and avoid possible visual glitches.
float anti_aliasing_size = 1.0 🔗
Esto cambia el tamaño del efecto de antialiasing. Se recomienda 1.0 para un resultado óptimo a escala 100%, idéntico a como se renderizan los rectángulos redondeados en los navegadores web y en la mayoría de los programas de dibujo vectorial.
Nota: Los valores más altos pueden producir un efecto de desenfoque, pero también pueden crear artefactos no deseados en cajas pequeñas con esquinas de gran radio.
Color bg_color = Color(0.6, 0.6, 0.6, 1) 🔗
El color de fondo de la caja de estilo.
Si es true, el borde se desvanecerá en el color de fondo.
Color border_color = Color(0.8, 0.8, 0.8, 1) 🔗
Establece el color del borde.
Ancho del borde para el borde inferior.
Ancho del borde para el borde izquierdo.
Ancho del borde para el borde derecho.
Ancho del borde para el borde superior.
This sets the number of vertices used for each corner. Higher values result in rounder corners but take more processing power to compute. When choosing a value, you should take the corner radius (set_corner_radius_all()) into account.
For corner radii less than 10, 4 or 5 should be enough. For corner radii less than 30, values between 8 and 12 should be enough.
A corner detail of 1 will result in chamfered corners instead of rounded corners, which is useful for some artistic effects.
int corner_radius_bottom_left = 0 🔗
El radio de la esquina inferior izquierda. Si 0, la esquina no está redondeada.
int corner_radius_bottom_right = 0 🔗
El radio de la esquina inferior derecha. Si 0, la esquina no está redondeada.
int corner_radius_top_left = 0 🔗
El radio de la esquina superior izquierda. Si 0, la esquina no está redondeada.
int corner_radius_top_right = 0 🔗
El radio de la esquina superior derecha. Si 0, la esquina no está redondeada.
Cambia el dibujo de la parte interior de la caja de estilo.
float expand_margin_bottom = 0.0 🔗
Expands the stylebox outside of the control rect on the bottom edge. Useful in combination with border_width_bottom to draw a border outside the control rect.
Note: Unlike StyleBox.content_margin_bottom, expand_margin_bottom does not affect the size of the clickable area for Controls. This can negatively impact usability if used wrong, as the user may try to click an area of the StyleBox that cannot actually receive clicks.
float expand_margin_left = 0.0 🔗
Expands the stylebox outside of the control rect on the left edge. Useful in combination with border_width_left to draw a border outside the control rect.
Note: Unlike StyleBox.content_margin_left, expand_margin_left does not affect the size of the clickable area for Controls. This can negatively impact usability if used wrong, as the user may try to click an area of the StyleBox that cannot actually receive clicks.
float expand_margin_right = 0.0 🔗
Expands the stylebox outside of the control rect on the right edge. Useful in combination with border_width_right to draw a border outside the control rect.
Note: Unlike StyleBox.content_margin_right, expand_margin_right does not affect the size of the clickable area for Controls. This can negatively impact usability if used wrong, as the user may try to click an area of the StyleBox that cannot actually receive clicks.
float expand_margin_top = 0.0 🔗
Expands the stylebox outside of the control rect on the top edge. Useful in combination with border_width_top to draw a border outside the control rect.
Note: Unlike StyleBox.content_margin_top, expand_margin_top does not affect the size of the clickable area for Controls. This can negatively impact usability if used wrong, as the user may try to click an area of the StyleBox that cannot actually receive clicks.
Color shadow_color = Color(0, 0, 0, 0.6) 🔗
El color de la sombra. Esto no tiene efecto si shadow_size es inferior a 1.
Vector2 shadow_offset = Vector2(0, 0) 🔗
El desplazamiento de la sombra en píxeles. Ajusta la posición de la sombra relativamente al stylebox.
El tamaño de la sombra en píxeles.
Vector2 skew = Vector2(0, 0) 🔗
If set to a non-zero value on either axis, skew distorts the StyleBox horizontally and/or vertically. This can be used for "futuristic"-style UIs. Positive values skew the StyleBox towards the right (X axis) and upwards (Y axis), while negative values skew the StyleBox towards the left (X axis) and downwards (Y axis).
Note: To ensure text does not touch the StyleBox's edges, consider increasing the StyleBox's content margin (see StyleBox.content_margin_bottom). It is preferable to increase the content margin instead of the expand margin (see expand_margin_bottom), as increasing the expand margin does not increase the size of the clickable area for Controls.
Descripciones de Métodos
int get_border_width(margin: Side) const 🔗
Devuelve el ancho del borde del Side especificado.
int get_border_width_min() const 🔗
Devuelve el menor ancho de borde de los cuatro bordes.
int get_corner_radius(corner: Corner) const 🔗
Devuelve el radio del corner dado.
float get_expand_margin(margin: Side) const 🔗
Devuelve el tamaño del margen de expansión del Side especificado.
void set_border_width(margin: Side, width: int) 🔗
Establece el ancho del borde del Side especificado en width píxeles.
void set_border_width_all(width: int) 🔗
Establece el ancho del borde a width píxeles para todos los lados.
void set_corner_radius(corner: Corner, radius: int) 🔗
Establece el radio de la esquina a radius píxeles para la corner dada.
void set_corner_radius_all(radius: int) 🔗
Establece el radio de la esquina a radius píxeles para todas las esquinas.
void set_expand_margin(margin: Side, size: float) 🔗
Establece el margen de expansión a size píxeles para el Side especificado.
void set_expand_margin_all(size: float) 🔗
Establece el margen de expansión a size píxeles para todos los lados.