Is there a way on how to get a custom cursor image?

I was wondering if i could just take a .cur (or any type of file) file and make it the cursor of the glfw window

Hi @Luaa,

Welcome to the GLFW forum.

Custom cursors can be created with the glfwCreateCursor function. You’ll need to load the image yourself, for example with stb_image.h.

Cheers,

Doug.