Attention: Here be dragons
This is the latest
(unstable) version of this documentation, which may document features
not available in or compatible with released stable versions of Godot.
Checking the stable version of the documentation...
MarginContainer¶
Inherits: Container < Control < CanvasItem < Node < Object
Un simple contenedor de margen.
Descripción¶
Adds a top, left, bottom, and right margin to all Control nodes that are direct children of the container. To control the MarginContainer
's margin, use the margin_*
theme properties listed below.
Note: Be careful, Control margin values are different than the constant margin values. If you want to change the custom margin values of the MarginContainer
by code, you should use the following examples:
# This code sample assumes the current script is extending MarginContainer.
var margin_value = 100
add_constant_override("margin_top", margin_value)
add_constant_override("margin_left", margin_value)
add_constant_override("margin_bottom", margin_value)
add_constant_override("margin_right", margin_value)
Propiedades del Theme¶
|
||
|
||
|
||
|
Theme Property Descriptions¶
int margin_bottom
Default |
|
Todos los hijos directos de MarginContainer
tendrán un margen inferior de margin_bottom
píxeles.
int margin_left
Default |
|
Todos los hijos directos de MarginContainer
tendrán un margen izquierdo de margin_left
píxeles.
int margin_right
Default |
|
Todos los hijos directos de MarginContainer
tendrán un margen derecho de margin_right
píxeles.
int margin_top
Default |
|
Todos los hijos directos de MarginContainer
tendrán un margen superior de margin_top
píxeles.