hello,
Is there a way to change the mouse cursor shape in the subViewPortContainer ?
I dont think its working.
@tool
extends SubViewportContainer
var mouseONme : bool = false;
func _ready():
pass;
func _on_mouse_entered():
mouseONme = true;
grab_focus();
mouse_default_cursor_shape = Control.CURSOR_ARROW;
Input.set_default_cursor_shape( Input.CURSOR_ARROW )
#Input.set_mouse_mode(Input.MOUSE_MODE_HIDDEN);
func _on_mouse_exited():
mouseONme = false;
#Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE)