Click or drag to resize

ControlCursorShape Enumeration

[Missing <summary> documentation for "T:Godot.Control.CursorShape"]

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

Show the system's arrow mouse cursor when the user hovers the node. Use with MouseDefaultCursorShape.

Ibeam1

Show the system's I-beam mouse cursor when the user hovers the node. The I-beam pointer has a shape similar to "I". It tells the user they can highlight or insert text.

PointingHand2

Show the system's pointing hand mouse cursor when the user hovers the node.

Cross3

Show the system's cross mouse cursor when the user hovers the node.

Wait4

Show the system's wait mouse cursor, often an hourglass, when the user hovers the node.

Busy5

Show the system's busy mouse cursor when the user hovers the node. Often an hourglass.

Drag6

Show the system's drag mouse cursor, often a closed fist or a cross symbol, when the user hovers the node. It tells the user they're currently dragging an item, like a node in the Scene dock.

CanDrop7

Show the system's drop mouse cursor when the user hovers the node. It can be an open hand. It tells the user they can drop an item they're currently grabbing, like a node in the Scene dock.

Forbidden8

Show the system's forbidden mouse cursor when the user hovers the node. Often a crossed circle.

Vsize9

Show the system's vertical resize mouse cursor when the user hovers the node. A double-headed vertical arrow. It tells the user they can resize the window or the panel vertically.

Hsize10

Show the system's horizontal resize mouse cursor when the user hovers the node. A double-headed horizontal arrow. It tells the user they can resize the window or the panel horizontally.

Bdiagsize11

Show the system's window resize mouse cursor when the user hovers the node. The cursor is a double-headed arrow that goes from the bottom left to the top right. It tells the user they can resize the window or the panel both horizontally and vertically.

Fdiagsize12

Show the system's window resize mouse cursor when the user hovers the node. The cursor is a double-headed arrow that goes from the top left to the bottom right, the opposite of . It tells the user they can resize the window or the panel both horizontally and vertically.

Move13

Show the system's move mouse cursor when the user hovers the node. It shows 2 double-headed arrows at a 90 degree angle. It tells the user they can move a UI element freely.

Vsplit14

Show the system's vertical split mouse cursor when the user hovers the node. On Windows, it's the same as .

Hsplit15

Show the system's horizontal split mouse cursor when the user hovers the node. On Windows, it's the same as .

Help16

Show the system's help mouse cursor when the user hovers the node, a question mark.

See Also