mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
doc: Add default values to all properties
Thanks to @bojidar-bg's impressive work in #29380.
This commit is contained in:
@@ -21,16 +21,16 @@
|
||||
<constants>
|
||||
</constants>
|
||||
<theme_items>
|
||||
<theme_item name="margin_bottom" type="int">
|
||||
<theme_item name="margin_bottom" type="int" default="0">
|
||||
All direct children of [MarginContainer] will have a bottom margin of [code]margin_bottom[/code] pixels.
|
||||
</theme_item>
|
||||
<theme_item name="margin_left" type="int">
|
||||
<theme_item name="margin_left" type="int" default="0">
|
||||
All direct children of [MarginContainer] will have a left margin of [code]margin_left[/code] pixels.
|
||||
</theme_item>
|
||||
<theme_item name="margin_right" type="int">
|
||||
<theme_item name="margin_right" type="int" default="0">
|
||||
All direct children of [MarginContainer] will have a right margin of [code]margin_right[/code] pixels.
|
||||
</theme_item>
|
||||
<theme_item name="margin_top" type="int">
|
||||
<theme_item name="margin_top" type="int" default="0">
|
||||
All direct children of [MarginContainer] will have a top margin of [code]margin_top[/code] pixels.
|
||||
</theme_item>
|
||||
</theme_items>
|
||||
|
||||
Reference in New Issue
Block a user