![]() |
Attention | Topic was automatically imported from the old Question2Answer platform. |
![]() |
Asked By | BauRawson |
For my game I need mouse cursor to change when a button is pressed, and then change back again to default when any other click is performed.
So when the button is pressed I call:
Input.set_custom_mouse_cursor(spell_cursor)
And then when detecting a click I try:
Input.set_custom_mouse_cursor(null)
But nothing happens, the cursor still uses the ‘spell_cursor’.
Any ideas on how I could accomplish this?
Thanks in advance!
You will have to add arrow image and use that as default cursor.
Oen44 | 2018-10-17 15:11
Thanks! I’ll use this fix for the time being.
BauRawson | 2018-10-20 12:17