示例#1
0
        private static Godot.Node CreateNode(Props props)
        {
            var control = new Godot.VBoxContainer();

            CopyToNode(control, null, props);
            return(control);
        }
示例#2
0
        private static Godot.Node CreateNode(Props props)
        {
            var control = new Godot.VBoxContainer();

            CopyToNode(control, null, props);
            Component.RegisterVBoxContainerSignals(control, props);
            return(control);
        }
示例#3
0
 public VBoxContainer(Godot.VBoxContainer sceneControl) : base(sceneControl)
 {
 }
示例#4
0
 public static void CopyToNode(Godot.VBoxContainer control, Props?oldProps, Props props)
 {
     BoxContainerComponent.CopyToNode(control, oldProps, props);
 }
示例#5
0
 public VBoxContainer()
 {
     Base = new _VBoxContainer(this);
 }
示例#6
0
 internal VBoxContainer(Godot.VBoxContainer sceneControl) : base(sceneControl)
 {
 }