1

Is there a way I can change or modify my mouse cursor in the 3d view while my custom operator is running?

David
  • 49,291
  • 38
  • 159
  • 317
Bert VdB
  • 1,067
  • 8
  • 21
  • 1
    I've noticed that blender seems to use it's own crosshair cursor in edit mode (it doesn't look anything like the crosshair cursor in my cursor theme). – gandalf3 Jul 28 '14 at 19:45

1 Answers1

5

A quick search for cursor yields Window.cursor_set

So i.e.

bpy.context.window.cursor_set("HAND")
pink vertex
  • 9,896
  • 1
  • 25
  • 44