Click or drag to resize

TreeDropModeFlagsEnum Enumeration

[Missing <summary> documentation for "T:Godot.Tree.DropModeFlagsEnum"]

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public enum DropModeFlagsEnum
Members
  Member nameValueDescription
Disabled0

Disables all drop sections, but still allows to detect the "on item" drop section by GetDropSectionAtPosition(Vector2).

Note: This is the default flag, it has no effect when combined with other flags.

OnItem1

Enables the "on item" drop section. This drop section covers the entire item.

When combined with , this drop section halves the height and stays centered vertically.

Inbetween2

Enables "above item" and "below item" drop sections. The "above item" drop section covers the top half of the item, and the "below item" drop section covers the bottom half.

When combined with , these drop sections halves the height and stays on top / bottom accordingly.

See Also