Click or drag to resize

InputCursorShape Enumeration

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

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

Arrow cursor. Standard, default pointing cursor.

Ibeam1

I-beam cursor. Usually used to show where the text cursor will appear when the mouse is clicked.

PointingHand2

Pointing hand cursor. Usually used to indicate the pointer is over a link or other interactable item.

Cross3

Cross cursor. Typically appears over regions in which a drawing operation can be performed or for selections.

Wait4

Wait cursor. Indicates that the application is busy performing an operation. This cursor shape denotes that the application is still usable during the operation.

Busy5

Busy cursor. Indicates that the application is busy performing an operation. This cursor shape denotes that the application isn't usable during the operation (e.g. something is blocking its main thread).

Drag6

Drag cursor. Usually displayed when dragging something.

CanDrop7

Can drop cursor. Usually displayed when dragging something to indicate that it can be dropped at the current position.

Forbidden8

Forbidden cursor. Indicates that the current action is forbidden (for example, when dragging something) or that the control at a position is disabled.

Vsize9

Vertical resize mouse cursor. A double-headed vertical arrow. It tells the user they can resize the window or the panel vertically.

Hsize10

Horizontal resize mouse cursor. A double-headed horizontal arrow. It tells the user they can resize the window or the panel horizontally.

Bdiagsize11

Window resize mouse cursor. 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

Window resize mouse cursor. 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

Move cursor. Indicates that something can be moved.

Vsplit14

Vertical split mouse cursor. On Windows, it's the same as .

Hsplit15

Horizontal split mouse cursor. On Windows, it's the same as .

Help16

Help cursor. Usually a question mark.

See Also