Container
继承
简要描述
容器的基础节点。
描述
容器的基础节点。Container包含其他控件,并以某种方式自动排列它们。
控件可以继承此类以创建自定义容器类。
方法
返回值类型 | 方法名称 |
---|---|
void | fit_child_in_rect(child: Control, rect: Rect2) |
void | queue_sort() |
信号
- **sort_children**
需要对子节点进行排序时发出。
方法说明
- fit_child_in_rect fit_child_in_rect(child: Control, rect: Rect2)
在给定的矩形中填充子控件。这主要是用于创建自定义容器类的帮助方法。
- queue_sort queue_sort()
对子节点进行排序。这是自动调用的,也可以根据需求调用。