Topic was automatically imported from the old Question2Answer platform.
Asked By
Cedrei
Is there an easy way to make the mouse automatically change to the “clicking hand” when hovering a button in Godot? I haven’t gotten it to work…
If you are using different textures for hover and normal, you could check in the _process(delta) if the texture is the hover texture. It this returns true, then change the cursor, else, change to the default cursor.