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

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

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